# ユニーク制約違反チェック対応したテスト追加
# Bug report 2475

Begin;
Initialize;
InitializeSession "TEST";
Command "create database TEST";
Command "create table T(id int not null, sub_id int not null, title nvarchar(64), unique(id, sub_id, title))";

# 30
Command "insert into T values (1, 1001, 'a')";
Command "insert into T values (1, 1002, 'a')";
Command "insert into T values (1, 1003, 'a')";
Command "insert into T values (1, 1004, 'a')";
Command "insert into T values (1, 1005, 'a')";
Command "insert into T values (1, 1006, 'a')";
Command "insert into T values (1, 1007, 'a')";
Command "insert into T values (1, 1008, 'a')";
Command "insert into T values (1, 1009, 'a')";
Command "insert into T values (1, 1010, 'a')";
Command "insert into T values (1, 1001, 'b')";
Command "insert into T values (1, 1002, 'b')";
Command "insert into T values (1, 1003, 'b')";
Command "insert into T values (1, 1004, 'b')";
Command "insert into T values (1, 1005, 'b')";
Command "insert into T values (1, 1006, 'b')";
Command "insert into T values (1, 1007, 'b')";
Command "insert into T values (1, 1008, 'b')";
Command "insert into T values (1, 1009, 'b')";
Command "insert into T values (1, 1010, 'b')";
Command "insert into T values (1, 1001, 'c')";
Command "insert into T values (1, 1002, 'c')";
Command "insert into T values (1, 1003, 'c')";
Command "insert into T values (1, 1004, 'c')";
Command "insert into T values (1, 1005, 'c')";
Command "insert into T values (1, 1006, 'c')";
Command "insert into T values (1, 1007, 'c')";
Command "insert into T values (1, 1008, 'c')";
Command "insert into T values (1, 1009, 'c')";
Command "insert into T values (1, 1010, 'c')";

# 60
Command "insert into T values (2, 1001, 'a')";
Command "insert into T values (2, 1002, 'a')";
Command "insert into T values (2, 1003, 'a')";
Command "insert into T values (2, 1004, 'a')";
Command "insert into T values (2, 1005, 'a')";
Command "insert into T values (2, 1006, 'a')";
Command "insert into T values (2, 1007, 'a')";
Command "insert into T values (2, 1008, 'a')";
Command "insert into T values (2, 1009, 'a')";
Command "insert into T values (2, 1010, 'a')";
Command "insert into T values (2, 1001, 'b')";
Command "insert into T values (2, 1002, 'b')";
Command "insert into T values (2, 1003, 'b')";
Command "insert into T values (2, 1004, 'b')";
Command "insert into T values (2, 1005, 'b')";
Command "insert into T values (2, 1006, 'b')";
Command "insert into T values (2, 1007, 'b')";
Command "insert into T values (2, 1008, 'b')";
Command "insert into T values (2, 1009, 'b')";
Command "insert into T values (2, 1010, 'b')";
Command "insert into T values (2, 1001, 'c')";
Command "insert into T values (2, 1002, 'c')";
Command "insert into T values (2, 1003, 'c')";
Command "insert into T values (2, 1004, 'c')";
Command "insert into T values (2, 1005, 'c')";
Command "insert into T values (2, 1006, 'c')";
Command "insert into T values (2, 1007, 'c')";
Command "insert into T values (2, 1008, 'c')";
Command "insert into T values (2, 1009, 'c')";
Command "insert into T values (2, 1010, 'c')";

# 90
Command "insert into T values (3, 1001, 'a')";
Command "insert into T values (3, 1002, 'a')";
Command "insert into T values (3, 1003, 'a')";
Command "insert into T values (3, 1004, 'a')";
Command "insert into T values (3, 1005, 'a')";
Command "insert into T values (3, 1006, 'a')";
Command "insert into T values (3, 1007, 'a')";
Command "insert into T values (3, 1008, 'a')";
Command "insert into T values (3, 1009, 'a')";
Command "insert into T values (3, 1010, 'a')";
Command "insert into T values (3, 1001, 'b')";
Command "insert into T values (3, 1002, 'b')";
Command "insert into T values (3, 1003, 'b')";
Command "insert into T values (3, 1004, 'b')";
Command "insert into T values (3, 1005, 'b')";
Command "insert into T values (3, 1006, 'b')";
Command "insert into T values (3, 1007, 'b')";
Command "insert into T values (3, 1008, 'b')";
Command "insert into T values (3, 1009, 'b')";
Command "insert into T values (3, 1010, 'b')";
Command "insert into T values (3, 1001, 'c')";
Command "insert into T values (3, 1002, 'c')";
Command "insert into T values (3, 1003, 'c')";
Command "insert into T values (3, 1004, 'c')";
Command "insert into T values (3, 1005, 'c')";
Command "insert into T values (3, 1006, 'c')";
Command "insert into T values (3, 1007, 'c')";
Command "insert into T values (3, 1008, 'c')";
Command "insert into T values (3, 1009, 'c')";
Command "insert into T values (3, 1010, 'c')";

# 120
Command "insert into T values (4, 1001, 'a')";
Command "insert into T values (4, 1002, 'a')";
Command "insert into T values (4, 1003, 'a')";
Command "insert into T values (4, 1004, 'a')";
Command "insert into T values (4, 1005, 'a')";
Command "insert into T values (4, 1006, 'a')";
Command "insert into T values (4, 1007, 'a')";
Command "insert into T values (4, 1008, 'a')";
Command "insert into T values (4, 1009, 'a')";
Command "insert into T values (4, 1010, 'a')";
Command "insert into T values (4, 1001, 'b')";
Command "insert into T values (4, 1002, 'b')";
Command "insert into T values (4, 1003, 'b')";
Command "insert into T values (4, 1004, 'b')";
Command "insert into T values (4, 1005, 'b')";
Command "insert into T values (4, 1006, 'b')";
Command "insert into T values (4, 1007, 'b')";
Command "insert into T values (4, 1008, 'b')";
Command "insert into T values (4, 1009, 'b')";
Command "insert into T values (4, 1010, 'b')";
Command "insert into T values (4, 1001, 'c')";
Command "insert into T values (4, 1002, 'c')";
Command "insert into T values (4, 1003, 'c')";
Command "insert into T values (4, 1004, 'c')";
Command "insert into T values (4, 1005, 'c')";
Command "insert into T values (4, 1006, 'c')";
Command "insert into T values (4, 1007, 'c')";
Command "insert into T values (4, 1008, 'c')";
Command "insert into T values (4, 1009, 'c')";
Command "insert into T values (4, 1010, 'c')";

# 150
Command "insert into T values (5, 1001, 'a')";
Command "insert into T values (5, 1002, 'a')";
Command "insert into T values (5, 1003, 'a')";
Command "insert into T values (5, 1004, 'a')";
Command "insert into T values (5, 1005, 'a')";
Command "insert into T values (5, 1006, 'a')";
Command "insert into T values (5, 1007, 'a')";
Command "insert into T values (5, 1008, 'a')";
Command "insert into T values (5, 1009, 'a')";
Command "insert into T values (5, 1010, 'a')";
Command "insert into T values (5, 1001, 'b')";
Command "insert into T values (5, 1002, 'b')";
Command "insert into T values (5, 1003, 'b')";
Command "insert into T values (5, 1004, 'b')";
Command "insert into T values (5, 1005, 'b')";
Command "insert into T values (5, 1006, 'b')";
Command "insert into T values (5, 1007, 'b')";
Command "insert into T values (5, 1008, 'b')";
Command "insert into T values (5, 1009, 'b')";
Command "insert into T values (5, 1010, 'b')";
Command "insert into T values (5, 1001, 'c')";
Command "insert into T values (5, 1002, 'c')";
Command "insert into T values (5, 1003, 'c')";
Command "insert into T values (5, 1004, 'c')";
Command "insert into T values (5, 1005, 'c')";
Command "insert into T values (5, 1006, 'c')";
Command "insert into T values (5, 1007, 'c')";
Command "insert into T values (5, 1008, 'c')";
Command "insert into T values (5, 1009, 'c')";
Command "insert into T values (5, 1010, 'c')";

# 180
Command "insert into T values (6, 1001, 'a')";
Command "insert into T values (6, 1002, 'a')";
Command "insert into T values (6, 1003, 'a')";
Command "insert into T values (6, 1004, 'a')";
Command "insert into T values (6, 1005, 'a')";
Command "insert into T values (6, 1006, 'a')";
Command "insert into T values (6, 1007, 'a')";
Command "insert into T values (6, 1008, 'a')";
Command "insert into T values (6, 1009, 'a')";
Command "insert into T values (6, 1010, 'a')";
Command "insert into T values (6, 1001, 'b')";
Command "insert into T values (6, 1002, 'b')";
Command "insert into T values (6, 1003, 'b')";
Command "insert into T values (6, 1004, 'b')";
Command "insert into T values (6, 1005, 'b')";
Command "insert into T values (6, 1006, 'b')";
Command "insert into T values (6, 1007, 'b')";
Command "insert into T values (6, 1008, 'b')";
Command "insert into T values (6, 1009, 'b')";
Command "insert into T values (6, 1010, 'b')";
Command "insert into T values (6, 1001, 'c')";
Command "insert into T values (6, 1002, 'c')";
Command "insert into T values (6, 1003, 'c')";
Command "insert into T values (6, 1004, 'c')";
Command "insert into T values (6, 1005, 'c')";
Command "insert into T values (6, 1006, 'c')";
Command "insert into T values (6, 1007, 'c')";
Command "insert into T values (6, 1008, 'c')";
Command "insert into T values (6, 1009, 'c')";
Command "insert into T values (6, 1010, 'c')";

# 210
Command "insert into T values (7, 1001, 'a')";
Command "insert into T values (7, 1002, 'a')";
Command "insert into T values (7, 1003, 'a')";
Command "insert into T values (7, 1004, 'a')";
Command "insert into T values (7, 1005, 'a')";
Command "insert into T values (7, 1006, 'a')";
Command "insert into T values (7, 1007, 'a')";
Command "insert into T values (7, 1008, 'a')";
Command "insert into T values (7, 1009, 'a')";
Command "insert into T values (7, 1010, 'a')";
Command "insert into T values (7, 1001, 'b')";
Command "insert into T values (7, 1002, 'b')";
Command "insert into T values (7, 1003, 'b')";
Command "insert into T values (7, 1004, 'b')";
Command "insert into T values (7, 1005, 'b')";
Command "insert into T values (7, 1006, 'b')";
Command "insert into T values (7, 1007, 'b')";
Command "insert into T values (7, 1008, 'b')";
Command "insert into T values (7, 1009, 'b')";
Command "insert into T values (7, 1010, 'b')";
Command "insert into T values (7, 1001, 'c')";
Command "insert into T values (7, 1002, 'c')";
Command "insert into T values (7, 1003, 'c')";
Command "insert into T values (7, 1004, 'c')";
Command "insert into T values (7, 1005, 'c')";
Command "insert into T values (7, 1006, 'c')";
Command "insert into T values (7, 1007, 'c')";
Command "insert into T values (7, 1008, 'c')";
Command "insert into T values (7, 1009, 'c')";
Command "insert into T values (7, 1010, 'c')";

# 240
Command "insert into T values (8, 1001, 'a')";
Command "insert into T values (8, 1002, 'a')";
Command "insert into T values (8, 1003, 'a')";
Command "insert into T values (8, 1004, 'a')";
Command "insert into T values (8, 1005, 'a')";
Command "insert into T values (8, 1006, 'a')";
Command "insert into T values (8, 1007, 'a')";
Command "insert into T values (8, 1008, 'a')";
Command "insert into T values (8, 1009, 'a')";
Command "insert into T values (8, 1010, 'a')";
Command "insert into T values (8, 1001, 'b')";
Command "insert into T values (8, 1002, 'b')";
Command "insert into T values (8, 1003, 'b')";
Command "insert into T values (8, 1004, 'b')";
Command "insert into T values (8, 1005, 'b')";
Command "insert into T values (8, 1006, 'b')";
Command "insert into T values (8, 1007, 'b')";
Command "insert into T values (8, 1008, 'b')";
Command "insert into T values (8, 1009, 'b')";
Command "insert into T values (8, 1010, 'b')";
Command "insert into T values (8, 1001, 'c')";
Command "insert into T values (8, 1002, 'c')";
Command "insert into T values (8, 1003, 'c')";
Command "insert into T values (8, 1004, 'c')";
Command "insert into T values (8, 1005, 'c')";
Command "insert into T values (8, 1006, 'c')";
Command "insert into T values (8, 1007, 'c')";
Command "insert into T values (8, 1008, 'c')";
Command "insert into T values (8, 1009, 'c')";
Command "insert into T values (8, 1010, 'c')";

# 270
Command "insert into T values (9, 1001, 'a')";
Command "insert into T values (9, 1002, 'a')";
Command "insert into T values (9, 1003, 'a')";
Command "insert into T values (9, 1004, 'a')";
Command "insert into T values (9, 1005, 'a')";
Command "insert into T values (9, 1006, 'a')";
Command "insert into T values (9, 1007, 'a')";
Command "insert into T values (9, 1008, 'a')";
Command "insert into T values (9, 1009, 'a')";
Command "insert into T values (9, 1010, 'a')";
Command "insert into T values (9, 1001, 'b')";
Command "insert into T values (9, 1002, 'b')";
Command "insert into T values (9, 1003, 'b')";
Command "insert into T values (9, 1004, 'b')";
Command "insert into T values (9, 1005, 'b')";
Command "insert into T values (9, 1006, 'b')";
Command "insert into T values (9, 1007, 'b')";
Command "insert into T values (9, 1008, 'b')";
Command "insert into T values (9, 1009, 'b')";
Command "insert into T values (9, 1010, 'b')";
Command "insert into T values (9, 1001, 'c')";
Command "insert into T values (9, 1002, 'c')";
Command "insert into T values (9, 1003, 'c')";
Command "insert into T values (9, 1004, 'c')";
Command "insert into T values (9, 1005, 'c')";
Command "insert into T values (9, 1006, 'c')";
Command "insert into T values (9, 1007, 'c')";
Command "insert into T values (9, 1008, 'c')";
Command "insert into T values (9, 1009, 'c')";
Command "insert into T values (9, 1010, 'c')";

# 300
Command "insert into T values (10, 1001, 'a')";
Command "insert into T values (10, 1002, 'a')";
Command "insert into T values (10, 1003, 'a')";
Command "insert into T values (10, 1004, 'a')";
Command "insert into T values (10, 1005, 'a')";
Command "insert into T values (10, 1006, 'a')";
Command "insert into T values (10, 1007, 'a')";
Command "insert into T values (10, 1008, 'a')";
Command "insert into T values (10, 1009, 'a')";
Command "insert into T values (10, 1010, 'a')";
Command "insert into T values (10, 1001, 'b')";
Command "insert into T values (10, 1002, 'b')";
Command "insert into T values (10, 1003, 'b')";
Command "insert into T values (10, 1004, 'b')";
Command "insert into T values (10, 1005, 'b')";
Command "insert into T values (10, 1006, 'b')";
Command "insert into T values (10, 1007, 'b')";
Command "insert into T values (10, 1008, 'b')";
Command "insert into T values (10, 1009, 'b')";
Command "insert into T values (10, 1010, 'b')";
Command "insert into T values (10, 1001, 'c')";
Command "insert into T values (10, 1002, 'c')";
Command "insert into T values (10, 1003, 'c')";
Command "insert into T values (10, 1004, 'c')";
Command "insert into T values (10, 1005, 'c')";
Command "insert into T values (10, 1006, 'c')";
Command "insert into T values (10, 1007, 'c')";
Command "insert into T values (10, 1008, 'c')";
Command "insert into T values (10, 1009, 'c')";
Command "insert into T values (10, 1010, 'c')";

# 330
Command "insert into T values (11, 1001, 'a')";
Command "insert into T values (11, 1002, 'a')";
Command "insert into T values (11, 1003, 'a')";
Command "insert into T values (11, 1004, 'a')";
Command "insert into T values (11, 1005, 'a')";
Command "insert into T values (11, 1006, 'a')";
Command "insert into T values (11, 1007, 'a')";
Command "insert into T values (11, 1008, 'a')";
Command "insert into T values (11, 1009, 'a')";
Command "insert into T values (11, 1010, 'a')";
Command "insert into T values (11, 1001, 'b')";
Command "insert into T values (11, 1002, 'b')";
Command "insert into T values (11, 1003, 'b')";
Command "insert into T values (11, 1004, 'b')";
Command "insert into T values (11, 1005, 'b')";
Command "insert into T values (11, 1006, 'b')";
Command "insert into T values (11, 1007, 'b')";
Command "insert into T values (11, 1008, 'b')";
Command "insert into T values (11, 1009, 'b')";
Command "insert into T values (11, 1010, 'b')";
Command "insert into T values (11, 1001, 'c')";
Command "insert into T values (11, 1002, 'c')";
Command "insert into T values (11, 1003, 'c')";
Command "insert into T values (11, 1004, 'c')";
Command "insert into T values (11, 1005, 'c')";
Command "insert into T values (11, 1006, 'c')";
Command "insert into T values (11, 1007, 'c')";
Command "insert into T values (11, 1008, 'c')";
Command "insert into T values (11, 1009, 'c')";
Command "insert into T values (11, 1010, 'c')";

# 360
Command "insert into T values (12, 1001, 'a')";
Command "insert into T values (12, 1002, 'a')";
Command "insert into T values (12, 1003, 'a')";
Command "insert into T values (12, 1004, 'a')";
Command "insert into T values (12, 1005, 'a')";
Command "insert into T values (12, 1006, 'a')";
Command "insert into T values (12, 1007, 'a')";
Command "insert into T values (12, 1008, 'a')";
Command "insert into T values (12, 1009, 'a')";
Command "insert into T values (12, 1010, 'a')";
Command "insert into T values (12, 1001, 'b')";
Command "insert into T values (12, 1002, 'b')";
Command "insert into T values (12, 1003, 'b')";
Command "insert into T values (12, 1004, 'b')";
Command "insert into T values (12, 1005, 'b')";
Command "insert into T values (12, 1006, 'b')";
Command "insert into T values (12, 1007, 'b')";
Command "insert into T values (12, 1008, 'b')";
Command "insert into T values (12, 1009, 'b')";
Command "insert into T values (12, 1010, 'b')";
Command "insert into T values (12, 1001, 'c')";
Command "insert into T values (12, 1002, 'c')";
Command "insert into T values (12, 1003, 'c')";
Command "insert into T values (12, 1004, 'c')";
Command "insert into T values (12, 1005, 'c')";
Command "insert into T values (12, 1006, 'c')";
Command "insert into T values (12, 1007, 'c')";
Command "insert into T values (12, 1008, 'c')";
Command "insert into T values (12, 1009, 'c')";
Command "insert into T values (12, 1010, 'c')";

# 390
Command "insert into T values (13, 1001, 'a')";
Command "insert into T values (13, 1002, 'a')";
Command "insert into T values (13, 1003, 'a')";
Command "insert into T values (13, 1004, 'a')";
Command "insert into T values (13, 1005, 'a')";
Command "insert into T values (13, 1006, 'a')";
Command "insert into T values (13, 1007, 'a')";
Command "insert into T values (13, 1008, 'a')";
Command "insert into T values (13, 1009, 'a')";
Command "insert into T values (13, 1010, 'a')";
Command "insert into T values (13, 1001, 'b')";
Command "insert into T values (13, 1002, 'b')";
Command "insert into T values (13, 1003, 'b')";
Command "insert into T values (13, 1004, 'b')";
Command "insert into T values (13, 1005, 'b')";
Command "insert into T values (13, 1006, 'b')";
Command "insert into T values (13, 1007, 'b')";
Command "insert into T values (13, 1008, 'b')";
Command "insert into T values (13, 1009, 'b')";
Command "insert into T values (13, 1010, 'b')";
Command "insert into T values (13, 1001, 'c')";
Command "insert into T values (13, 1002, 'c')";
Command "insert into T values (13, 1003, 'c')";
Command "insert into T values (13, 1004, 'c')";
Command "insert into T values (13, 1005, 'c')";
Command "insert into T values (13, 1006, 'c')";
Command "insert into T values (13, 1007, 'c')";
Command "insert into T values (13, 1008, 'c')";
Command "insert into T values (13, 1009, 'c')";
Command "insert into T values (13, 1010, 'c')";

# 420
Command "insert into T values (14, 1001, 'a')";
Command "insert into T values (14, 1002, 'a')";
Command "insert into T values (14, 1003, 'a')";
Command "insert into T values (14, 1004, 'a')";
Command "insert into T values (14, 1005, 'a')";
Command "insert into T values (14, 1006, 'a')";
Command "insert into T values (14, 1007, 'a')";
Command "insert into T values (14, 1008, 'a')";
Command "insert into T values (14, 1009, 'a')";
Command "insert into T values (14, 1010, 'a')";
Command "insert into T values (14, 1001, 'b')";
Command "insert into T values (14, 1002, 'b')";
Command "insert into T values (14, 1003, 'b')";
Command "insert into T values (14, 1004, 'b')";
Command "insert into T values (14, 1005, 'b')";
Command "insert into T values (14, 1006, 'b')";
Command "insert into T values (14, 1007, 'b')";
Command "insert into T values (14, 1008, 'b')";
Command "insert into T values (14, 1009, 'b')";
Command "insert into T values (14, 1010, 'b')";
Command "insert into T values (14, 1001, 'c')";
Command "insert into T values (14, 1002, 'c')";
Command "insert into T values (14, 1003, 'c')";
Command "insert into T values (14, 1004, 'c')";
Command "insert into T values (14, 1005, 'c')";
Command "insert into T values (14, 1006, 'c')";
Command "insert into T values (14, 1007, 'c')";
Command "insert into T values (14, 1008, 'c')";
Command "insert into T values (14, 1009, 'c')";
Command "insert into T values (14, 1010, 'c')";

# 450
Command "insert into T values (15, 1001, 'a')";
Command "insert into T values (15, 1002, 'a')";
Command "insert into T values (15, 1003, 'a')";
Command "insert into T values (15, 1004, 'a')";
Command "insert into T values (15, 1005, 'a')";
Command "insert into T values (15, 1006, 'a')";
Command "insert into T values (15, 1007, 'a')";
Command "insert into T values (15, 1008, 'a')";
Command "insert into T values (15, 1009, 'a')";
Command "insert into T values (15, 1010, 'a')";
Command "insert into T values (15, 1001, 'b')";
Command "insert into T values (15, 1002, 'b')";
Command "insert into T values (15, 1003, 'b')";
Command "insert into T values (15, 1004, 'b')";
Command "insert into T values (15, 1005, 'b')";
Command "insert into T values (15, 1006, 'b')";
Command "insert into T values (15, 1007, 'b')";
Command "insert into T values (15, 1008, 'b')";
Command "insert into T values (15, 1009, 'b')";
Command "insert into T values (15, 1010, 'b')";
Command "insert into T values (15, 1001, 'c')";
Command "insert into T values (15, 1002, 'c')";
Command "insert into T values (15, 1003, 'c')";
Command "insert into T values (15, 1004, 'c')";
Command "insert into T values (15, 1005, 'c')";
Command "insert into T values (15, 1006, 'c')";
Command "insert into T values (15, 1007, 'c')";
Command "insert into T values (15, 1008, 'c')";
Command "insert into T values (15, 1009, 'c')";
Command "insert into T values (15, 1010, 'c')";

# 480
Command "insert into T values (16, 1001, 'a')";
Command "insert into T values (16, 1002, 'a')";
Command "insert into T values (16, 1003, 'a')";
Command "insert into T values (16, 1004, 'a')";
Command "insert into T values (16, 1005, 'a')";
Command "insert into T values (16, 1006, 'a')";
Command "insert into T values (16, 1007, 'a')";
Command "insert into T values (16, 1008, 'a')";
Command "insert into T values (16, 1009, 'a')";
Command "insert into T values (16, 1010, 'a')";
Command "insert into T values (16, 1001, 'b')";
Command "insert into T values (16, 1002, 'b')";
Command "insert into T values (16, 1003, 'b')";
Command "insert into T values (16, 1004, 'b')";
Command "insert into T values (16, 1005, 'b')";
Command "insert into T values (16, 1006, 'b')";
Command "insert into T values (16, 1007, 'b')";
Command "insert into T values (16, 1008, 'b')";
Command "insert into T values (16, 1009, 'b')";
Command "insert into T values (16, 1010, 'b')";
Command "insert into T values (16, 1001, 'c')";
Command "insert into T values (16, 1002, 'c')";
Command "insert into T values (16, 1003, 'c')";
Command "insert into T values (16, 1004, 'c')";
Command "insert into T values (16, 1005, 'c')";
Command "insert into T values (16, 1006, 'c')";
Command "insert into T values (16, 1007, 'c')";
Command "insert into T values (16, 1008, 'c')";
Command "insert into T values (16, 1009, 'c')";
Command "insert into T values (16, 1010, 'c')";

# 510
Command "insert into T values (17, 1001, 'a')";
Command "insert into T values (17, 1002, 'a')";
Command "insert into T values (17, 1003, 'a')";
Command "insert into T values (17, 1004, 'a')";
Command "insert into T values (17, 1005, 'a')";
Command "insert into T values (17, 1006, 'a')";
Command "insert into T values (17, 1007, 'a')";
Command "insert into T values (17, 1008, 'a')";
Command "insert into T values (17, 1009, 'a')";
Command "insert into T values (17, 1010, 'a')";
Command "insert into T values (17, 1001, 'b')";
Command "insert into T values (17, 1002, 'b')";
Command "insert into T values (17, 1003, 'b')";
Command "insert into T values (17, 1004, 'b')";
Command "insert into T values (17, 1005, 'b')";
Command "insert into T values (17, 1006, 'b')";
Command "insert into T values (17, 1007, 'b')";
Command "insert into T values (17, 1008, 'b')";
Command "insert into T values (17, 1009, 'b')";
Command "insert into T values (17, 1010, 'b')";
Command "insert into T values (17, 1001, 'c')";
Command "insert into T values (17, 1002, 'c')";
Command "insert into T values (17, 1003, 'c')";
Command "insert into T values (17, 1004, 'c')";
Command "insert into T values (17, 1005, 'c')";
Command "insert into T values (17, 1006, 'c')";
Command "insert into T values (17, 1007, 'c')";
Command "insert into T values (17, 1008, 'c')";
Command "insert into T values (17, 1009, 'c')";
Command "insert into T values (17, 1010, 'c')";

# 540
Command "insert into T values (18, 1001, 'a')";
Command "insert into T values (18, 1002, 'a')";
Command "insert into T values (18, 1003, 'a')";
Command "insert into T values (18, 1004, 'a')";
Command "insert into T values (18, 1005, 'a')";
Command "insert into T values (18, 1006, 'a')";
Command "insert into T values (18, 1007, 'a')";
Command "insert into T values (18, 1008, 'a')";
Command "insert into T values (18, 1009, 'a')";
Command "insert into T values (18, 1010, 'a')";
Command "insert into T values (18, 1001, 'b')";
Command "insert into T values (18, 1002, 'b')";
Command "insert into T values (18, 1003, 'b')";
Command "insert into T values (18, 1004, 'b')";
Command "insert into T values (18, 1005, 'b')";
Command "insert into T values (18, 1006, 'b')";
Command "insert into T values (18, 1007, 'b')";
Command "insert into T values (18, 1008, 'b')";
Command "insert into T values (18, 1009, 'b')";
Command "insert into T values (18, 1010, 'b')";
Command "insert into T values (18, 1001, 'c')";
Command "insert into T values (18, 1002, 'c')";
Command "insert into T values (18, 1003, 'c')";
Command "insert into T values (18, 1004, 'c')";
Command "insert into T values (18, 1005, 'c')";
Command "insert into T values (18, 1006, 'c')";
Command "insert into T values (18, 1007, 'c')";
Command "insert into T values (18, 1008, 'c')";
Command "insert into T values (18, 1009, 'c')";
Command "insert into T values (18, 1010, 'c')";

# 570
Command "insert into T values (19, 1001, 'a')";
Command "insert into T values (19, 1002, 'a')";
Command "insert into T values (19, 1003, 'a')";
Command "insert into T values (19, 1004, 'a')";
Command "insert into T values (19, 1005, 'a')";
Command "insert into T values (19, 1006, 'a')";
Command "insert into T values (19, 1007, 'a')";
Command "insert into T values (19, 1008, 'a')";
Command "insert into T values (19, 1009, 'a')";
Command "insert into T values (19, 1010, 'a')";
Command "insert into T values (19, 1001, 'b')";
Command "insert into T values (19, 1002, 'b')";
Command "insert into T values (19, 1003, 'b')";
Command "insert into T values (19, 1004, 'b')";
Command "insert into T values (19, 1005, 'b')";
Command "insert into T values (19, 1006, 'b')";
Command "insert into T values (19, 1007, 'b')";
Command "insert into T values (19, 1008, 'b')";
Command "insert into T values (19, 1009, 'b')";
Command "insert into T values (19, 1010, 'b')";
Command "insert into T values (19, 1001, 'c')";
Command "insert into T values (19, 1002, 'c')";
Command "insert into T values (19, 1003, 'c')";
Command "insert into T values (19, 1004, 'c')";
Command "insert into T values (19, 1005, 'c')";
Command "insert into T values (19, 1006, 'c')";
Command "insert into T values (19, 1007, 'c')";
Command "insert into T values (19, 1008, 'c')";
Command "insert into T values (19, 1009, 'c')";
Command "insert into T values (19, 1010, 'c')";

# 600
Command "insert into T values (20, 1001, 'a')";
Command "insert into T values (20, 1002, 'a')";
Command "insert into T values (20, 1003, 'a')";
Command "insert into T values (20, 1004, 'a')";
Command "insert into T values (20, 1005, 'a')";
Command "insert into T values (20, 1006, 'a')";
Command "insert into T values (20, 1007, 'a')";
Command "insert into T values (20, 1008, 'a')";
Command "insert into T values (20, 1009, 'a')";
Command "insert into T values (20, 1010, 'a')";
Command "insert into T values (20, 1001, 'b')";
Command "insert into T values (20, 1002, 'b')";
Command "insert into T values (20, 1003, 'b')";
Command "insert into T values (20, 1004, 'b')";
Command "insert into T values (20, 1005, 'b')";
Command "insert into T values (20, 1006, 'b')";
Command "insert into T values (20, 1007, 'b')";
Command "insert into T values (20, 1008, 'b')";
Command "insert into T values (20, 1009, 'b')";
Command "insert into T values (20, 1010, 'b')";
Command "insert into T values (20, 1001, 'c')";
Command "insert into T values (20, 1002, 'c')";
Command "insert into T values (20, 1003, 'c')";
Command "insert into T values (20, 1004, 'c')";
Command "insert into T values (20, 1005, 'c')";
Command "insert into T values (20, 1006, 'c')";
Command "insert into T values (20, 1007, 'c')";
Command "insert into T values (20, 1008, 'c')";
Command "insert into T values (20, 1009, 'c')";
Command "insert into T values (20, 1010, 'c')";

# 30
Command "insert into T values (21, 1001, 'a')";
Command "insert into T values (21, 1002, 'a')";
Command "insert into T values (21, 1003, 'a')";
Command "insert into T values (21, 1004, 'a')";
Command "insert into T values (21, 1005, 'a')";
Command "insert into T values (21, 1006, 'a')";
Command "insert into T values (21, 1007, 'a')";
Command "insert into T values (21, 1008, 'a')";
Command "insert into T values (21, 1009, 'a')";
Command "insert into T values (21, 1010, 'a')";
Command "insert into T values (21, 1001, 'b')";
Command "insert into T values (21, 1002, 'b')";
Command "insert into T values (21, 1003, 'b')";
Command "insert into T values (21, 1004, 'b')";
Command "insert into T values (21, 1005, 'b')";
Command "insert into T values (21, 1006, 'b')";
Command "insert into T values (21, 1007, 'b')";
Command "insert into T values (21, 1008, 'b')";
Command "insert into T values (21, 1009, 'b')";
Command "insert into T values (21, 1010, 'b')";
Command "insert into T values (21, 1001, 'c')";
Command "insert into T values (21, 1002, 'c')";
Command "insert into T values (21, 1003, 'c')";
Command "insert into T values (21, 1004, 'c')";
Command "insert into T values (21, 1005, 'c')";
Command "insert into T values (21, 1006, 'c')";
Command "insert into T values (21, 1007, 'c')";
Command "insert into T values (21, 1008, 'c')";
Command "insert into T values (21, 1009, 'c')";
Command "insert into T values (21, 1010, 'c')";

# 60
Command "insert into T values (22, 1001, 'a')";
Command "insert into T values (22, 1002, 'a')";
Command "insert into T values (22, 1003, 'a')";
Command "insert into T values (22, 1004, 'a')";
Command "insert into T values (22, 1005, 'a')";
Command "insert into T values (22, 1006, 'a')";
Command "insert into T values (22, 1007, 'a')";
Command "insert into T values (22, 1008, 'a')";
Command "insert into T values (22, 1009, 'a')";
Command "insert into T values (22, 1010, 'a')";
Command "insert into T values (22, 1001, 'b')";
Command "insert into T values (22, 1002, 'b')";
Command "insert into T values (22, 1003, 'b')";
Command "insert into T values (22, 1004, 'b')";
Command "insert into T values (22, 1005, 'b')";
Command "insert into T values (22, 1006, 'b')";
Command "insert into T values (22, 1007, 'b')";
Command "insert into T values (22, 1008, 'b')";
Command "insert into T values (22, 1009, 'b')";
Command "insert into T values (22, 1010, 'b')";
Command "insert into T values (22, 1001, 'c')";
Command "insert into T values (22, 1002, 'c')";
Command "insert into T values (22, 1003, 'c')";
Command "insert into T values (22, 1004, 'c')";
Command "insert into T values (22, 1005, 'c')";
Command "insert into T values (22, 1006, 'c')";
Command "insert into T values (22, 1007, 'c')";
Command "insert into T values (22, 1008, 'c')";
Command "insert into T values (22, 1009, 'c')";
Command "insert into T values (22, 1010, 'c')";

# 90
Command "insert into T values (23, 1001, 'a')";
Command "insert into T values (23, 1002, 'a')";
Command "insert into T values (23, 1003, 'a')";
Command "insert into T values (23, 1004, 'a')";
Command "insert into T values (23, 1005, 'a')";
Command "insert into T values (23, 1006, 'a')";
Command "insert into T values (23, 1007, 'a')";
Command "insert into T values (23, 1008, 'a')";
Command "insert into T values (23, 1009, 'a')";
Command "insert into T values (23, 1010, 'a')";
Command "insert into T values (23, 1001, 'b')";
Command "insert into T values (23, 1002, 'b')";
Command "insert into T values (23, 1003, 'b')";
Command "insert into T values (23, 1004, 'b')";
Command "insert into T values (23, 1005, 'b')";
Command "insert into T values (23, 1006, 'b')";
Command "insert into T values (23, 1007, 'b')";
Command "insert into T values (23, 1008, 'b')";
Command "insert into T values (23, 1009, 'b')";
Command "insert into T values (23, 1010, 'b')";
Command "insert into T values (23, 1001, 'c')";
Command "insert into T values (23, 1002, 'c')";
Command "insert into T values (23, 1003, 'c')";
Command "insert into T values (23, 1004, 'c')";
Command "insert into T values (23, 1005, 'c')";
Command "insert into T values (23, 1006, 'c')";
Command "insert into T values (23, 1007, 'c')";
Command "insert into T values (23, 1008, 'c')";
Command "insert into T values (23, 1009, 'c')";
Command "insert into T values (23, 1010, 'c')";

# 120
Command "insert into T values (24, 1001, 'a')";
Command "insert into T values (24, 1002, 'a')";
Command "insert into T values (24, 1003, 'a')";
Command "insert into T values (24, 1004, 'a')";
Command "insert into T values (24, 1005, 'a')";
Command "insert into T values (24, 1006, 'a')";
Command "insert into T values (24, 1007, 'a')";
Command "insert into T values (24, 1008, 'a')";
Command "insert into T values (24, 1009, 'a')";
Command "insert into T values (24, 1010, 'a')";
Command "insert into T values (24, 1001, 'b')";
Command "insert into T values (24, 1002, 'b')";
Command "insert into T values (24, 1003, 'b')";
Command "insert into T values (24, 1004, 'b')";
Command "insert into T values (24, 1005, 'b')";
Command "insert into T values (24, 1006, 'b')";
Command "insert into T values (24, 1007, 'b')";
Command "insert into T values (24, 1008, 'b')";
Command "insert into T values (24, 1009, 'b')";
Command "insert into T values (24, 1010, 'b')";
Command "insert into T values (24, 1001, 'c')";
Command "insert into T values (24, 1002, 'c')";
Command "insert into T values (24, 1003, 'c')";
Command "insert into T values (24, 1004, 'c')";
Command "insert into T values (24, 1005, 'c')";
Command "insert into T values (24, 1006, 'c')";
Command "insert into T values (24, 1007, 'c')";
Command "insert into T values (24, 1008, 'c')";
Command "insert into T values (24, 1009, 'c')";
Command "insert into T values (24, 1010, 'c')";

# 150
Command "insert into T values (25, 1001, 'a')";
Command "insert into T values (25, 1002, 'a')";
Command "insert into T values (25, 1003, 'a')";
Command "insert into T values (25, 1004, 'a')";
Command "insert into T values (25, 1005, 'a')";
Command "insert into T values (25, 1006, 'a')";
Command "insert into T values (25, 1007, 'a')";
Command "insert into T values (25, 1008, 'a')";
Command "insert into T values (25, 1009, 'a')";
Command "insert into T values (25, 1010, 'a')";
Command "insert into T values (25, 1001, 'b')";
Command "insert into T values (25, 1002, 'b')";
Command "insert into T values (25, 1003, 'b')";
Command "insert into T values (25, 1004, 'b')";
Command "insert into T values (25, 1005, 'b')";
Command "insert into T values (25, 1006, 'b')";
Command "insert into T values (25, 1007, 'b')";
Command "insert into T values (25, 1008, 'b')";
Command "insert into T values (25, 1009, 'b')";
Command "insert into T values (25, 1010, 'b')";
Command "insert into T values (25, 1001, 'c')";
Command "insert into T values (25, 1002, 'c')";
Command "insert into T values (25, 1003, 'c')";
Command "insert into T values (25, 1004, 'c')";
Command "insert into T values (25, 1005, 'c')";
Command "insert into T values (25, 1006, 'c')";
Command "insert into T values (25, 1007, 'c')";
Command "insert into T values (25, 1008, 'c')";
Command "insert into T values (25, 1009, 'c')";
Command "insert into T values (25, 1010, 'c')";

# 180
Command "insert into T values (26, 1001, 'a')";
Command "insert into T values (26, 1002, 'a')";
Command "insert into T values (26, 1003, 'a')";
Command "insert into T values (26, 1004, 'a')";
Command "insert into T values (26, 1005, 'a')";
Command "insert into T values (26, 1006, 'a')";
Command "insert into T values (26, 1007, 'a')";
Command "insert into T values (26, 1008, 'a')";
Command "insert into T values (26, 1009, 'a')";
Command "insert into T values (26, 1010, 'a')";
Command "insert into T values (26, 1001, 'b')";
Command "insert into T values (26, 1002, 'b')";
Command "insert into T values (26, 1003, 'b')";
Command "insert into T values (26, 1004, 'b')";
Command "insert into T values (26, 1005, 'b')";
Command "insert into T values (26, 1006, 'b')";
Command "insert into T values (26, 1007, 'b')";
Command "insert into T values (26, 1008, 'b')";
Command "insert into T values (26, 1009, 'b')";
Command "insert into T values (26, 1010, 'b')";
Command "insert into T values (26, 1001, 'c')";
Command "insert into T values (26, 1002, 'c')";
Command "insert into T values (26, 1003, 'c')";
Command "insert into T values (26, 1004, 'c')";
Command "insert into T values (26, 1005, 'c')";
Command "insert into T values (26, 1006, 'c')";
Command "insert into T values (26, 1007, 'c')";
Command "insert into T values (26, 1008, 'c')";
Command "insert into T values (26, 1009, 'c')";
Command "insert into T values (26, 1010, 'c')";

# 210
Command "insert into T values (27, 1001, 'a')";
Command "insert into T values (27, 1002, 'a')";
Command "insert into T values (27, 1003, 'a')";
Command "insert into T values (27, 1004, 'a')";
Command "insert into T values (27, 1005, 'a')";
Command "insert into T values (27, 1006, 'a')";
Command "insert into T values (27, 1007, 'a')";
Command "insert into T values (27, 1008, 'a')";
Command "insert into T values (27, 1009, 'a')";
Command "insert into T values (27, 1010, 'a')";
Command "insert into T values (27, 1001, 'b')";
Command "insert into T values (27, 1002, 'b')";
Command "insert into T values (27, 1003, 'b')";
Command "insert into T values (27, 1004, 'b')";
Command "insert into T values (27, 1005, 'b')";
Command "insert into T values (27, 1006, 'b')";
Command "insert into T values (27, 1007, 'b')";
Command "insert into T values (27, 1008, 'b')";
Command "insert into T values (27, 1009, 'b')";
Command "insert into T values (27, 1010, 'b')";
Command "insert into T values (27, 1001, 'c')";
Command "insert into T values (27, 1002, 'c')";
Command "insert into T values (27, 1003, 'c')";
Command "insert into T values (27, 1004, 'c')";
Command "insert into T values (27, 1005, 'c')";
Command "insert into T values (27, 1006, 'c')";
Command "insert into T values (27, 1007, 'c')";
Command "insert into T values (27, 1008, 'c')";
Command "insert into T values (27, 1009, 'c')";
Command "insert into T values (27, 1010, 'c')";

# 240
Command "insert into T values (28, 1001, 'a')";
Command "insert into T values (28, 1002, 'a')";
Command "insert into T values (28, 1003, 'a')";
Command "insert into T values (28, 1004, 'a')";
Command "insert into T values (28, 1005, 'a')";
Command "insert into T values (28, 1006, 'a')";
Command "insert into T values (28, 1007, 'a')";
Command "insert into T values (28, 1008, 'a')";
Command "insert into T values (28, 1009, 'a')";
Command "insert into T values (28, 1010, 'a')";
Command "insert into T values (28, 1001, 'b')";
Command "insert into T values (28, 1002, 'b')";
Command "insert into T values (28, 1003, 'b')";
Command "insert into T values (28, 1004, 'b')";
Command "insert into T values (28, 1005, 'b')";
Command "insert into T values (28, 1006, 'b')";
Command "insert into T values (28, 1007, 'b')";
Command "insert into T values (28, 1008, 'b')";
Command "insert into T values (28, 1009, 'b')";
Command "insert into T values (28, 1010, 'b')";
Command "insert into T values (28, 1001, 'c')";
Command "insert into T values (28, 1002, 'c')";
Command "insert into T values (28, 1003, 'c')";
Command "insert into T values (28, 1004, 'c')";
Command "insert into T values (28, 1005, 'c')";
Command "insert into T values (28, 1006, 'c')";
Command "insert into T values (28, 1007, 'c')";
Command "insert into T values (28, 1008, 'c')";
Command "insert into T values (28, 1009, 'c')";
Command "insert into T values (28, 1010, 'c')";

# 270
Command "insert into T values (29, 1001, 'a')";
Command "insert into T values (29, 1002, 'a')";
Command "insert into T values (29, 1003, 'a')";
Command "insert into T values (29, 1004, 'a')";
Command "insert into T values (29, 1005, 'a')";
Command "insert into T values (29, 1006, 'a')";
Command "insert into T values (29, 1007, 'a')";
Command "insert into T values (29, 1008, 'a')";
Command "insert into T values (29, 1009, 'a')";
Command "insert into T values (29, 1010, 'a')";
Command "insert into T values (29, 1001, 'b')";
Command "insert into T values (29, 1002, 'b')";
Command "insert into T values (29, 1003, 'b')";
Command "insert into T values (29, 1004, 'b')";
Command "insert into T values (29, 1005, 'b')";
Command "insert into T values (29, 1006, 'b')";
Command "insert into T values (29, 1007, 'b')";
Command "insert into T values (29, 1008, 'b')";
Command "insert into T values (29, 1009, 'b')";
Command "insert into T values (29, 1010, 'b')";
Command "insert into T values (29, 1001, 'c')";
Command "insert into T values (29, 1002, 'c')";
Command "insert into T values (29, 1003, 'c')";
Command "insert into T values (29, 1004, 'c')";
Command "insert into T values (29, 1005, 'c')";
Command "insert into T values (29, 1006, 'c')";
Command "insert into T values (29, 1007, 'c')";
Command "insert into T values (29, 1008, 'c')";
Command "insert into T values (29, 1009, 'c')";
Command "insert into T values (29, 1010, 'c')";

# 300
Command "insert into T values (30, 1001, 'a')";
Command "insert into T values (30, 1002, 'a')";
Command "insert into T values (30, 1003, 'a')";
Command "insert into T values (30, 1004, 'a')";
Command "insert into T values (30, 1005, 'a')";
Command "insert into T values (30, 1006, 'a')";
Command "insert into T values (30, 1007, 'a')";
Command "insert into T values (30, 1008, 'a')";
Command "insert into T values (30, 1009, 'a')";
Command "insert into T values (30, 1010, 'a')";
Command "insert into T values (30, 1001, 'b')";
Command "insert into T values (30, 1002, 'b')";
Command "insert into T values (30, 1003, 'b')";
Command "insert into T values (30, 1004, 'b')";
Command "insert into T values (30, 1005, 'b')";
Command "insert into T values (30, 1006, 'b')";
Command "insert into T values (30, 1007, 'b')";
Command "insert into T values (30, 1008, 'b')";
Command "insert into T values (30, 1009, 'b')";
Command "insert into T values (30, 1010, 'b')";
Command "insert into T values (30, 1001, 'c')";
Command "insert into T values (30, 1002, 'c')";
Command "insert into T values (30, 1003, 'c')";
Command "insert into T values (30, 1004, 'c')";
Command "insert into T values (30, 1005, 'c')";
Command "insert into T values (30, 1006, 'c')";
Command "insert into T values (30, 1007, 'c')";
Command "insert into T values (30, 1008, 'c')";
Command "insert into T values (30, 1009, 'c')";
Command "insert into T values (30, 1010, 'c')";

# 30
Command "insert into T values (31, 1001, 'a')";
Command "insert into T values (31, 1002, 'a')";
Command "insert into T values (31, 1003, 'a')";
Command "insert into T values (31, 1004, 'a')";
Command "insert into T values (31, 1005, 'a')";
Command "insert into T values (31, 1006, 'a')";
Command "insert into T values (31, 1007, 'a')";
Command "insert into T values (31, 1008, 'a')";
Command "insert into T values (31, 1009, 'a')";
Command "insert into T values (31, 1010, 'a')";
Command "insert into T values (31, 1001, 'b')";
Command "insert into T values (31, 1002, 'b')";
Command "insert into T values (31, 1003, 'b')";
Command "insert into T values (31, 1004, 'b')";
Command "insert into T values (31, 1005, 'b')";
Command "insert into T values (31, 1006, 'b')";
Command "insert into T values (31, 1007, 'b')";
Command "insert into T values (31, 1008, 'b')";
Command "insert into T values (31, 1009, 'b')";
Command "insert into T values (31, 1010, 'b')";
Command "insert into T values (31, 1001, 'c')";
Command "insert into T values (31, 1002, 'c')";
Command "insert into T values (31, 1003, 'c')";
Command "insert into T values (31, 1004, 'c')";
Command "insert into T values (31, 1005, 'c')";
Command "insert into T values (31, 1006, 'c')";
Command "insert into T values (31, 1007, 'c')";
Command "insert into T values (31, 1008, 'c')";
Command "insert into T values (31, 1009, 'c')";
Command "insert into T values (31, 1010, 'c')";

# 60
Command "insert into T values (32, 1001, 'a')";
Command "insert into T values (32, 1002, 'a')";
Command "insert into T values (32, 1003, 'a')";
Command "insert into T values (32, 1004, 'a')";
Command "insert into T values (32, 1005, 'a')";
Command "insert into T values (32, 1006, 'a')";
Command "insert into T values (32, 1007, 'a')";
Command "insert into T values (32, 1008, 'a')";
Command "insert into T values (32, 1009, 'a')";
Command "insert into T values (32, 1010, 'a')";
Command "insert into T values (32, 1001, 'b')";
Command "insert into T values (32, 1002, 'b')";
Command "insert into T values (32, 1003, 'b')";
Command "insert into T values (32, 1004, 'b')";
Command "insert into T values (32, 1005, 'b')";
Command "insert into T values (32, 1006, 'b')";
Command "insert into T values (32, 1007, 'b')";
Command "insert into T values (32, 1008, 'b')";
Command "insert into T values (32, 1009, 'b')";
Command "insert into T values (32, 1010, 'b')";
Command "insert into T values (32, 1001, 'c')";
Command "insert into T values (32, 1002, 'c')";
Command "insert into T values (32, 1003, 'c')";
Command "insert into T values (32, 1004, 'c')";
Command "insert into T values (32, 1005, 'c')";
Command "insert into T values (32, 1006, 'c')";
Command "insert into T values (32, 1007, 'c')";
Command "insert into T values (32, 1008, 'c')";
Command "insert into T values (32, 1009, 'c')";
Command "insert into T values (32, 1010, 'c')";

# 90
Command "insert into T values (33, 1001, 'a')";
Command "insert into T values (33, 1002, 'a')";
Command "insert into T values (33, 1003, 'a')";
Command "insert into T values (33, 1004, 'a')";
Command "insert into T values (33, 1005, 'a')";
Command "insert into T values (33, 1006, 'a')";
Command "insert into T values (33, 1007, 'a')";
Command "insert into T values (33, 1008, 'a')";
Command "insert into T values (33, 1009, 'a')";
Command "insert into T values (33, 1010, 'a')";
Command "insert into T values (33, 1001, 'b')";
Command "insert into T values (33, 1002, 'b')";
Command "insert into T values (33, 1003, 'b')";
Command "insert into T values (33, 1004, 'b')";
Command "insert into T values (33, 1005, 'b')";
Command "insert into T values (33, 1006, 'b')";
Command "insert into T values (33, 1007, 'b')";
Command "insert into T values (33, 1008, 'b')";
Command "insert into T values (33, 1009, 'b')";
Command "insert into T values (33, 1010, 'b')";
Command "insert into T values (33, 1001, 'c')";
Command "insert into T values (33, 1002, 'c')";
Command "insert into T values (33, 1003, 'c')";
Command "insert into T values (33, 1004, 'c')";
Command "insert into T values (33, 1005, 'c')";
Command "insert into T values (33, 1006, 'c')";
Command "insert into T values (33, 1007, 'c')";
Command "insert into T values (33, 1008, 'c')";
Command "insert into T values (33, 1009, 'c')";
Command "insert into T values (33, 1010, 'c')";

# 120
Command "insert into T values (34, 1001, 'a')";
Command "insert into T values (34, 1002, 'a')";
Command "insert into T values (34, 1003, 'a')";
Command "insert into T values (34, 1004, 'a')";
Command "insert into T values (34, 1005, 'a')";
Command "insert into T values (34, 1006, 'a')";
Command "insert into T values (34, 1007, 'a')";
Command "insert into T values (34, 1008, 'a')";
Command "insert into T values (34, 1009, 'a')";
Command "insert into T values (34, 1010, 'a')";
Command "insert into T values (34, 1001, 'b')";
Command "insert into T values (34, 1002, 'b')";
Command "insert into T values (34, 1003, 'b')";
Command "insert into T values (34, 1004, 'b')";
Command "insert into T values (34, 1005, 'b')";
Command "insert into T values (34, 1006, 'b')";
Command "insert into T values (34, 1007, 'b')";
Command "insert into T values (34, 1008, 'b')";
Command "insert into T values (34, 1009, 'b')";
Command "insert into T values (34, 1010, 'b')";
Command "insert into T values (34, 1001, 'c')";
Command "insert into T values (34, 1002, 'c')";
Command "insert into T values (34, 1003, 'c')";
Command "insert into T values (34, 1004, 'c')";
Command "insert into T values (34, 1005, 'c')";
Command "insert into T values (34, 1006, 'c')";
Command "insert into T values (34, 1007, 'c')";
Command "insert into T values (34, 1008, 'c')";
Command "insert into T values (34, 1009, 'c')";
Command "insert into T values (34, 1010, 'c')";

# 150
Command "insert into T values (35, 1001, 'a')";
Command "insert into T values (35, 1002, 'a')";
Command "insert into T values (35, 1003, 'a')";
Command "insert into T values (35, 1004, 'a')";
Command "insert into T values (35, 1005, 'a')";
Command "insert into T values (35, 1006, 'a')";
Command "insert into T values (35, 1007, 'a')";
Command "insert into T values (35, 1008, 'a')";
Command "insert into T values (35, 1009, 'a')";
Command "insert into T values (35, 1010, 'a')";
Command "insert into T values (35, 1001, 'b')";
Command "insert into T values (35, 1002, 'b')";
Command "insert into T values (35, 1003, 'b')";
Command "insert into T values (35, 1004, 'b')";
Command "insert into T values (35, 1005, 'b')";
Command "insert into T values (35, 1006, 'b')";
Command "insert into T values (35, 1007, 'b')";
Command "insert into T values (35, 1008, 'b')";
Command "insert into T values (35, 1009, 'b')";
Command "insert into T values (35, 1010, 'b')";
Command "insert into T values (35, 1001, 'c')";
Command "insert into T values (35, 1002, 'c')";
Command "insert into T values (35, 1003, 'c')";
Command "insert into T values (35, 1004, 'c')";
Command "insert into T values (35, 1005, 'c')";
Command "insert into T values (35, 1006, 'c')";
Command "insert into T values (35, 1007, 'c')";
Command "insert into T values (35, 1008, 'c')";
Command "insert into T values (35, 1009, 'c')";
Command "insert into T values (35, 1010, 'c')";

# 180
Command "insert into T values (36, 1001, 'a')";
Command "insert into T values (36, 1002, 'a')";
Command "insert into T values (36, 1003, 'a')";
Command "insert into T values (36, 1004, 'a')";
Command "insert into T values (36, 1005, 'a')";
Command "insert into T values (36, 1006, 'a')";
Command "insert into T values (36, 1007, 'a')";
Command "insert into T values (36, 1008, 'a')";
Command "insert into T values (36, 1009, 'a')";
Command "insert into T values (36, 1010, 'a')";
Command "insert into T values (36, 1001, 'b')";
Command "insert into T values (36, 1002, 'b')";
Command "insert into T values (36, 1003, 'b')";
Command "insert into T values (36, 1004, 'b')";
Command "insert into T values (36, 1005, 'b')";
Command "insert into T values (36, 1006, 'b')";
Command "insert into T values (36, 1007, 'b')";
Command "insert into T values (36, 1008, 'b')";
Command "insert into T values (36, 1009, 'b')";
Command "insert into T values (36, 1010, 'b')";
Command "insert into T values (36, 1001, 'c')";
Command "insert into T values (36, 1002, 'c')";
Command "insert into T values (36, 1003, 'c')";
Command "insert into T values (36, 1004, 'c')";
Command "insert into T values (36, 1005, 'c')";
Command "insert into T values (36, 1006, 'c')";
Command "insert into T values (36, 1007, 'c')";
Command "insert into T values (36, 1008, 'c')";
Command "insert into T values (36, 1009, 'c')";
Command "insert into T values (36, 1010, 'c')";

# 210
Command "insert into T values (37, 1001, 'a')";
Command "insert into T values (37, 1002, 'a')";
Command "insert into T values (37, 1003, 'a')";
Command "insert into T values (37, 1004, 'a')";
Command "insert into T values (37, 1005, 'a')";
Command "insert into T values (37, 1006, 'a')";
Command "insert into T values (37, 1007, 'a')";
Command "insert into T values (37, 1008, 'a')";
Command "insert into T values (37, 1009, 'a')";
Command "insert into T values (37, 1010, 'a')";
Command "insert into T values (37, 1001, 'b')";
Command "insert into T values (37, 1002, 'b')";
Command "insert into T values (37, 1003, 'b')";
Command "insert into T values (37, 1004, 'b')";
Command "insert into T values (37, 1005, 'b')";
Command "insert into T values (37, 1006, 'b')";
Command "insert into T values (37, 1007, 'b')";
Command "insert into T values (37, 1008, 'b')";
Command "insert into T values (37, 1009, 'b')";
Command "insert into T values (37, 1010, 'b')";
Command "insert into T values (37, 1001, 'c')";
Command "insert into T values (37, 1002, 'c')";
Command "insert into T values (37, 1003, 'c')";
Command "insert into T values (37, 1004, 'c')";
Command "insert into T values (37, 1005, 'c')";
Command "insert into T values (37, 1006, 'c')";
Command "insert into T values (37, 1007, 'c')";
Command "insert into T values (37, 1008, 'c')";
Command "insert into T values (37, 1009, 'c')";
Command "insert into T values (37, 1010, 'c')";

# 240
Command "insert into T values (38, 1001, 'a')";
Command "insert into T values (38, 1002, 'a')";
Command "insert into T values (38, 1003, 'a')";
Command "insert into T values (38, 1004, 'a')";
Command "insert into T values (38, 1005, 'a')";
Command "insert into T values (38, 1006, 'a')";
Command "insert into T values (38, 1007, 'a')";
Command "insert into T values (38, 1008, 'a')";
Command "insert into T values (38, 1009, 'a')";
Command "insert into T values (38, 1010, 'a')";
Command "insert into T values (38, 1001, 'b')";
Command "insert into T values (38, 1002, 'b')";
Command "insert into T values (38, 1003, 'b')";
Command "insert into T values (38, 1004, 'b')";
Command "insert into T values (38, 1005, 'b')";
Command "insert into T values (38, 1006, 'b')";
Command "insert into T values (38, 1007, 'b')";
Command "insert into T values (38, 1008, 'b')";
Command "insert into T values (38, 1009, 'b')";
Command "insert into T values (38, 1010, 'b')";
Command "insert into T values (38, 1001, 'c')";
Command "insert into T values (38, 1002, 'c')";
Command "insert into T values (38, 1003, 'c')";
Command "insert into T values (38, 1004, 'c')";
Command "insert into T values (38, 1005, 'c')";
Command "insert into T values (38, 1006, 'c')";
Command "insert into T values (38, 1007, 'c')";
Command "insert into T values (38, 1008, 'c')";
Command "insert into T values (38, 1009, 'c')";
Command "insert into T values (38, 1010, 'c')";

# 270
Command "insert into T values (39, 1001, 'a')";
Command "insert into T values (39, 1002, 'a')";
Command "insert into T values (39, 1003, 'a')";
Command "insert into T values (39, 1004, 'a')";
Command "insert into T values (39, 1005, 'a')";
Command "insert into T values (39, 1006, 'a')";
Command "insert into T values (39, 1007, 'a')";
Command "insert into T values (39, 1008, 'a')";
Command "insert into T values (39, 1009, 'a')";
Command "insert into T values (39, 1010, 'a')";
Command "insert into T values (39, 1001, 'b')";
Command "insert into T values (39, 1002, 'b')";
Command "insert into T values (39, 1003, 'b')";
Command "insert into T values (39, 1004, 'b')";
Command "insert into T values (39, 1005, 'b')";
Command "insert into T values (39, 1006, 'b')";
Command "insert into T values (39, 1007, 'b')";
Command "insert into T values (39, 1008, 'b')";
Command "insert into T values (39, 1009, 'b')";
Command "insert into T values (39, 1010, 'b')";
Command "insert into T values (39, 1001, 'c')";
Command "insert into T values (39, 1002, 'c')";
Command "insert into T values (39, 1003, 'c')";
Command "insert into T values (39, 1004, 'c')";
Command "insert into T values (39, 1005, 'c')";
Command "insert into T values (39, 1006, 'c')";
Command "insert into T values (39, 1007, 'c')";
Command "insert into T values (39, 1008, 'c')";
Command "insert into T values (39, 1009, 'c')";
Command "insert into T values (39, 1010, 'c')";

# 300
Command "insert into T values (40, 1001, 'a')";
Command "insert into T values (40, 1002, 'a')";
Command "insert into T values (40, 1003, 'a')";
Command "insert into T values (40, 1004, 'a')";
Command "insert into T values (40, 1005, 'a')";
Command "insert into T values (40, 1006, 'a')";
Command "insert into T values (40, 1007, 'a')";
Command "insert into T values (40, 1008, 'a')";
Command "insert into T values (40, 1009, 'a')";
Command "insert into T values (40, 1010, 'a')";
Command "insert into T values (40, 1001, 'b')";
Command "insert into T values (40, 1002, 'b')";
Command "insert into T values (40, 1003, 'b')";
Command "insert into T values (40, 1004, 'b')";
Command "insert into T values (40, 1005, 'b')";
Command "insert into T values (40, 1006, 'b')";
Command "insert into T values (40, 1007, 'b')";
Command "insert into T values (40, 1008, 'b')";
Command "insert into T values (40, 1009, 'b')";
Command "insert into T values (40, 1010, 'b')";
Command "insert into T values (40, 1001, 'c')";
Command "insert into T values (40, 1002, 'c')";
Command "insert into T values (40, 1003, 'c')";
Command "insert into T values (40, 1004, 'c')";
Command "insert into T values (40, 1005, 'c')";
Command "insert into T values (40, 1006, 'c')";
Command "insert into T values (40, 1007, 'c')";
Command "insert into T values (40, 1008, 'c')";
Command "insert into T values (40, 1009, 'c')";
Command "insert into T values (40, 1010, 'c')";

# 30
Command "insert into T values (41, 1001, 'a')";
Command "insert into T values (41, 1002, 'a')";
Command "insert into T values (41, 1003, 'a')";
Command "insert into T values (41, 1004, 'a')";
Command "insert into T values (41, 1005, 'a')";
Command "insert into T values (41, 1006, 'a')";
Command "insert into T values (41, 1007, 'a')";
Command "insert into T values (41, 1008, 'a')";
Command "insert into T values (41, 1009, 'a')";
Command "insert into T values (41, 1010, 'a')";
Command "insert into T values (41, 1001, 'b')";
Command "insert into T values (41, 1002, 'b')";
Command "insert into T values (41, 1003, 'b')";
Command "insert into T values (41, 1004, 'b')";
Command "insert into T values (41, 1005, 'b')";
Command "insert into T values (41, 1006, 'b')";
Command "insert into T values (41, 1007, 'b')";
Command "insert into T values (41, 1008, 'b')";
Command "insert into T values (41, 1009, 'b')";
Command "insert into T values (41, 1010, 'b')";
Command "insert into T values (41, 1001, 'c')";
Command "insert into T values (41, 1002, 'c')";
Command "insert into T values (41, 1003, 'c')";
Command "insert into T values (41, 1004, 'c')";
Command "insert into T values (41, 1005, 'c')";
Command "insert into T values (41, 1006, 'c')";
Command "insert into T values (41, 1007, 'c')";
Command "insert into T values (41, 1008, 'c')";
Command "insert into T values (41, 1009, 'c')";
Command "insert into T values (41, 1010, 'c')";

# 60
Command "insert into T values (42, 1001, 'a')";
Command "insert into T values (42, 1002, 'a')";
Command "insert into T values (42, 1003, 'a')";
Command "insert into T values (42, 1004, 'a')";
Command "insert into T values (42, 1005, 'a')";
Command "insert into T values (42, 1006, 'a')";
Command "insert into T values (42, 1007, 'a')";
Command "insert into T values (42, 1008, 'a')";
Command "insert into T values (42, 1009, 'a')";
Command "insert into T values (42, 1010, 'a')";
Command "insert into T values (42, 1001, 'b')";
Command "insert into T values (42, 1002, 'b')";
Command "insert into T values (42, 1003, 'b')";
Command "insert into T values (42, 1004, 'b')";
Command "insert into T values (42, 1005, 'b')";
Command "insert into T values (42, 1006, 'b')";
Command "insert into T values (42, 1007, 'b')";
Command "insert into T values (42, 1008, 'b')";
Command "insert into T values (42, 1009, 'b')";
Command "insert into T values (42, 1010, 'b')";
Command "insert into T values (42, 1001, 'c')";
Command "insert into T values (42, 1002, 'c')";
Command "insert into T values (42, 1003, 'c')";
Command "insert into T values (42, 1004, 'c')";
Command "insert into T values (42, 1005, 'c')";
Command "insert into T values (42, 1006, 'c')";
Command "insert into T values (42, 1007, 'c')";
Command "insert into T values (42, 1008, 'c')";
Command "insert into T values (42, 1009, 'c')";
Command "insert into T values (42, 1010, 'c')";

# 90
Command "insert into T values (43, 1001, 'a')";
Command "insert into T values (43, 1002, 'a')";
Command "insert into T values (43, 1003, 'a')";
Command "insert into T values (43, 1004, 'a')";
Command "insert into T values (43, 1005, 'a')";
Command "insert into T values (43, 1006, 'a')";
Command "insert into T values (43, 1007, 'a')";
Command "insert into T values (43, 1008, 'a')";
Command "insert into T values (43, 1009, 'a')";
Command "insert into T values (43, 1010, 'a')";
Command "insert into T values (43, 1001, 'b')";
Command "insert into T values (43, 1002, 'b')";
Command "insert into T values (43, 1003, 'b')";
Command "insert into T values (43, 1004, 'b')";
Command "insert into T values (43, 1005, 'b')";
Command "insert into T values (43, 1006, 'b')";
Command "insert into T values (43, 1007, 'b')";
Command "insert into T values (43, 1008, 'b')";
Command "insert into T values (43, 1009, 'b')";
Command "insert into T values (43, 1010, 'b')";
Command "insert into T values (43, 1001, 'c')";
Command "insert into T values (43, 1002, 'c')";
Command "insert into T values (43, 1003, 'c')";
Command "insert into T values (43, 1004, 'c')";
Command "insert into T values (43, 1005, 'c')";
Command "insert into T values (43, 1006, 'c')";
Command "insert into T values (43, 1007, 'c')";
Command "insert into T values (43, 1008, 'c')";
Command "insert into T values (43, 1009, 'c')";
Command "insert into T values (43, 1010, 'c')";

# 120
Command "insert into T values (44, 1001, 'a')";
Command "insert into T values (44, 1002, 'a')";
Command "insert into T values (44, 1003, 'a')";
Command "insert into T values (44, 1004, 'a')";
Command "insert into T values (44, 1005, 'a')";
Command "insert into T values (44, 1006, 'a')";
Command "insert into T values (44, 1007, 'a')";
Command "insert into T values (44, 1008, 'a')";
Command "insert into T values (44, 1009, 'a')";
Command "insert into T values (44, 1010, 'a')";
Command "insert into T values (44, 1001, 'b')";
Command "insert into T values (44, 1002, 'b')";
Command "insert into T values (44, 1003, 'b')";
Command "insert into T values (44, 1004, 'b')";
Command "insert into T values (44, 1005, 'b')";
Command "insert into T values (44, 1006, 'b')";
Command "insert into T values (44, 1007, 'b')";
Command "insert into T values (44, 1008, 'b')";
Command "insert into T values (44, 1009, 'b')";
Command "insert into T values (44, 1010, 'b')";
Command "insert into T values (44, 1001, 'c')";
Command "insert into T values (44, 1002, 'c')";
Command "insert into T values (44, 1003, 'c')";
Command "insert into T values (44, 1004, 'c')";
Command "insert into T values (44, 1005, 'c')";
Command "insert into T values (44, 1006, 'c')";
Command "insert into T values (44, 1007, 'c')";
Command "insert into T values (44, 1008, 'c')";
Command "insert into T values (44, 1009, 'c')";
Command "insert into T values (44, 1010, 'c')";

# 150
Command "insert into T values (45, 1001, 'a')";
Command "insert into T values (45, 1002, 'a')";
Command "insert into T values (45, 1003, 'a')";
Command "insert into T values (45, 1004, 'a')";
Command "insert into T values (45, 1005, 'a')";
Command "insert into T values (45, 1006, 'a')";
Command "insert into T values (45, 1007, 'a')";
Command "insert into T values (45, 1008, 'a')";
Command "insert into T values (45, 1009, 'a')";
Command "insert into T values (45, 1010, 'a')";
Command "insert into T values (45, 1001, 'b')";
Command "insert into T values (45, 1002, 'b')";
Command "insert into T values (45, 1003, 'b')";
Command "insert into T values (45, 1004, 'b')";
Command "insert into T values (45, 1005, 'b')";
Command "insert into T values (45, 1006, 'b')";
Command "insert into T values (45, 1007, 'b')";
Command "insert into T values (45, 1008, 'b')";
Command "insert into T values (45, 1009, 'b')";
Command "insert into T values (45, 1010, 'b')";
Command "insert into T values (45, 1001, 'c')";
Command "insert into T values (45, 1002, 'c')";
Command "insert into T values (45, 1003, 'c')";
Command "insert into T values (45, 1004, 'c')";
Command "insert into T values (45, 1005, 'c')";
Command "insert into T values (45, 1006, 'c')";
Command "insert into T values (45, 1007, 'c')";
Command "insert into T values (45, 1008, 'c')";
Command "insert into T values (45, 1009, 'c')";
Command "insert into T values (45, 1010, 'c')";

# 180
Command "insert into T values (46, 1001, 'a')";
Command "insert into T values (46, 1002, 'a')";
Command "insert into T values (46, 1003, 'a')";
Command "insert into T values (46, 1004, 'a')";
Command "insert into T values (46, 1005, 'a')";
Command "insert into T values (46, 1006, 'a')";
Command "insert into T values (46, 1007, 'a')";
Command "insert into T values (46, 1008, 'a')";
Command "insert into T values (46, 1009, 'a')";
Command "insert into T values (46, 1010, 'a')";
Command "insert into T values (46, 1001, 'b')";
Command "insert into T values (46, 1002, 'b')";
Command "insert into T values (46, 1003, 'b')";
Command "insert into T values (46, 1004, 'b')";
Command "insert into T values (46, 1005, 'b')";
Command "insert into T values (46, 1006, 'b')";
Command "insert into T values (46, 1007, 'b')";
Command "insert into T values (46, 1008, 'b')";
Command "insert into T values (46, 1009, 'b')";
Command "insert into T values (46, 1010, 'b')";
Command "insert into T values (46, 1001, 'c')";
Command "insert into T values (46, 1002, 'c')";
Command "insert into T values (46, 1003, 'c')";
Command "insert into T values (46, 1004, 'c')";
Command "insert into T values (46, 1005, 'c')";
Command "insert into T values (46, 1006, 'c')";
Command "insert into T values (46, 1007, 'c')";
Command "insert into T values (46, 1008, 'c')";
Command "insert into T values (46, 1009, 'c')";
Command "insert into T values (46, 1010, 'c')";

# 210
Command "insert into T values (47, 1001, 'a')";
Command "insert into T values (47, 1002, 'a')";
Command "insert into T values (47, 1003, 'a')";
Command "insert into T values (47, 1004, 'a')";
Command "insert into T values (47, 1005, 'a')";
Command "insert into T values (47, 1006, 'a')";
Command "insert into T values (47, 1007, 'a')";
Command "insert into T values (47, 1008, 'a')";
Command "insert into T values (47, 1009, 'a')";
Command "insert into T values (47, 1010, 'a')";
Command "insert into T values (47, 1001, 'b')";
Command "insert into T values (47, 1002, 'b')";
Command "insert into T values (47, 1003, 'b')";
Command "insert into T values (47, 1004, 'b')";
Command "insert into T values (47, 1005, 'b')";
Command "insert into T values (47, 1006, 'b')";
Command "insert into T values (47, 1007, 'b')";
Command "insert into T values (47, 1008, 'b')";
Command "insert into T values (47, 1009, 'b')";
Command "insert into T values (47, 1010, 'b')";
Command "insert into T values (47, 1001, 'c')";
Command "insert into T values (47, 1002, 'c')";
Command "insert into T values (47, 1003, 'c')";
Command "insert into T values (47, 1004, 'c')";
Command "insert into T values (47, 1005, 'c')";
Command "insert into T values (47, 1006, 'c')";
Command "insert into T values (47, 1007, 'c')";
Command "insert into T values (47, 1008, 'c')";
Command "insert into T values (47, 1009, 'c')";
Command "insert into T values (47, 1010, 'c')";

# 240
Command "insert into T values (48, 1001, 'a')";
Command "insert into T values (48, 1002, 'a')";
Command "insert into T values (48, 1003, 'a')";
Command "insert into T values (48, 1004, 'a')";
Command "insert into T values (48, 1005, 'a')";
Command "insert into T values (48, 1006, 'a')";
Command "insert into T values (48, 1007, 'a')";
Command "insert into T values (48, 1008, 'a')";
Command "insert into T values (48, 1009, 'a')";
Command "insert into T values (48, 1010, 'a')";
Command "insert into T values (48, 1001, 'b')";
Command "insert into T values (48, 1002, 'b')";
Command "insert into T values (48, 1003, 'b')";
Command "insert into T values (48, 1004, 'b')";
Command "insert into T values (48, 1005, 'b')";
Command "insert into T values (48, 1006, 'b')";
Command "insert into T values (48, 1007, 'b')";
Command "insert into T values (48, 1008, 'b')";
Command "insert into T values (48, 1009, 'b')";
Command "insert into T values (48, 1010, 'b')";
Command "insert into T values (48, 1001, 'c')";
Command "insert into T values (48, 1002, 'c')";
Command "insert into T values (48, 1003, 'c')";
Command "insert into T values (48, 1004, 'c')";
Command "insert into T values (48, 1005, 'c')";
Command "insert into T values (48, 1006, 'c')";
Command "insert into T values (48, 1007, 'c')";
Command "insert into T values (48, 1008, 'c')";
Command "insert into T values (48, 1009, 'c')";
Command "insert into T values (48, 1010, 'c')";

# 270
Command "insert into T values (49, 1001, 'a')";
Command "insert into T values (49, 1002, 'a')";
Command "insert into T values (49, 1003, 'a')";
Command "insert into T values (49, 1004, 'a')";
Command "insert into T values (49, 1005, 'a')";
Command "insert into T values (49, 1006, 'a')";
Command "insert into T values (49, 1007, 'a')";
Command "insert into T values (49, 1008, 'a')";
Command "insert into T values (49, 1009, 'a')";
Command "insert into T values (49, 1010, 'a')";
Command "insert into T values (49, 1001, 'b')";
Command "insert into T values (49, 1002, 'b')";
Command "insert into T values (49, 1003, 'b')";
Command "insert into T values (49, 1004, 'b')";
Command "insert into T values (49, 1005, 'b')";
Command "insert into T values (49, 1006, 'b')";
Command "insert into T values (49, 1007, 'b')";
Command "insert into T values (49, 1008, 'b')";
Command "insert into T values (49, 1009, 'b')";
Command "insert into T values (49, 1010, 'b')";
Command "insert into T values (49, 1001, 'c')";
Command "insert into T values (49, 1002, 'c')";
Command "insert into T values (49, 1003, 'c')";
Command "insert into T values (49, 1004, 'c')";
Command "insert into T values (49, 1005, 'c')";
Command "insert into T values (49, 1006, 'c')";
Command "insert into T values (49, 1007, 'c')";
Command "insert into T values (49, 1008, 'c')";
Command "insert into T values (49, 1009, 'c')";
Command "insert into T values (49, 1010, 'c')";

# 300
Command "insert into T values (50, 1001, 'a')";
Command "insert into T values (50, 1002, 'a')";
Command "insert into T values (50, 1003, 'a')";
Command "insert into T values (50, 1004, 'a')";
Command "insert into T values (50, 1005, 'a')";
Command "insert into T values (50, 1006, 'a')";
Command "insert into T values (50, 1007, 'a')";
Command "insert into T values (50, 1008, 'a')";
Command "insert into T values (50, 1009, 'a')";
Command "insert into T values (50, 1010, 'a')";
Command "insert into T values (50, 1001, 'b')";
Command "insert into T values (50, 1002, 'b')";
Command "insert into T values (50, 1003, 'b')";
Command "insert into T values (50, 1004, 'b')";
Command "insert into T values (50, 1005, 'b')";
Command "insert into T values (50, 1006, 'b')";
Command "insert into T values (50, 1007, 'b')";
Command "insert into T values (50, 1008, 'b')";
Command "insert into T values (50, 1009, 'b')";
Command "insert into T values (50, 1010, 'b')";
Command "insert into T values (50, 1001, 'c')";
Command "insert into T values (50, 1002, 'c')";
Command "insert into T values (50, 1003, 'c')";
Command "insert into T values (50, 1004, 'c')";
Command "insert into T values (50, 1005, 'c')";
Command "insert into T values (50, 1006, 'c')";
Command "insert into T values (50, 1007, 'c')";
Command "insert into T values (50, 1008, 'c')";
Command "insert into T values (50, 1009, 'c')";
Command "insert into T values (50, 1010, 'c')";

# 30
Command "insert into T values (51, 1001, 'a')";
Command "insert into T values (51, 1002, 'a')";
Command "insert into T values (51, 1003, 'a')";
Command "insert into T values (51, 1004, 'a')";
Command "insert into T values (51, 1005, 'a')";
Command "insert into T values (51, 1006, 'a')";
Command "insert into T values (51, 1007, 'a')";
Command "insert into T values (51, 1008, 'a')";
Command "insert into T values (51, 1009, 'a')";
Command "insert into T values (51, 1010, 'a')";
Command "insert into T values (51, 1001, 'b')";
Command "insert into T values (51, 1002, 'b')";
Command "insert into T values (51, 1003, 'b')";
Command "insert into T values (51, 1004, 'b')";
Command "insert into T values (51, 1005, 'b')";
Command "insert into T values (51, 1006, 'b')";
Command "insert into T values (51, 1007, 'b')";
Command "insert into T values (51, 1008, 'b')";
Command "insert into T values (51, 1009, 'b')";
Command "insert into T values (51, 1010, 'b')";
Command "insert into T values (51, 1001, 'c')";
Command "insert into T values (51, 1002, 'c')";
Command "insert into T values (51, 1003, 'c')";
Command "insert into T values (51, 1004, 'c')";
Command "insert into T values (51, 1005, 'c')";
Command "insert into T values (51, 1006, 'c')";
Command "insert into T values (51, 1007, 'c')";
Command "insert into T values (51, 1008, 'c')";
Command "insert into T values (51, 1009, 'c')";
Command "insert into T values (51, 1010, 'c')";

# 60
Command "insert into T values (52, 1001, 'a')";
Command "insert into T values (52, 1002, 'a')";
Command "insert into T values (52, 1003, 'a')";
Command "insert into T values (52, 1004, 'a')";
Command "insert into T values (52, 1005, 'a')";
Command "insert into T values (52, 1006, 'a')";
Command "insert into T values (52, 1007, 'a')";
Command "insert into T values (52, 1008, 'a')";
Command "insert into T values (52, 1009, 'a')";
Command "insert into T values (52, 1010, 'a')";
Command "insert into T values (52, 1001, 'b')";
Command "insert into T values (52, 1002, 'b')";
Command "insert into T values (52, 1003, 'b')";
Command "insert into T values (52, 1004, 'b')";
Command "insert into T values (52, 1005, 'b')";
Command "insert into T values (52, 1006, 'b')";
Command "insert into T values (52, 1007, 'b')";
Command "insert into T values (52, 1008, 'b')";
Command "insert into T values (52, 1009, 'b')";
Command "insert into T values (52, 1010, 'b')";
Command "insert into T values (52, 1001, 'c')";
Command "insert into T values (52, 1002, 'c')";
Command "insert into T values (52, 1003, 'c')";
Command "insert into T values (52, 1004, 'c')";
Command "insert into T values (52, 1005, 'c')";
Command "insert into T values (52, 1006, 'c')";
Command "insert into T values (52, 1007, 'c')";
Command "insert into T values (52, 1008, 'c')";
Command "insert into T values (52, 1009, 'c')";
Command "insert into T values (52, 1010, 'c')";

# 90
Command "insert into T values (53, 1001, 'a')";
Command "insert into T values (53, 1002, 'a')";
Command "insert into T values (53, 1003, 'a')";
Command "insert into T values (53, 1004, 'a')";
Command "insert into T values (53, 1005, 'a')";
Command "insert into T values (53, 1006, 'a')";
Command "insert into T values (53, 1007, 'a')";
Command "insert into T values (53, 1008, 'a')";
Command "insert into T values (53, 1009, 'a')";
Command "insert into T values (53, 1010, 'a')";
Command "insert into T values (53, 1001, 'b')";
Command "insert into T values (53, 1002, 'b')";
Command "insert into T values (53, 1003, 'b')";
Command "insert into T values (53, 1004, 'b')";
Command "insert into T values (53, 1005, 'b')";
Command "insert into T values (53, 1006, 'b')";
Command "insert into T values (53, 1007, 'b')";
Command "insert into T values (53, 1008, 'b')";
Command "insert into T values (53, 1009, 'b')";
Command "insert into T values (53, 1010, 'b')";
Command "insert into T values (53, 1001, 'c')";
Command "insert into T values (53, 1002, 'c')";
Command "insert into T values (53, 1003, 'c')";
Command "insert into T values (53, 1004, 'c')";
Command "insert into T values (53, 1005, 'c')";
Command "insert into T values (53, 1006, 'c')";
Command "insert into T values (53, 1007, 'c')";
Command "insert into T values (53, 1008, 'c')";
Command "insert into T values (53, 1009, 'c')";
Command "insert into T values (53, 1010, 'c')";

# 120
Command "insert into T values (54, 1001, 'a')";
Command "insert into T values (54, 1002, 'a')";
Command "insert into T values (54, 1003, 'a')";
Command "insert into T values (54, 1004, 'a')";
Command "insert into T values (54, 1005, 'a')";
Command "insert into T values (54, 1006, 'a')";
Command "insert into T values (54, 1007, 'a')";
Command "insert into T values (54, 1008, 'a')";
Command "insert into T values (54, 1009, 'a')";
Command "insert into T values (54, 1010, 'a')";
Command "insert into T values (54, 1001, 'b')";
Command "insert into T values (54, 1002, 'b')";
Command "insert into T values (54, 1003, 'b')";
Command "insert into T values (54, 1004, 'b')";
Command "insert into T values (54, 1005, 'b')";
Command "insert into T values (54, 1006, 'b')";
Command "insert into T values (54, 1007, 'b')";
Command "insert into T values (54, 1008, 'b')";
Command "insert into T values (54, 1009, 'b')";
Command "insert into T values (54, 1010, 'b')";
Command "insert into T values (54, 1001, 'c')";
Command "insert into T values (54, 1002, 'c')";
Command "insert into T values (54, 1003, 'c')";
Command "insert into T values (54, 1004, 'c')";
Command "insert into T values (54, 1005, 'c')";
Command "insert into T values (54, 1006, 'c')";
Command "insert into T values (54, 1007, 'c')";
Command "insert into T values (54, 1008, 'c')";
Command "insert into T values (54, 1009, 'c')";
Command "insert into T values (54, 1010, 'c')";

# 150
Command "insert into T values (55, 1001, 'a')";
Command "insert into T values (55, 1002, 'a')";
Command "insert into T values (55, 1003, 'a')";
Command "insert into T values (55, 1004, 'a')";
Command "insert into T values (55, 1005, 'a')";
Command "insert into T values (55, 1006, 'a')";
Command "insert into T values (55, 1007, 'a')";
Command "insert into T values (55, 1008, 'a')";
Command "insert into T values (55, 1009, 'a')";
Command "insert into T values (55, 1010, 'a')";
Command "insert into T values (55, 1001, 'b')";
Command "insert into T values (55, 1002, 'b')";
Command "insert into T values (55, 1003, 'b')";
Command "insert into T values (55, 1004, 'b')";
Command "insert into T values (55, 1005, 'b')";
Command "insert into T values (55, 1006, 'b')";
Command "insert into T values (55, 1007, 'b')";
Command "insert into T values (55, 1008, 'b')";
Command "insert into T values (55, 1009, 'b')";
Command "insert into T values (55, 1010, 'b')";
Command "insert into T values (55, 1001, 'c')";
Command "insert into T values (55, 1002, 'c')";
Command "insert into T values (55, 1003, 'c')";
Command "insert into T values (55, 1004, 'c')";
Command "insert into T values (55, 1005, 'c')";
Command "insert into T values (55, 1006, 'c')";
Command "insert into T values (55, 1007, 'c')";
Command "insert into T values (55, 1008, 'c')";
Command "insert into T values (55, 1009, 'c')";
Command "insert into T values (55, 1010, 'c')";

# 先頭を削除する
Command "delete from T where id = 1 and sub_id = 1001 and title = 'a'";

# 同じキーを入れる
Command "insert into T values (1, 1001, 'a')";

# 整合性検査
Command "verify table T cascade continue";

TerminateSession;
Terminate;
End;
