/******************************************************************************* Chinook Database - Version 1.4 Script: Chinook_SqlServer.sql Description: Creates and populates the Chinook database. DB Server: SqlServer Author: Luis Rocha License: http://www.codeplex.com/ChinookDatabase/license ********************************************************************************/ /******************************************************************************* Drop database if it exists ********************************************************************************/ IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'Chinook') BEGIN ALTER DATABASE [Chinook] SET OFFLINE WITH ROLLBACK IMMEDIATE; ALTER DATABASE [Chinook] SET ONLINE; DROP DATABASE [Chinook]; END GO /******************************************************************************* Create database ********************************************************************************/ CREATE DATABASE [Chinook]; GO USE [Chinook]; GO /******************************************************************************* Create Tables ********************************************************************************/ CREATE TABLE [dbo].[Album] ( [AlbumId] INT NOT NULL, [Title] NVARCHAR(160) NOT NULL, [ArtistId] INT NOT NULL, CONSTRAINT [PK_Album] PRIMARY KEY CLUSTERED ([AlbumId]) ); GO CREATE TABLE [dbo].[Artist] ( [ArtistId] INT NOT NULL, [Name] NVARCHAR(120), CONSTRAINT [PK_Artist] PRIMARY KEY CLUSTERED ([ArtistId]) ); GO CREATE TABLE [dbo].[Customer] ( [CustomerId] INT NOT NULL, [FirstName] NVARCHAR(40) NOT NULL, [LastName] NVARCHAR(20) NOT NULL, [Company] NVARCHAR(80), [Address] NVARCHAR(70), [City] NVARCHAR(40), [State] NVARCHAR(40), [Country] NVARCHAR(40), [PostalCode] NVARCHAR(10), [Phone] NVARCHAR(24), [Fax] NVARCHAR(24), [Email] NVARCHAR(60) NOT NULL, [SupportRepId] INT, CONSTRAINT [PK_Customer] PRIMARY KEY CLUSTERED ([CustomerId]) ); GO CREATE TABLE [dbo].[Employee] ( [EmployeeId] INT NOT NULL, [LastName] NVARCHAR(20) NOT NULL, [FirstName] NVARCHAR(20) NOT NULL, [Title] NVARCHAR(30), [ReportsTo] INT, [BirthDate] DATETIME, [HireDate] DATETIME, [Address] NVARCHAR(70), [City] NVARCHAR(40), [State] NVARCHAR(40), [Country] NVARCHAR(40), [PostalCode] NVARCHAR(10), [Phone] NVARCHAR(24), [Fax] NVARCHAR(24), [Email] NVARCHAR(60), CONSTRAINT [PK_Employee] PRIMARY KEY CLUSTERED ([EmployeeId]) ); GO CREATE TABLE [dbo].[Genre] ( [GenreId] INT NOT NULL, [Name] NVARCHAR(120), CONSTRAINT [PK_Genre] PRIMARY KEY CLUSTERED ([GenreId]) ); GO CREATE TABLE [dbo].[Invoice] ( [InvoiceId] INT NOT NULL, [CustomerId] INT NOT NULL, [InvoiceDate] DATETIME NOT NULL, [BillingAddress] NVARCHAR(70), [BillingCity] NVARCHAR(40), [BillingState] NVARCHAR(40), [BillingCountry] NVARCHAR(40), [BillingPostalCode] NVARCHAR(10), [Total] NUMERIC(10,2) NOT NULL, CONSTRAINT [PK_Invoice] PRIMARY KEY CLUSTERED ([InvoiceId]) ); GO CREATE TABLE [dbo].[InvoiceLine] ( [InvoiceLineId] INT NOT NULL, [InvoiceId] INT NOT NULL, [TrackId] INT NOT NULL, [UnitPrice] NUMERIC(10,2) NOT NULL, [Quantity] INT NOT NULL, CONSTRAINT [PK_InvoiceLine] PRIMARY KEY CLUSTERED ([InvoiceLineId]) ); GO CREATE TABLE [dbo].[MediaType] ( [MediaTypeId] INT NOT NULL, [Name] NVARCHAR(120), CONSTRAINT [PK_MediaType] PRIMARY KEY CLUSTERED ([MediaTypeId]) ); GO CREATE TABLE [dbo].[Playlist] ( [PlaylistId] INT NOT NULL, [Name] NVARCHAR(120), CONSTRAINT [PK_Playlist] PRIMARY KEY CLUSTERED ([PlaylistId]) ); GO CREATE TABLE [dbo].[PlaylistTrack] ( [PlaylistId] INT NOT NULL, [TrackId] INT NOT NULL, CONSTRAINT [PK_PlaylistTrack] PRIMARY KEY NONCLUSTERED ([PlaylistId], [TrackId]) ); GO CREATE TABLE [dbo].[Track] ( [TrackId] INT NOT NULL, [Name] NVARCHAR(200) NOT NULL, [AlbumId] INT, [MediaTypeId] INT NOT NULL, [GenreId] INT, [Composer] NVARCHAR(220), [Milliseconds] INT NOT NULL, [Bytes] INT, [UnitPrice] NUMERIC(10,2) NOT NULL, CONSTRAINT [PK_Track] PRIMARY KEY CLUSTERED ([TrackId]) ); GO /******************************************************************************* Create Primary Key Unique Indexes ********************************************************************************/ /******************************************************************************* Create Foreign Keys ********************************************************************************/ ALTER TABLE [dbo].[Album] ADD CONSTRAINT [FK_AlbumArtistId] FOREIGN KEY ([ArtistId]) REFERENCES [dbo].[Artist] ([ArtistId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_AlbumArtistId] ON [dbo].[Album] ([ArtistId]); GO ALTER TABLE [dbo].[Customer] ADD CONSTRAINT [FK_CustomerSupportRepId] FOREIGN KEY ([SupportRepId]) REFERENCES [dbo].[Employee] ([EmployeeId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_CustomerSupportRepId] ON [dbo].[Customer] ([SupportRepId]); GO ALTER TABLE [dbo].[Employee] ADD CONSTRAINT [FK_EmployeeReportsTo] FOREIGN KEY ([ReportsTo]) REFERENCES [dbo].[Employee] ([EmployeeId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_EmployeeReportsTo] ON [dbo].[Employee] ([ReportsTo]); GO ALTER TABLE [dbo].[Invoice] ADD CONSTRAINT [FK_InvoiceCustomerId] FOREIGN KEY ([CustomerId]) REFERENCES [dbo].[Customer] ([CustomerId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_InvoiceCustomerId] ON [dbo].[Invoice] ([CustomerId]); GO ALTER TABLE [dbo].[InvoiceLine] ADD CONSTRAINT [FK_InvoiceLineInvoiceId] FOREIGN KEY ([InvoiceId]) REFERENCES [dbo].[Invoice] ([InvoiceId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_InvoiceLineInvoiceId] ON [dbo].[InvoiceLine] ([InvoiceId]); GO ALTER TABLE [dbo].[InvoiceLine] ADD CONSTRAINT [FK_InvoiceLineTrackId] FOREIGN KEY ([TrackId]) REFERENCES [dbo].[Track] ([TrackId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_InvoiceLineTrackId] ON [dbo].[InvoiceLine] ([TrackId]); GO ALTER TABLE [dbo].[PlaylistTrack] ADD CONSTRAINT [FK_PlaylistTrackPlaylistId] FOREIGN KEY ([PlaylistId]) REFERENCES [dbo].[Playlist] ([PlaylistId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO ALTER TABLE [dbo].[PlaylistTrack] ADD CONSTRAINT [FK_PlaylistTrackTrackId] FOREIGN KEY ([TrackId]) REFERENCES [dbo].[Track] ([TrackId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_PlaylistTrackTrackId] ON [dbo].[PlaylistTrack] ([TrackId]); GO ALTER TABLE [dbo].[Track] ADD CONSTRAINT [FK_TrackAlbumId] FOREIGN KEY ([AlbumId]) REFERENCES [dbo].[Album] ([AlbumId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_TrackAlbumId] ON [dbo].[Track] ([AlbumId]); GO ALTER TABLE [dbo].[Track] ADD CONSTRAINT [FK_TrackGenreId] FOREIGN KEY ([GenreId]) REFERENCES [dbo].[Genre] ([GenreId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_TrackGenreId] ON [dbo].[Track] ([GenreId]); GO ALTER TABLE [dbo].[Track] ADD CONSTRAINT [FK_TrackMediaTypeId] FOREIGN KEY ([MediaTypeId]) REFERENCES [dbo].[MediaType] ([MediaTypeId]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO CREATE INDEX [IFK_TrackMediaTypeId] ON [dbo].[Track] ([MediaTypeId]); GO /******************************************************************************* Populate Tables ********************************************************************************/ INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (1, N'Rock'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (2, N'Jazz'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (3, N'Metal'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (4, N'Alternative & Punk'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (5, N'Rock And Roll'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (6, N'Blues'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (7, N'Latin'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (8, N'Reggae'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (9, N'Pop'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (10, N'Soundtrack'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (11, N'Bossa Nova'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (12, N'Easy Listening'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (13, N'Heavy Metal'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (14, N'R&B/Soul'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (15, N'Electronica/Dance'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (16, N'World'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (17, N'Hip Hop/Rap'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (18, N'Science Fiction'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (19, N'TV Shows'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (20, N'Sci Fi & Fantasy'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (21, N'Drama'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (22, N'Comedy'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (23, N'Alternative'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (24, N'Classical'); INSERT INTO [dbo].[Genre] ([GenreId], [Name]) VALUES (25, N'Opera'); INSERT INTO [dbo].[MediaType] ([MediaTypeId], [Name]) VALUES (1, N'MPEG audio file'); INSERT INTO [dbo].[MediaType] ([MediaTypeId], [Name]) VALUES (2, N'Protected AAC audio file'); INSERT INTO [dbo].[MediaType] ([MediaTypeId], [Name]) VALUES (3, N'Protected MPEG-4 video file'); INSERT INTO [dbo].[MediaType] ([MediaTypeId], [Name]) VALUES (4, N'Purchased AAC audio file'); INSERT INTO [dbo].[MediaType] ([MediaTypeId], [Name]) VALUES (5, N'AAC audio file'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (1, N'AC/DC'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (2, N'Accept'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (3, N'Aerosmith'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (4, N'Alanis Morissette'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (5, N'Alice In Chains'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (6, N'Antônio Carlos Jobim'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (7, N'Apocalyptica'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (8, N'Audioslave'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (9, N'BackBeat'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (10, N'Billy Cobham'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (11, N'Black Label Society'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (12, N'Black Sabbath'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (13, N'Body Count'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (14, N'Bruce Dickinson'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (15, N'Buddy Guy'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (16, N'Caetano Veloso'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (17, N'Chico Buarque'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (18, N'Chico Science & Nação Zumbi'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (19, N'Cidade Negra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (20, N'Cláudio Zoli'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (21, N'Various Artists'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (22, N'Led Zeppelin'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (23, N'Frank Zappa & Captain Beefheart'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (24, N'Marcos Valle'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (25, N'Milton Nascimento & Bebeto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (26, N'Azymuth'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (27, N'Gilberto Gil'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (28, N'João Gilberto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (29, N'Bebel Gilberto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (30, N'Jorge Vercilo'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (31, N'Baby Consuelo'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (32, N'Ney Matogrosso'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (33, N'Luiz Melodia'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (34, N'Nando Reis'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (35, N'Pedro Luís & A Parede'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (36, N'O Rappa'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (37, N'Ed Motta'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (38, N'Banda Black Rio'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (39, N'Fernanda Porto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (40, N'Os Cariocas'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (41, N'Elis Regina'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (42, N'Milton Nascimento'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (43, N'A Cor Do Som'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (44, N'Kid Abelha'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (45, N'Sandra De Sá'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (46, N'Jorge Ben'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (47, N'Hermeto Pascoal'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (48, N'Barão Vermelho'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (49, N'Edson, DJ Marky & DJ Patife Featuring Fernanda Porto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (50, N'Metallica'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (51, N'Queen'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (52, N'Kiss'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (53, N'Spyro Gyra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (54, N'Green Day'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (55, N'David Coverdale'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (56, N'Gonzaguinha'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (57, N'Os Mutantes'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (58, N'Deep Purple'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (59, N'Santana'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (60, N'Santana Feat. Dave Matthews'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (61, N'Santana Feat. Everlast'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (62, N'Santana Feat. Rob Thomas'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (63, N'Santana Feat. Lauryn Hill & Cee-Lo'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (64, N'Santana Feat. The Project G&B'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (65, N'Santana Feat. Maná'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (66, N'Santana Feat. Eagle-Eye Cherry'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (67, N'Santana Feat. Eric Clapton'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (68, N'Miles Davis'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (69, N'Gene Krupa'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (70, N'Toquinho & Vinícius'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (71, N'Vinícius De Moraes & Baden Powell'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (72, N'Vinícius De Moraes'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (73, N'Vinícius E Qurteto Em Cy'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (74, N'Vinícius E Odette Lara'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (75, N'Vinicius, Toquinho & Quarteto Em Cy'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (76, N'Creedence Clearwater Revival'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (77, N'Cássia Eller'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (78, N'Def Leppard'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (79, N'Dennis Chambers'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (80, N'Djavan'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (81, N'Eric Clapton'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (82, N'Faith No More'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (83, N'Falamansa'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (84, N'Foo Fighters'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (85, N'Frank Sinatra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (86, N'Funk Como Le Gusta'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (87, N'Godsmack'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (88, N'Guns N'' Roses'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (89, N'Incognito'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (90, N'Iron Maiden'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (91, N'James Brown'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (92, N'Jamiroquai'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (93, N'JET'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (94, N'Jimi Hendrix'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (95, N'Joe Satriani'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (96, N'Jota Quest'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (97, N'João Suplicy'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (98, N'Judas Priest'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (99, N'Legião Urbana'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (100, N'Lenny Kravitz'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (101, N'Lulu Santos'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (102, N'Marillion'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (103, N'Marisa Monte'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (104, N'Marvin Gaye'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (105, N'Men At Work'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (106, N'Motörhead'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (107, N'Motörhead & Girlschool'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (108, N'Mônica Marianno'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (109, N'Mötley Crüe'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (110, N'Nirvana'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (111, N'O Terço'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (112, N'Olodum'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (113, N'Os Paralamas Do Sucesso'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (114, N'Ozzy Osbourne'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (115, N'Page & Plant'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (116, N'Passengers'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (117, N'Paul D''Ianno'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (118, N'Pearl Jam'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (119, N'Peter Tosh'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (120, N'Pink Floyd'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (121, N'Planet Hemp'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (122, N'R.E.M. Feat. Kate Pearson'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (123, N'R.E.M. Feat. KRS-One'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (124, N'R.E.M.'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (125, N'Raimundos'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (126, N'Raul Seixas'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (127, N'Red Hot Chili Peppers'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (128, N'Rush'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (129, N'Simply Red'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (130, N'Skank'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (131, N'Smashing Pumpkins'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (132, N'Soundgarden'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (133, N'Stevie Ray Vaughan & Double Trouble'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (134, N'Stone Temple Pilots'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (135, N'System Of A Down'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (136, N'Terry Bozzio, Tony Levin & Steve Stevens'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (137, N'The Black Crowes'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (138, N'The Clash'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (139, N'The Cult'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (140, N'The Doors'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (141, N'The Police'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (142, N'The Rolling Stones'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (143, N'The Tea Party'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (144, N'The Who'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (145, N'Tim Maia'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (146, N'Titãs'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (147, N'Battlestar Galactica'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (148, N'Heroes'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (149, N'Lost'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (150, N'U2'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (151, N'UB40'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (152, N'Van Halen'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (153, N'Velvet Revolver'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (154, N'Whitesnake'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (155, N'Zeca Pagodinho'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (156, N'The Office'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (157, N'Dread Zeppelin'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (158, N'Battlestar Galactica (Classic)'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (159, N'Aquaman'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (160, N'Christina Aguilera featuring BigElf'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (161, N'Aerosmith & Sierra Leone''s Refugee Allstars'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (162, N'Los Lonely Boys'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (163, N'Corinne Bailey Rae'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (164, N'Dhani Harrison & Jakob Dylan'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (165, N'Jackson Browne'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (166, N'Avril Lavigne'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (167, N'Big & Rich'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (168, N'Youssou N''Dour'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (169, N'Black Eyed Peas'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (170, N'Jack Johnson'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (171, N'Ben Harper'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (172, N'Snow Patrol'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (173, N'Matisyahu'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (174, N'The Postal Service'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (175, N'Jaguares'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (176, N'The Flaming Lips'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (177, N'Jack''s Mannequin & Mick Fleetwood'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (178, N'Regina Spektor'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (179, N'Scorpions'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (180, N'House Of Pain'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (181, N'Xis'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (182, N'Nega Gizza'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (183, N'Gustavo & Andres Veiga & Salazar'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (184, N'Rodox'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (185, N'Charlie Brown Jr.'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (186, N'Pedro Luís E A Parede'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (187, N'Los Hermanos'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (188, N'Mundo Livre S/A'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (189, N'Otto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (190, N'Instituto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (191, N'Nação Zumbi'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (192, N'DJ Dolores & Orchestra Santa Massa'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (193, N'Seu Jorge'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (194, N'Sabotage E Instituto'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (195, N'Stereo Maracana'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (196, N'Cake'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (197, N'Aisha Duo'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (198, N'Habib Koité and Bamada'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (199, N'Karsh Kale'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (200, N'The Posies'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (201, N'Luciana Souza/Romero Lubambo'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (202, N'Aaron Goldberg'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (203, N'Nicolaus Esterhazy Sinfonia'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (204, N'Temple of the Dog'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (205, N'Chris Cornell'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (206, N'Alberto Turco & Nova Schola Gregoriana'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (207, N'Richard Marlow & The Choir of Trinity College, Cambridge'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (208, N'English Concert & Trevor Pinnock'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (209, N'Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (210, N'Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (211, N'Wilhelm Kempff'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (212, N'Yo-Yo Ma'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (213, N'Scholars Baroque Ensemble'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (214, N'Academy of St. Martin in the Fields & Sir Neville Marriner'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (215, N'Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (216, N'Berliner Philharmoniker, Claudio Abbado & Sabine Meyer'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (217, N'Royal Philharmonic Orchestra & Sir Thomas Beecham'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (218, N'Orchestre Révolutionnaire et Romantique & John Eliot Gardiner'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (219, N'Britten Sinfonia, Ivor Bolton & Lesley Garrett'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (220, N'Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (221, N'Sir Georg Solti & Wiener Philharmoniker'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (222, N'Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (223, N'London Symphony Orchestra & Sir Charles Mackerras'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (224, N'Barry Wordsworth & BBC Concert Orchestra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (225, N'Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (226, N'Eugene Ormandy'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (227, N'Luciano Pavarotti'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (228, N'Leonard Bernstein & New York Philharmonic'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (229, N'Boston Symphony Orchestra & Seiji Ozawa'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (230, N'Aaron Copland & London Symphony Orchestra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (231, N'Ton Koopman'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (232, N'Sergei Prokofiev & Yuri Temirkanov'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (233, N'Chicago Symphony Orchestra & Fritz Reiner'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (234, N'Orchestra of The Age of Enlightenment'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (235, N'Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (236, N'James Levine'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (237, N'Berliner Philharmoniker & Hans Rosbaud'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (238, N'Maurizio Pollini'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (239, N'Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (240, N'Gustav Mahler'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (241, N'Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (242, N'Edo de Waart & San Francisco Symphony'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (243, N'Antal Doráti & London Symphony Orchestra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (244, N'Choir Of Westminster Abbey & Simon Preston'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (245, N'Michael Tilson Thomas & San Francisco Symphony'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (246, N'Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (247, N'The King''s Singers'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (248, N'Berliner Philharmoniker & Herbert Von Karajan'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (249, N'Sir Georg Solti, Sumi Jo & Wiener Philharmoniker'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (250, N'Christopher O''Riley'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (251, N'Fretwork'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (252, N'Amy Winehouse'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (253, N'Calexico'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (254, N'Otto Klemperer & Philharmonia Orchestra'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (255, N'Yehudi Menuhin'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (256, N'Philharmonia Orchestra & Sir Neville Marriner'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (257, N'Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (258, N'Les Arts Florissants & William Christie'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (259, N'The 12 Cellists of The Berlin Philharmonic'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (260, N'Adrian Leaper & Doreen de Feis'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (261, N'Roger Norrington, London Classical Players'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (262, N'Charles Dutoit & L''Orchestre Symphonique de Montréal'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (263, N'Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (264, N'Kent Nagano and Orchestre de l''Opéra de Lyon'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (265, N'Julian Bream'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (266, N'Martin Roscoe'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (267, N'Göteborgs Symfoniker & Neeme Järvi'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (268, N'Itzhak Perlman'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (269, N'Michele Campanella'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (270, N'Gerald Moore'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (271, N'Mela Tenenbaum, Pro Musica Prague & Richard Kapp'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (272, N'Emerson String Quartet'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (273, N'C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (274, N'Nash Ensemble'); INSERT INTO [dbo].[Artist] ([ArtistId], [Name]) VALUES (275, N'Philip Glass Ensemble'); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (1, N'For Those About To Rock We Salute You', 1); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (2, N'Balls to the Wall', 2); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (3, N'Restless and Wild', 2); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (4, N'Let There Be Rock', 1); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (5, N'Big Ones', 3); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (6, N'Jagged Little Pill', 4); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (7, N'Facelift', 5); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (8, N'Warner 25 Anos', 6); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (9, N'Plays Metallica By Four Cellos', 7); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (10, N'Audioslave', 8); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (11, N'Out Of Exile', 8); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (12, N'BackBeat Soundtrack', 9); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (13, N'The Best Of Billy Cobham', 10); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (14, N'Alcohol Fueled Brewtality Live! [Disc 1]', 11); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (15, N'Alcohol Fueled Brewtality Live! [Disc 2]', 11); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (16, N'Black Sabbath', 12); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (17, N'Black Sabbath Vol. 4 (Remaster)', 12); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (18, N'Body Count', 13); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (19, N'Chemical Wedding', 14); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (20, N'The Best Of Buddy Guy - The Millenium Collection', 15); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (21, N'Prenda Minha', 16); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (22, N'Sozinho Remix Ao Vivo', 16); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (23, N'Minha Historia', 17); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (24, N'Afrociberdelia', 18); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (25, N'Da Lama Ao Caos', 18); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (26, N'Acústico MTV [Live]', 19); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (27, N'Cidade Negra - Hits', 19); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (28, N'Na Pista', 20); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (29, N'Axé Bahia 2001', 21); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (30, N'BBC Sessions [Disc 1] [Live]', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (31, N'Bongo Fury', 23); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (32, N'Carnaval 2001', 21); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (33, N'Chill: Brazil (Disc 1)', 24); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (34, N'Chill: Brazil (Disc 2)', 6); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (35, N'Garage Inc. (Disc 1)', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (36, N'Greatest Hits II', 51); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (37, N'Greatest Kiss', 52); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (38, N'Heart of the Night', 53); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (39, N'International Superhits', 54); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (40, N'Into The Light', 55); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (41, N'Meus Momentos', 56); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (42, N'Minha História', 57); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (43, N'MK III The Final Concerts [Disc 1]', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (44, N'Physical Graffiti [Disc 1]', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (45, N'Sambas De Enredo 2001', 21); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (46, N'Supernatural', 59); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (47, N'The Best of Ed Motta', 37); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (48, N'The Essential Miles Davis [Disc 1]', 68); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (49, N'The Essential Miles Davis [Disc 2]', 68); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (50, N'The Final Concerts (Disc 2)', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (51, N'Up An'' Atom', 69); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (52, N'Vinícius De Moraes - Sem Limite', 70); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (53, N'Vozes do MPB', 21); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (54, N'Chronicle, Vol. 1', 76); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (55, N'Chronicle, Vol. 2', 76); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (56, N'Cássia Eller - Coleção Sem Limite [Disc 2]', 77); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (57, N'Cássia Eller - Sem Limite [Disc 1]', 77); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (58, N'Come Taste The Band', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (59, N'Deep Purple In Rock', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (60, N'Fireball', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (61, N'Knocking at Your Back Door: The Best Of Deep Purple in the 80''s', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (62, N'Machine Head', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (63, N'Purpendicular', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (64, N'Slaves And Masters', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (65, N'Stormbringer', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (66, N'The Battle Rages On', 58); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (67, N'Vault: Def Leppard''s Greatest Hits', 78); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (68, N'Outbreak', 79); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (69, N'Djavan Ao Vivo - Vol. 02', 80); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (70, N'Djavan Ao Vivo - Vol. 1', 80); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (71, N'Elis Regina-Minha História', 41); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (72, N'The Cream Of Clapton', 81); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (73, N'Unplugged', 81); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (74, N'Album Of The Year', 82); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (75, N'Angel Dust', 82); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (76, N'King For A Day Fool For A Lifetime', 82); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (77, N'The Real Thing', 82); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (78, N'Deixa Entrar', 83); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (79, N'In Your Honor [Disc 1]', 84); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (80, N'In Your Honor [Disc 2]', 84); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (81, N'One By One', 84); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (82, N'The Colour And The Shape', 84); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (83, N'My Way: The Best Of Frank Sinatra [Disc 1]', 85); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (84, N'Roda De Funk', 86); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (85, N'As Canções de Eu Tu Eles', 27); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (86, N'Quanta Gente Veio Ver (Live)', 27); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (87, N'Quanta Gente Veio ver--Bônus De Carnaval', 27); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (88, N'Faceless', 87); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (89, N'American Idiot', 54); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (90, N'Appetite for Destruction', 88); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (91, N'Use Your Illusion I', 88); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (92, N'Use Your Illusion II', 88); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (93, N'Blue Moods', 89); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (94, N'A Matter of Life and Death', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (95, N'A Real Dead One', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (96, N'A Real Live One', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (97, N'Brave New World', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (98, N'Dance Of Death', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (99, N'Fear Of The Dark', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (100, N'Iron Maiden', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (101, N'Killers', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (102, N'Live After Death', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (103, N'Live At Donington 1992 (Disc 1)', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (104, N'Live At Donington 1992 (Disc 2)', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (105, N'No Prayer For The Dying', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (106, N'Piece Of Mind', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (107, N'Powerslave', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (108, N'Rock In Rio [CD1]', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (109, N'Rock In Rio [CD2]', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (110, N'Seventh Son of a Seventh Son', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (111, N'Somewhere in Time', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (112, N'The Number of The Beast', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (113, N'The X Factor', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (114, N'Virtual XI', 90); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (115, N'Sex Machine', 91); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (116, N'Emergency On Planet Earth', 92); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (117, N'Synkronized', 92); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (118, N'The Return Of The Space Cowboy', 92); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (119, N'Get Born', 93); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (120, N'Are You Experienced?', 94); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (121, N'Surfing with the Alien (Remastered)', 95); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (122, N'Jorge Ben Jor 25 Anos', 46); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (123, N'Jota Quest-1995', 96); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (124, N'Cafezinho', 97); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (125, N'Living After Midnight', 98); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (126, N'Unplugged [Live]', 52); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (127, N'BBC Sessions [Disc 2] [Live]', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (128, N'Coda', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (129, N'Houses Of The Holy', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (130, N'In Through The Out Door', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (131, N'IV', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (132, N'Led Zeppelin I', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (133, N'Led Zeppelin II', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (134, N'Led Zeppelin III', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (135, N'Physical Graffiti [Disc 2]', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (136, N'Presence', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (137, N'The Song Remains The Same (Disc 1)', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (138, N'The Song Remains The Same (Disc 2)', 22); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (139, N'A TempestadeTempestade Ou O Livro Dos Dias', 99); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (140, N'Mais Do Mesmo', 99); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (141, N'Greatest Hits', 100); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (142, N'Lulu Santos - RCA 100 Anos De Música - Álbum 01', 101); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (143, N'Lulu Santos - RCA 100 Anos De Música - Álbum 02', 101); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (144, N'Misplaced Childhood', 102); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (145, N'Barulhinho Bom', 103); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (146, N'Seek And Shall Find: More Of The Best (1963-1981)', 104); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (147, N'The Best Of Men At Work', 105); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (148, N'Black Album', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (149, N'Garage Inc. (Disc 2)', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (150, N'Kill ''Em All', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (151, N'Load', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (152, N'Master Of Puppets', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (153, N'ReLoad', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (154, N'Ride The Lightning', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (155, N'St. Anger', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (156, N'...And Justice For All', 50); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (157, N'Miles Ahead', 68); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (158, N'Milton Nascimento Ao Vivo', 42); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (159, N'Minas', 42); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (160, N'Ace Of Spades', 106); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (161, N'Demorou...', 108); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (162, N'Motley Crue Greatest Hits', 109); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (163, N'From The Muddy Banks Of The Wishkah [Live]', 110); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (164, N'Nevermind', 110); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (165, N'Compositores', 111); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (166, N'Olodum', 112); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (167, N'Acústico MTV', 113); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (168, N'Arquivo II', 113); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (169, N'Arquivo Os Paralamas Do Sucesso', 113); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (170, N'Bark at the Moon (Remastered)', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (171, N'Blizzard of Ozz', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (172, N'Diary of a Madman (Remastered)', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (173, N'No More Tears (Remastered)', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (174, N'Tribute', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (175, N'Walking Into Clarksdale', 115); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (176, N'Original Soundtracks 1', 116); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (177, N'The Beast Live', 117); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (178, N'Live On Two Legs [Live]', 118); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (179, N'Pearl Jam', 118); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (180, N'Riot Act', 118); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (181, N'Ten', 118); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (182, N'Vs.', 118); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (183, N'Dark Side Of The Moon', 120); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (184, N'Os Cães Ladram Mas A Caravana Não Pára', 121); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (185, N'Greatest Hits I', 51); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (186, N'News Of The World', 51); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (187, N'Out Of Time', 122); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (188, N'Green', 124); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (189, N'New Adventures In Hi-Fi', 124); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (190, N'The Best Of R.E.M.: The IRS Years', 124); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (191, N'Cesta Básica', 125); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (192, N'Raul Seixas', 126); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (193, N'Blood Sugar Sex Magik', 127); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (194, N'By The Way', 127); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (195, N'Californication', 127); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (196, N'Retrospective I (1974-1980)', 128); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (197, N'Santana - As Years Go By', 59); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (198, N'Santana Live', 59); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (199, N'Maquinarama', 130); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (200, N'O Samba Poconé', 130); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (201, N'Judas 0: B-Sides and Rarities', 131); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (202, N'Rotten Apples: Greatest Hits', 131); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (203, N'A-Sides', 132); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (204, N'Morning Dance', 53); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (205, N'In Step', 133); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (206, N'Core', 134); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (207, N'Mezmerize', 135); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (208, N'[1997] Black Light Syndrome', 136); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (209, N'Live [Disc 1]', 137); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (210, N'Live [Disc 2]', 137); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (211, N'The Singles', 138); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (212, N'Beyond Good And Evil', 139); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (213, N'Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]', 139); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (214, N'The Doors', 140); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (215, N'The Police Greatest Hits', 141); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (216, N'Hot Rocks, 1964-1971 (Disc 1)', 142); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (217, N'No Security', 142); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (218, N'Voodoo Lounge', 142); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (219, N'Tangents', 143); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (220, N'Transmission', 143); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (221, N'My Generation - The Very Best Of The Who', 144); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (222, N'Serie Sem Limite (Disc 1)', 145); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (223, N'Serie Sem Limite (Disc 2)', 145); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (224, N'Acústico', 146); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (225, N'Volume Dois', 146); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (226, N'Battlestar Galactica: The Story So Far', 147); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (227, N'Battlestar Galactica, Season 3', 147); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (228, N'Heroes, Season 1', 148); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (229, N'Lost, Season 3', 149); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (230, N'Lost, Season 1', 149); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (231, N'Lost, Season 2', 149); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (232, N'Achtung Baby', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (233, N'All That You Can''t Leave Behind', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (234, N'B-Sides 1980-1990', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (235, N'How To Dismantle An Atomic Bomb', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (236, N'Pop', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (237, N'Rattle And Hum', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (238, N'The Best Of 1980-1990', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (239, N'War', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (240, N'Zooropa', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (241, N'UB40 The Best Of - Volume Two [UK]', 151); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (242, N'Diver Down', 152); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (243, N'The Best Of Van Halen, Vol. I', 152); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (244, N'Van Halen', 152); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (245, N'Van Halen III', 152); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (246, N'Contraband', 153); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (247, N'Vinicius De Moraes', 72); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (248, N'Ao Vivo [IMPORT]', 155); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (249, N'The Office, Season 1', 156); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (250, N'The Office, Season 2', 156); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (251, N'The Office, Season 3', 156); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (252, N'Un-Led-Ed', 157); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (253, N'Battlestar Galactica (Classic), Season 1', 158); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (254, N'Aquaman', 159); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (255, N'Instant Karma: The Amnesty International Campaign to Save Darfur', 150); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (256, N'Speak of the Devil', 114); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (257, N'20th Century Masters - The Millennium Collection: The Best of Scorpions', 179); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (258, N'House of Pain', 180); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (259, N'Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro', 36); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (260, N'Cake: B-Sides and Rarities', 196); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (261, N'LOST, Season 4', 149); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (262, N'Quiet Songs', 197); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (263, N'Muso Ko', 198); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (264, N'Realize', 199); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (265, N'Every Kind of Light', 200); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (266, N'Duos II', 201); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (267, N'Worlds', 202); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (268, N'The Best of Beethoven', 203); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (269, N'Temple of the Dog', 204); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (270, N'Carry On', 205); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (271, N'Revelations', 8); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (272, N'Adorate Deum: Gregorian Chant from the Proper of the Mass', 206); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (273, N'Allegri: Miserere', 207); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (274, N'Pachelbel: Canon & Gigue', 208); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (275, N'Vivaldi: The Four Seasons', 209); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (276, N'Bach: Violin Concertos', 210); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (277, N'Bach: Goldberg Variations', 211); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (278, N'Bach: The Cello Suites', 212); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (279, N'Handel: The Messiah (Highlights)', 213); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (280, N'The World of Classical Favourites', 214); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (281, N'Sir Neville Marriner: A Celebration', 215); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (282, N'Mozart: Wind Concertos', 216); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (283, N'Haydn: Symphonies 99 - 104', 217); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (284, N'Beethoven: Symhonies Nos. 5 & 6', 218); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (285, N'A Soprano Inspired', 219); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (286, N'Great Opera Choruses', 220); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (287, N'Wagner: Favourite Overtures', 221); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (288, N'Fauré: Requiem, Ravel: Pavane & Others', 222); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (289, N'Tchaikovsky: The Nutcracker', 223); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (290, N'The Last Night of the Proms', 224); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (291, N'Puccini: Madama Butterfly - Highlights', 225); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (292, N'Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 226); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (293, N'Pavarotti''s Opera Made Easy', 227); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (294, N'Great Performances - Barber''s Adagio and Other Romantic Favorites for Strings', 228); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (295, N'Carmina Burana', 229); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (296, N'A Copland Celebration, Vol. I', 230); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (297, N'Bach: Toccata & Fugue in D Minor', 231); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (298, N'Prokofiev: Symphony No.1', 232); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (299, N'Scheherazade', 233); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (300, N'Bach: The Brandenburg Concertos', 234); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (301, N'Chopin: Piano Concertos Nos. 1 & 2', 235); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (302, N'Mascagni: Cavalleria Rusticana', 236); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (303, N'Sibelius: Finlandia', 237); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (304, N'Beethoven Piano Sonatas: Moonlight & Pastorale', 238); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (305, N'Great Recordings of the Century - Mahler: Das Lied von der Erde', 240); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (306, N'Elgar: Cello Concerto & Vaughan Williams: Fantasias', 241); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (307, N'Adams, John: The Chairman Dances', 242); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (308, N'Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington''s Victory', 243); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (309, N'Palestrina: Missa Papae Marcelli & Allegri: Miserere', 244); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (310, N'Prokofiev: Romeo & Juliet', 245); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (311, N'Strauss: Waltzes', 226); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (312, N'Berlioz: Symphonie Fantastique', 245); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (313, N'Bizet: Carmen Highlights', 246); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (314, N'English Renaissance', 247); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (315, N'Handel: Music for the Royal Fireworks (Original Version 1749)', 208); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (316, N'Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande', 248); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (317, N'Mozart Gala: Famous Arias', 249); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (318, N'SCRIABIN: Vers la flamme', 250); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (319, N'Armada: Music from the Courts of England and Spain', 251); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (320, N'Mozart: Symphonies Nos. 40 & 41', 248); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (321, N'Back to Black', 252); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (322, N'Frank', 252); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (323, N'Carried to Dust (Bonus Track Version)', 253); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (324, N'Beethoven: Symphony No. 6 ''Pastoral'' Etc.', 254); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (325, N'Bartok: Violin & Viola Concertos', 255); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (326, N'Mendelssohn: A Midsummer Night''s Dream', 256); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (327, N'Bach: Orchestral Suites Nos. 1 - 4', 257); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (328, N'Charpentier: Divertissements, Airs & Concerts', 258); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (329, N'South American Getaway', 259); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (330, N'Górecki: Symphony No. 3', 260); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (331, N'Purcell: The Fairy Queen', 261); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (332, N'The Ultimate Relexation Album', 262); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (333, N'Purcell: Music for the Queen Mary', 263); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (334, N'Weill: The Seven Deadly Sins', 264); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (335, N'J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro', 265); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (336, N'Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 248); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (337, N'Szymanowski: Piano Works, Vol. 1', 266); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (338, N'Nielsen: The Six Symphonies', 267); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (339, N'Great Recordings of the Century: Paganini''s 24 Caprices', 268); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (340, N'Liszt - 12 Études D''Execution Transcendante', 269); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (341, N'Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder', 270); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (342, N'Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 271); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (343, N'Respighi:Pines of Rome', 226); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (344, N'Schubert: The Late String Quartets & String Quintet (3 CD''s)', 272); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (345, N'Monteverdi: L''Orfeo', 273); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (346, N'Mozart: Chamber Music', 274); INSERT INTO [dbo].[Album] ([AlbumId], [Title], [ArtistId]) VALUES (347, N'Koyaanisqatsi (Soundtrack from the Motion Picture)', 275); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1, N'For Those About To Rock (We Salute You)', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 343719, 11170334, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2, N'Balls to the Wall', 2, 2, 1, 342562, 5510424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3, N'Fast As a Shark', 3, 2, 1, N'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman', 230619, 3990994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (4, N'Restless and Wild', 3, 2, 1, N'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman', 252051, 4331779, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (5, N'Princess of the Dawn', 3, 2, 1, N'Deaffy & R.A. Smith-Diesel', 375418, 6290521, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (6, N'Put The Finger On You', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 205662, 6713451, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (7, N'Let''s Get It Up', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 233926, 7636561, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (8, N'Inject The Venom', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 210834, 6852860, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (9, N'Snowballed', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 203102, 6599424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (10, N'Evil Walks', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 263497, 8611245, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (11, N'C.O.D.', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 199836, 6566314, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (12, N'Breaking The Rules', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 263288, 8596840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (13, N'Night Of The Long Knives', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 205688, 6706347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (14, N'Spellbound', 1, 1, 1, N'Angus Young, Malcolm Young, Brian Johnson', 270863, 8817038, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (15, N'Go Down', 4, 1, 1, N'AC/DC', 331180, 10847611, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (16, N'Dog Eat Dog', 4, 1, 1, N'AC/DC', 215196, 7032162, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (17, N'Let There Be Rock', 4, 1, 1, N'AC/DC', 366654, 12021261, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (18, N'Bad Boy Boogie', 4, 1, 1, N'AC/DC', 267728, 8776140, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (19, N'Problem Child', 4, 1, 1, N'AC/DC', 325041, 10617116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (20, N'Overdose', 4, 1, 1, N'AC/DC', 369319, 12066294, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (21, N'Hell Ain''t A Bad Place To Be', 4, 1, 1, N'AC/DC', 254380, 8331286, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (22, N'Whole Lotta Rosie', 4, 1, 1, N'AC/DC', 323761, 10547154, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (23, N'Walk On Water', 5, 1, 1, N'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw', 295680, 9719579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (24, N'Love In An Elevator', 5, 1, 1, N'Steven Tyler, Joe Perry', 321828, 10552051, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (25, N'Rag Doll', 5, 1, 1, N'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight', 264698, 8675345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (26, N'What It Takes', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 310622, 10144730, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (27, N'Dude (Looks Like A Lady)', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 264855, 8679940, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (28, N'Janie''s Got A Gun', 5, 1, 1, N'Steven Tyler, Tom Hamilton', 330736, 10869391, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (29, N'Cryin''', 5, 1, 1, N'Steven Tyler, Joe Perry, Taylor Rhodes', 309263, 10056995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (30, N'Amazing', 5, 1, 1, N'Steven Tyler, Richie Supa', 356519, 11616195, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (31, N'Blind Man', 5, 1, 1, N'Steven Tyler, Joe Perry, Taylor Rhodes', 240718, 7877453, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (32, N'Deuces Are Wild', 5, 1, 1, N'Steven Tyler, Jim Vallance', 215875, 7074167, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (33, N'The Other Side', 5, 1, 1, N'Steven Tyler, Jim Vallance', 244375, 7983270, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (34, N'Crazy', 5, 1, 1, N'Steven Tyler, Joe Perry, Desmond Child', 316656, 10402398, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (35, N'Eat The Rich', 5, 1, 1, N'Steven Tyler, Joe Perry, Jim Vallance', 251036, 8262039, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (36, N'Angel', 5, 1, 1, N'Steven Tyler, Desmond Child', 307617, 9989331, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (37, N'Livin'' On The Edge', 5, 1, 1, N'Steven Tyler, Joe Perry, Mark Hudson', 381231, 12374569, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (38, N'All I Really Want', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 284891, 9375567, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (39, N'You Oughta Know', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 249234, 8196916, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (40, N'Perfect', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 188133, 6145404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (41, N'Hand In My Pocket', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 221570, 7224246, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (42, N'Right Through You', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 176117, 5793082, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (43, N'Forgiven', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 300355, 9753256, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (44, N'You Learn', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 239699, 7824837, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (45, N'Head Over Feet', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 267493, 8758008, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (46, N'Mary Jane', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 280607, 9163588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (47, N'Ironic', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 229825, 7598866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (48, N'Not The Doctor', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 227631, 7604601, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (49, N'Wake Up', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 293485, 9703359, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (50, N'You Oughta Know (Alternate)', 6, 1, 1, N'Alanis Morissette & Glenn Ballard', 491885, 16008629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (51, N'We Die Young', 7, 1, 1, N'Jerry Cantrell', 152084, 4925362, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (52, N'Man In The Box', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 286641, 9310272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (53, N'Sea Of Sorrow', 7, 1, 1, N'Jerry Cantrell', 349831, 11316328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (54, N'Bleed The Freak', 7, 1, 1, N'Jerry Cantrell', 241946, 7847716, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (55, N'I Can''t Remember', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 222955, 7302550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (56, N'Love, Hate, Love', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 387134, 12575396, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (57, N'It Ain''t Like That', 7, 1, 1, N'Jerry Cantrell, Michael Starr, Sean Kinney', 277577, 8993793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (58, N'Sunshine', 7, 1, 1, N'Jerry Cantrell', 284969, 9216057, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (59, N'Put You Down', 7, 1, 1, N'Jerry Cantrell', 196231, 6420530, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (60, N'Confusion', 7, 1, 1, N'Jerry Cantrell, Michael Starr, Layne Staley', 344163, 11183647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (61, N'I Know Somethin (Bout You)', 7, 1, 1, N'Jerry Cantrell', 261955, 8497788, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (62, N'Real Thing', 7, 1, 1, N'Jerry Cantrell, Layne Staley', 243879, 7937731, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (63, N'Desafinado', 8, 1, 2, 185338, 5990473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (64, N'Garota De Ipanema', 8, 1, 2, 285048, 9348428, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (65, N'Samba De Uma Nota Só (One Note Samba)', 8, 1, 2, 137273, 4535401, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (66, N'Por Causa De Você', 8, 1, 2, 169900, 5536496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (67, N'Ligia', 8, 1, 2, 251977, 8226934, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (68, N'Fotografia', 8, 1, 2, 129227, 4198774, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (69, N'Dindi (Dindi)', 8, 1, 2, 253178, 8149148, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (70, N'Se Todos Fossem Iguais A Você (Instrumental)', 8, 1, 2, 134948, 4393377, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (71, N'Falando De Amor', 8, 1, 2, 219663, 7121735, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (72, N'Angela', 8, 1, 2, 169508, 5574957, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (73, N'Corcovado (Quiet Nights Of Quiet Stars)', 8, 1, 2, 205662, 6687994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (74, N'Outra Vez', 8, 1, 2, 126511, 4110053, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (75, N'O Boto (Bôto)', 8, 1, 2, 366837, 12089673, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (76, N'Canta, Canta Mais', 8, 1, 2, 271856, 8719426, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (77, N'Enter Sandman', 9, 1, 3, N'Apocalyptica', 221701, 7286305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (78, N'Master Of Puppets', 9, 1, 3, N'Apocalyptica', 436453, 14375310, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (79, N'Harvester Of Sorrow', 9, 1, 3, N'Apocalyptica', 374543, 12372536, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (80, N'The Unforgiven', 9, 1, 3, N'Apocalyptica', 322925, 10422447, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (81, N'Sad But True', 9, 1, 3, N'Apocalyptica', 288208, 9405526, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (82, N'Creeping Death', 9, 1, 3, N'Apocalyptica', 308035, 10110980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (83, N'Wherever I May Roam', 9, 1, 3, N'Apocalyptica', 369345, 12033110, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (84, N'Welcome Home (Sanitarium)', 9, 1, 3, N'Apocalyptica', 350197, 11406431, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (85, N'Cochise', 10, 1, 1, N'Audioslave/Chris Cornell', 222380, 5339931, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (86, N'Show Me How to Live', 10, 1, 1, N'Audioslave/Chris Cornell', 277890, 6672176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (87, N'Gasoline', 10, 1, 1, N'Audioslave/Chris Cornell', 279457, 6709793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (88, N'What You Are', 10, 1, 1, N'Audioslave/Chris Cornell', 249391, 5988186, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (89, N'Like a Stone', 10, 1, 1, N'Audioslave/Chris Cornell', 294034, 7059624, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (90, N'Set It Off', 10, 1, 1, N'Audioslave/Chris Cornell', 263262, 6321091, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (91, N'Shadow on the Sun', 10, 1, 1, N'Audioslave/Chris Cornell', 343457, 8245793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (92, N'I am the Highway', 10, 1, 1, N'Audioslave/Chris Cornell', 334942, 8041411, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (93, N'Exploder', 10, 1, 1, N'Audioslave/Chris Cornell', 206053, 4948095, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (94, N'Hypnotize', 10, 1, 1, N'Audioslave/Chris Cornell', 206628, 4961887, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (95, N'Bring''em Back Alive', 10, 1, 1, N'Audioslave/Chris Cornell', 329534, 7911634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (96, N'Light My Way', 10, 1, 1, N'Audioslave/Chris Cornell', 303595, 7289084, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (97, N'Getaway Car', 10, 1, 1, N'Audioslave/Chris Cornell', 299598, 7193162, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (98, N'The Last Remaining Light', 10, 1, 1, N'Audioslave/Chris Cornell', 317492, 7622615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (99, N'Your Time Has Come', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 255529, 8273592, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (100, N'Out Of Exile', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 291291, 9506571, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (101, N'Be Yourself', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 279484, 9106160, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (102, N'Doesn''t Remind Me', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 255869, 8357387, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (103, N'Drown Me Slowly', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 233691, 7609178, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (104, N'Heaven''s Dead', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 276688, 9006158, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (105, N'The Worm', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 237714, 7710800, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (106, N'Man Or Animal', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 233195, 7542942, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (107, N'Yesterday To Tomorrow', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 273763, 8944205, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (108, N'Dandelion', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 278125, 9003592, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (109, N'#1 Zero', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 299102, 9731988, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (110, N'The Curse', 11, 1, 4, N'Cornell, Commerford, Morello, Wilk', 309786, 10029406, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (111, N'Money', 12, 1, 5, N'Berry Gordy, Jr./Janie Bradford', 147591, 2365897, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (112, N'Long Tall Sally', 12, 1, 5, N'Enotris Johnson/Little Richard/Robert "Bumps" Blackwell', 106396, 1707084, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (113, N'Bad Boy', 12, 1, 5, N'Larry Williams', 116088, 1862126, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (114, N'Twist And Shout', 12, 1, 5, N'Bert Russell/Phil Medley', 161123, 2582553, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (115, N'Please Mr. Postman', 12, 1, 5, N'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett', 137639, 2206986, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (116, N'C''Mon Everybody', 12, 1, 5, N'Eddie Cochran/Jerry Capehart', 140199, 2247846, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (117, N'Rock ''N'' Roll Music', 12, 1, 5, N'Chuck Berry', 141923, 2276788, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (118, N'Slow Down', 12, 1, 5, N'Larry Williams', 163265, 2616981, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (119, N'Roadrunner', 12, 1, 5, N'Bo Diddley', 143595, 2301989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (120, N'Carol', 12, 1, 5, N'Chuck Berry', 143830, 2306019, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (121, N'Good Golly Miss Molly', 12, 1, 5, N'Little Richard', 106266, 1704918, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (122, N'20 Flight Rock', 12, 1, 5, N'Ned Fairchild', 107807, 1299960, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (123, N'Quadrant', 13, 1, 2, N'Billy Cobham', 261851, 8538199, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (124, N'Snoopy''s search-Red baron', 13, 1, 2, N'Billy Cobham', 456071, 15075616, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (125, N'Spanish moss-"A sound portrait"-Spanish moss', 13, 1, 2, N'Billy Cobham', 248084, 8217867, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (126, N'Moon germs', 13, 1, 2, N'Billy Cobham', 294060, 9714812, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (127, N'Stratus', 13, 1, 2, N'Billy Cobham', 582086, 19115680, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (128, N'The pleasant pheasant', 13, 1, 2, N'Billy Cobham', 318066, 10630578, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (129, N'Solo-Panhandler', 13, 1, 2, N'Billy Cobham', 246151, 8230661, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (130, N'Do what cha wanna', 13, 1, 2, N'George Duke', 274155, 9018565, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (131, N'Intro/ Low Down', 14, 1, 3, 323683, 10642901, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (132, N'13 Years Of Grief', 14, 1, 3, 246987, 8137421, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (133, N'Stronger Than Death', 14, 1, 3, 300747, 9869647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (134, N'All For You', 14, 1, 3, 235833, 7726948, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (135, N'Super Terrorizer', 14, 1, 3, 319373, 10513905, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (136, N'Phoney Smile Fake Hellos', 14, 1, 3, 273606, 9011701, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (137, N'Lost My Better Half', 14, 1, 3, 284081, 9355309, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (138, N'Bored To Tears', 14, 1, 3, 247327, 8130090, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (139, N'A.N.D.R.O.T.A.Z.', 14, 1, 3, 266266, 8574746, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (140, N'Born To Booze', 14, 1, 3, 282122, 9257358, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (141, N'World Of Trouble', 14, 1, 3, 359157, 11820932, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (142, N'No More Tears', 14, 1, 3, 555075, 18041629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (143, N'The Begining... At Last', 14, 1, 3, 365662, 11965109, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (144, N'Heart Of Gold', 15, 1, 3, 194873, 6417460, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (145, N'Snowblind', 15, 1, 3, 420022, 13842549, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (146, N'Like A Bird', 15, 1, 3, 276532, 9115657, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (147, N'Blood In The Wall', 15, 1, 3, 284368, 9359475, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (148, N'The Beginning...At Last', 15, 1, 3, 271960, 8975814, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (149, N'Black Sabbath', 16, 1, 3, 382066, 12440200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (150, N'The Wizard', 16, 1, 3, 264829, 8646737, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (151, N'Behind The Wall Of Sleep', 16, 1, 3, 217573, 7169049, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (152, N'N.I.B.', 16, 1, 3, 368770, 12029390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (153, N'Evil Woman', 16, 1, 3, 204930, 6655170, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (154, N'Sleeping Village', 16, 1, 3, 644571, 21128525, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (155, N'Warning', 16, 1, 3, 212062, 6893363, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (156, N'Wheels Of Confusion / The Straightener', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 494524, 16065830, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (157, N'Tomorrow''s Dream', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 192496, 6252071, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (158, N'Changes', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 286275, 9175517, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (159, N'FX', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 103157, 3331776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (160, N'Supernaut', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 285779, 9245971, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (161, N'Snowblind', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 331676, 10813386, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (162, N'Cornucopia', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 234814, 7653880, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (163, N'Laguna Sunrise', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 173087, 5671374, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (164, N'St. Vitus Dance', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 149655, 4884969, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (165, N'Under The Sun/Every Day Comes and Goes', 17, 1, 3, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 350458, 11360486, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (166, N'Smoked Pork', 18, 1, 4, 47333, 1549074, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (167, N'Body Count''s In The House', 18, 1, 4, 204251, 6715413, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (168, N'Now Sports', 18, 1, 4, 4884, 161266, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (169, N'Body Count', 18, 1, 4, 317936, 10489139, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (170, N'A Statistic', 18, 1, 4, 6373, 211997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (171, N'Bowels Of The Devil', 18, 1, 4, 223216, 7324125, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (172, N'The Real Problem', 18, 1, 4, 11650, 387360, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (173, N'KKK Bitch', 18, 1, 4, 173008, 5709631, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (174, N'D Note', 18, 1, 4, 95738, 3067064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (175, N'Voodoo', 18, 1, 4, 300721, 9875962, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (176, N'The Winner Loses', 18, 1, 4, 392254, 12843821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (177, N'There Goes The Neighborhood', 18, 1, 4, 350171, 11443471, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (178, N'Oprah', 18, 1, 4, 6635, 224313, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (179, N'Evil Dick', 18, 1, 4, 239020, 7828873, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (180, N'Body Count Anthem', 18, 1, 4, 166426, 5463690, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (181, N'Momma''s Gotta Die Tonight', 18, 1, 4, 371539, 12122946, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (182, N'Freedom Of Speech', 18, 1, 4, 281234, 9337917, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (183, N'King In Crimson', 19, 1, 3, N'Roy Z', 283167, 9218499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (184, N'Chemical Wedding', 19, 1, 3, N'Roy Z', 246177, 8022764, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (185, N'The Tower', 19, 1, 3, N'Roy Z', 285257, 9435693, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (186, N'Killing Floor', 19, 1, 3, N'Adrian Smith', 269557, 8854240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (187, N'Book Of Thel', 19, 1, 3, N'Eddie Casillas/Roy Z', 494393, 16034404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (188, N'Gates Of Urizen', 19, 1, 3, N'Roy Z', 265351, 8627004, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (189, N'Jerusalem', 19, 1, 3, N'Roy Z', 402390, 13194463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (190, N'Trupets Of Jericho', 19, 1, 3, N'Roy Z', 359131, 11820908, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (191, N'Machine Men', 19, 1, 3, N'Adrian Smith', 341655, 11138147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (192, N'The Alchemist', 19, 1, 3, N'Roy Z', 509413, 16545657, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (193, N'Realword', 19, 1, 3, N'Roy Z', 237531, 7802095, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (194, N'First Time I Met The Blues', 20, 1, 6, N'Eurreal Montgomery', 140434, 4604995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (195, N'Let Me Love You Baby', 20, 1, 6, N'Willie Dixon', 175386, 5716994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (196, N'Stone Crazy', 20, 1, 6, N'Buddy Guy', 433397, 14184984, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (197, N'Pretty Baby', 20, 1, 6, N'Willie Dixon', 237662, 7848282, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (198, N'When My Left Eye Jumps', 20, 1, 6, N'Al Perkins/Willie Dixon', 235311, 7685363, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (199, N'Leave My Girl Alone', 20, 1, 6, N'Buddy Guy', 204721, 6859518, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (200, N'She Suits Me To A Tee', 20, 1, 6, N'Buddy Guy', 136803, 4456321, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (201, N'Keep It To Myself (Aka Keep It To Yourself)', 20, 1, 6, N'Sonny Boy Williamson [I]', 166060, 5487056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (202, N'My Time After Awhile', 20, 1, 6, N'Robert Geddins/Ron Badger/Sheldon Feinberg', 182491, 6022698, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (203, N'Too Many Ways (Alternate)', 20, 1, 6, N'Willie Dixon', 135053, 4459946, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (204, N'Talkin'' ''Bout Women Obviously', 20, 1, 6, N'Amos Blakemore/Buddy Guy', 589531, 19161377, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (205, N'Jorge Da Capadócia', 21, 1, 7, N'Jorge Ben', 177397, 5842196, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (206, N'Prenda Minha', 21, 1, 7, N'Tradicional', 99369, 3225364, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (207, N'Meditação', 21, 1, 7, N'Tom Jobim - Newton Mendoça', 148793, 4865597, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (208, N'Terra', 21, 1, 7, N'Caetano Veloso', 482429, 15889054, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (209, N'Eclipse Oculto', 21, 1, 7, N'Caetano Veloso', 221936, 7382703, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (210, N'Texto "Verdade Tropical"', 21, 1, 7, N'Caetano Veloso', 84088, 2752161, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (211, N'Bem Devagar', 21, 1, 7, N'Gilberto Gil', 133172, 4333651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (212, N'Drão', 21, 1, 7, N'Gilberto Gil', 156264, 5065932, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (213, N'Saudosismo', 21, 1, 7, N'Caetano Veloso', 144326, 4726981, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (214, N'Carolina', 21, 1, 7, N'Chico Buarque', 181812, 5924159, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (215, N'Sozinho', 21, 1, 7, N'Peninha', 190589, 6253200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (216, N'Esse Cara', 21, 1, 7, N'Caetano Veloso', 223111, 7217126, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (217, N'Mel', 21, 1, 7, N'Caetano Veloso - Waly Salomão', 294765, 9854062, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (218, N'Linha Do Equador', 21, 1, 7, N'Caetano Veloso - Djavan', 299337, 10003747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (219, N'Odara', 21, 1, 7, N'Caetano Veloso', 141270, 4704104, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (220, N'A Luz De Tieta', 21, 1, 7, N'Caetano Veloso', 251742, 8507446, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (221, N'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu', 21, 1, 7, N'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto', 307252, 10364247, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (222, N'Vida Boa', 21, 1, 7, N'Fausto Nilo - Armandinho', 281730, 9411272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (223, N'Sozinho (Hitmakers Classic Mix)', 22, 1, 7, 436636, 14462072, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (224, N'Sozinho (Hitmakers Classic Radio Edit)', 22, 1, 7, 195004, 6455134, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (225, N'Sozinho (Caêdrum ''n'' Bass)', 22, 1, 7, 328071, 10975007, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (226, N'Carolina', 23, 1, 7, 163056, 5375395, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (227, N'Essa Moça Ta Diferente', 23, 1, 7, 167235, 5568574, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (228, N'Vai Passar', 23, 1, 7, 369763, 12359161, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (229, N'Samba De Orly', 23, 1, 7, 162429, 5431854, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (230, N'Bye, Bye Brasil', 23, 1, 7, 283402, 9499590, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (231, N'Atras Da Porta', 23, 1, 7, 189675, 6132843, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (232, N'Tatuagem', 23, 1, 7, 172120, 5645703, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (233, N'O Que Será (À Flor Da Terra)', 23, 1, 7, 167288, 5574848, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (234, N'Morena De Angola', 23, 1, 7, 186801, 6373932, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (235, N'Apesar De Você', 23, 1, 7, 234501, 7886937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (236, N'A Banda', 23, 1, 7, 132493, 4349539, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (237, N'Minha Historia', 23, 1, 7, 182256, 6029673, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (238, N'Com Açúcar E Com Afeto', 23, 1, 7, 175386, 5846442, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (239, N'Brejo Da Cruz', 23, 1, 7, 214099, 7270749, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (240, N'Meu Caro Amigo', 23, 1, 7, 260257, 8778172, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (241, N'Geni E O Zepelim', 23, 1, 7, 317570, 10342226, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (242, N'Trocando Em Miúdos', 23, 1, 7, 169717, 5461468, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (243, N'Vai Trabalhar Vagabundo', 23, 1, 7, 139154, 4693941, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (244, N'Gota D''água', 23, 1, 7, 153208, 5074189, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (245, N'Construção / Deus Lhe Pague', 23, 1, 7, 383059, 12675305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (246, N'Mateus Enter', 24, 1, 7, N'Chico Science', 33149, 1103013, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (247, N'O Cidadão Do Mundo', 24, 1, 7, N'Chico Science', 200933, 6724966, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (248, N'Etnia', 24, 1, 7, N'Chico Science', 152555, 5061413, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (249, N'Quilombo Groove [Instrumental]', 24, 1, 7, N'Chico Science', 151823, 5042447, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (250, N'Macô', 24, 1, 7, N'Chico Science', 249600, 8253934, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (251, N'Um Passeio No Mundo Livre', 24, 1, 7, N'Chico Science', 240091, 7984291, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (252, N'Samba Do Lado', 24, 1, 7, N'Chico Science', 227317, 7541688, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (253, N'Maracatu Atômico', 24, 1, 7, N'Chico Science', 284264, 9670057, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (254, N'O Encontro De Isaac Asimov Com Santos Dumont No Céu', 24, 1, 7, N'Chico Science', 99108, 3240816, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (255, N'Corpo De Lama', 24, 1, 7, N'Chico Science', 232672, 7714954, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (256, N'Sobremesa', 24, 1, 7, N'Chico Science', 240091, 7960868, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (257, N'Manguetown', 24, 1, 7, N'Chico Science', 194560, 6475159, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (258, N'Um Satélite Na Cabeça', 24, 1, 7, N'Chico Science', 126615, 4272821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (259, N'Baião Ambiental [Instrumental]', 24, 1, 7, N'Chico Science', 152659, 5198539, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (260, N'Sangue De Bairro', 24, 1, 7, N'Chico Science', 132231, 4415557, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (261, N'Enquanto O Mundo Explode', 24, 1, 7, N'Chico Science', 88764, 2968650, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (262, N'Interlude Zumbi', 24, 1, 7, N'Chico Science', 71627, 2408550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (263, N'Criança De Domingo', 24, 1, 7, N'Chico Science', 208222, 6984813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (264, N'Amor De Muito', 24, 1, 7, N'Chico Science', 175333, 5881293, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (265, N'Samidarish [Instrumental]', 24, 1, 7, N'Chico Science', 272431, 8911641, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (266, N'Maracatu Atômico [Atomic Version]', 24, 1, 7, N'Chico Science', 273084, 9019677, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (267, N'Maracatu Atômico [Ragga Mix]', 24, 1, 7, N'Chico Science', 210155, 6986421, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (268, N'Maracatu Atômico [Trip Hop]', 24, 1, 7, N'Chico Science', 221492, 7380787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (269, N'Banditismo Por Uma Questa', 25, 1, 7, 307095, 10251097, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (270, N'Banditismo Por Uma Questa', 25, 1, 7, 243644, 8147224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (271, N'Rios Pontes & Overdrives', 25, 1, 7, 286720, 9659152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (272, N'Cidade', 25, 1, 7, 216346, 7241817, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (273, N'Praiera', 25, 1, 7, 183640, 6172781, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (274, N'Samba Makossa', 25, 1, 7, 271856, 9095410, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (275, N'Da Lama Ao Caos', 25, 1, 7, 251559, 8378065, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (276, N'Maracatu De Tiro Certeiro', 25, 1, 7, 88868, 2901397, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (277, N'Salustiano Song', 25, 1, 7, 215405, 7183969, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (278, N'Antene Se', 25, 1, 7, 248372, 8253618, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (279, N'Risoflora', 25, 1, 7, 105586, 3536938, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (280, N'Lixo Do Mangue', 25, 1, 7, 193253, 6534200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (281, N'Computadores Fazem Arte', 25, 1, 7, 404323, 13702771, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (282, N'Girassol', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido', 249808, 8327676, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (283, N'A Sombra Da Maldade', 26, 1, 8, N'Da Gama/Toni Garrido', 230922, 7697230, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (284, N'Johnny B. Goode', 26, 1, 8, N'Chuck Berry', 254615, 8505985, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (285, N'Soldado Da Paz', 26, 1, 8, N'Herbert Vianna', 194220, 6455080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (286, N'Firmamento', 26, 1, 8, N'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers', 222145, 7402658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (287, N'Extra', 26, 1, 8, N'Gilberto Gil', 304352, 10078050, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (288, N'O Erê', 26, 1, 8, N'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido', 236382, 7866924, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (289, N'Podes Crer', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Toni Garrido', 232280, 7747747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (290, N'A Estrada', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Toni Garrido', 248842, 8275673, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (291, N'Berlim', 26, 1, 8, N'Da Gama/Toni Garrido', 207542, 6920424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (292, N'Já Foi', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Toni Garrido', 221544, 7388466, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (293, N'Onde Você Mora?', 26, 1, 8, N'Marisa Monte/Nando Reis', 256026, 8502588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (294, N'Pensamento', 26, 1, 8, N'Bino Farias/Da Gamma/Lazão/Rás Bernard', 173008, 5748424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (295, N'Conciliação', 26, 1, 8, N'Da Gama/Lazão/Rás Bernardo', 257619, 8552474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (296, N'Realidade Virtual', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Toni Garrido', 195239, 6503533, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (297, N'Mensagem', 26, 1, 8, N'Bino Farias/Da Gama/Lazão/Rás Bernardo', 225332, 7488852, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (298, N'A Cor Do Sol', 26, 1, 8, N'Bernardo Vilhena/Da Gama/Lazão', 231392, 7663348, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (299, N'Onde Você Mora?', 27, 1, 8, N'Marisa Monte/Nando Reis', 298396, 10056970, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (300, N'O Erê', 27, 1, 8, N'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido', 206942, 6950332, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (301, N'A Sombra Da Maldade', 27, 1, 8, N'Da Gama/Toni Garrido', 285231, 9544383, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (302, N'A Estrada', 27, 1, 8, N'Da Gama/Lazao/Toni Garrido', 282174, 9344477, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (303, N'Falar A Verdade', 27, 1, 8, N'Bino/Da Gama/Ras Bernardo', 244950, 8189093, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (304, N'Firmamento', 27, 1, 8, N'Harry Lawes/Winston Foster-Vers', 225488, 7507866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (305, N'Pensamento', 27, 1, 8, N'Bino/Da Gama/Ras Bernardo', 192391, 6399761, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (306, N'Realidade Virtual', 27, 1, 8, N'Bino/Da Gamma/Lazao/Toni Garrido', 240300, 8069934, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (307, N'Doutor', 27, 1, 8, N'Bino/Da Gama/Toni Garrido', 178155, 5950952, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (308, N'Na Frente Da TV', 27, 1, 8, N'Bino/Da Gama/Lazao/Ras Bernardo', 289750, 9633659, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (309, N'Downtown', 27, 1, 8, N'Cidade Negra', 239725, 8024386, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (310, N'Sábado A Noite', 27, 1, 8, N'Lulu Santos', 267363, 8895073, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (311, N'A Cor Do Sol', 27, 1, 8, N'Bernardo Vilhena/Da Gama/Lazao', 273031, 9142937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (312, N'Eu Também Quero Beijar', 27, 1, 8, N'Fausto Nilo/Moraes Moreira/Pepeu Gomes', 211147, 7029400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (313, N'Noite Do Prazer', 28, 1, 7, 311353, 10309980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (314, N'À Francesa', 28, 1, 7, 244532, 8150846, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (315, N'Cada Um Cada Um (A Namoradeira)', 28, 1, 7, 253492, 8441034, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (316, N'Linha Do Equador', 28, 1, 7, 244715, 8123466, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (317, N'Amor Demais', 28, 1, 7, 254040, 8420093, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (318, N'Férias', 28, 1, 7, 264202, 8731945, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (319, N'Gostava Tanto De Você', 28, 1, 7, 230452, 7685326, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (320, N'Flor Do Futuro', 28, 1, 7, 275748, 9205941, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (321, N'Felicidade Urgente', 28, 1, 7, 266605, 8873358, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (322, N'Livre Pra Viver', 28, 1, 7, 214595, 7111596, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (323, N'Dig-Dig, Lambe-Lambe (Ao Vivo)', 29, 1, 9, N'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa', 205479, 6892516, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (324, N'Pererê', 29, 1, 9, N'Augusto Conceição/Chiclete Com Banana', 198661, 6643207, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (325, N'TriboTchan', 29, 1, 9, N'Cal Adan/Paulo Levi', 194194, 6507950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (326, N'Tapa Aqui, Descobre Ali', 29, 1, 9, N'Paulo Levi/W. Rangel', 188630, 6327391, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (327, N'Daniela', 29, 1, 9, N'Jorge Cardoso/Pierre Onasis', 230791, 7748006, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (328, N'Bate Lata', 29, 1, 9, N'Fábio Nolasco/Gal Sales/Ivan Brasil', 206733, 7034985, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (329, N'Garotas do Brasil', 29, 1, 9, N'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira', 210155, 6973625, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (330, N'Levada do Amor (Ailoviu)', 29, 1, 9, N'Luiz Wanderley/Paulo Levi', 190093, 6457752, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (331, N'Lavadeira', 29, 1, 9, N'Do Vale, Valverde/Gal Oliveira/Luciano Pinto', 214256, 7254147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (332, N'Reboladeira', 29, 1, 9, N'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill', 210599, 7027525, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (333, N'É que Nessa Encarnação Eu Nasci Manga', 29, 1, 9, N'Lucina/Luli', 196519, 6568081, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (334, N'Reggae Tchan', 29, 1, 9, N'Cal Adan/Del Rey, Tension/Edu Casanova', 206654, 6931328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (335, N'My Love', 29, 1, 9, N'Jauperi/Zeu Góes', 203493, 6772813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (336, N'Latinha de Cerveja', 29, 1, 9, N'Adriano Bernandes/Edmar Neves', 166687, 5532564, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (337, N'You Shook Me', 30, 1, 1, N'J B Lenoir/Willie Dixon', 315951, 10249958, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (338, N'I Can''t Quit You Baby', 30, 1, 1, N'Willie Dixon', 263836, 8581414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (339, N'Communication Breakdown', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 192653, 6287257, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (340, N'Dazed and Confused', 30, 1, 1, N'Jimmy Page', 401920, 13035765, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (341, N'The Girl I Love She Got Long Black Wavy Hair', 30, 1, 1, N'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant', 183327, 5995686, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (342, N'What is and Should Never Be', 30, 1, 1, N'Jimmy Page/Robert Plant', 260675, 8497116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (343, N'Communication Breakdown(2)', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 161149, 5261022, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (344, N'Travelling Riverside Blues', 30, 1, 1, N'Jimmy Page/Robert Johnson/Robert Plant', 312032, 10232581, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (345, N'Whole Lotta Love', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 373394, 12258175, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (346, N'Somethin'' Else', 30, 1, 1, N'Bob Cochran/Sharon Sheeley', 127869, 4165650, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (347, N'Communication Breakdown(3)', 30, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 185260, 6041133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (348, N'I Can''t Quit You Baby(2)', 30, 1, 1, N'Willie Dixon', 380551, 12377615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (349, N'You Shook Me(2)', 30, 1, 1, N'J B Lenoir/Willie Dixon', 619467, 20138673, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (350, N'How Many More Times', 30, 1, 1, N'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant', 711836, 23092953, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (351, N'Debra Kadabra', 31, 1, 1, N'Frank Zappa', 234553, 7649679, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (352, N'Carolina Hard-Core Ecstasy', 31, 1, 1, N'Frank Zappa', 359680, 11731061, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (353, N'Sam With The Showing Scalp Flat Top', 31, 1, 1, N'Don Van Vliet', 171284, 5572993, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (354, N'Poofter''s Froth Wyoming Plans Ahead', 31, 1, 1, N'Frank Zappa', 183902, 6007019, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (355, N'200 Years Old', 31, 1, 1, N'Frank Zappa', 272561, 8912465, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (356, N'Cucamonga', 31, 1, 1, N'Frank Zappa', 144483, 4728586, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (357, N'Advance Romance', 31, 1, 1, N'Frank Zappa', 677694, 22080051, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (358, N'Man With The Woman Head', 31, 1, 1, N'Don Van Vliet', 88894, 2922044, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (359, N'Muffin Man', 31, 1, 1, N'Frank Zappa', 332878, 10891682, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (360, N'Vai-Vai 2001', 32, 1, 10, 276349, 9402241, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (361, N'X-9 2001', 32, 1, 10, 273920, 9310370, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (362, N'Gavioes 2001', 32, 1, 10, 282723, 9616640, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (363, N'Nene 2001', 32, 1, 10, 284969, 9694508, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (364, N'Rosas De Ouro 2001', 32, 1, 10, 284342, 9721084, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (365, N'Mocidade Alegre 2001', 32, 1, 10, 282488, 9599937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (366, N'Camisa Verde 2001', 32, 1, 10, 283454, 9633755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (367, N'Leandro De Itaquera 2001', 32, 1, 10, 274808, 9451845, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (368, N'Tucuruvi 2001', 32, 1, 10, 287921, 9883335, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (369, N'Aguia De Ouro 2001', 32, 1, 10, 284160, 9698729, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (370, N'Ipiranga 2001', 32, 1, 10, 248293, 8522591, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (371, N'Morro Da Casa Verde 2001', 32, 1, 10, 284708, 9718778, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (372, N'Perola Negra 2001', 32, 1, 10, 281626, 9619196, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (373, N'Sao Lucas 2001', 32, 1, 10, 296254, 10020122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (374, N'Guanabara', 33, 1, 7, N'Marcos Valle', 247614, 8499591, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (375, N'Mas Que Nada', 33, 1, 7, N'Jorge Ben', 248398, 8255254, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (376, N'Vôo Sobre o Horizonte', 33, 1, 7, N'J.r.Bertami/Parana', 225097, 7528825, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (377, N'A Paz', 33, 1, 7, N'Donato/Gilberto Gil', 263183, 8619173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (378, N'Wave (Vou te Contar)', 33, 1, 7, N'Antonio Carlos Jobim', 271647, 9057557, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (379, N'Água de Beber', 33, 1, 7, N'Antonio Carlos Jobim/Vinicius de Moraes', 146677, 4866476, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (380, N'Samba da Bençaco', 33, 1, 7, N'Baden Powell/Vinicius de Moraes', 282200, 9440676, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (381, N'Pode Parar', 33, 1, 7, N'Jorge Vercilo/Jota Maranhao', 179408, 6046678, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (382, N'Menino do Rio', 33, 1, 7, N'Caetano Veloso', 262713, 8737489, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (383, N'Ando Meio Desligado', 33, 1, 7, N'Caetano Veloso', 195813, 6547648, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (384, N'Mistério da Raça', 33, 1, 7, N'Luiz Melodia/Ricardo Augusto', 184320, 6191752, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (385, N'All Star', 33, 1, 7, N'Nando Reis', 176326, 5891697, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (386, N'Menina Bonita', 33, 1, 7, N'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo', 237087, 7938246, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (387, N'Pescador de Ilusões', 33, 1, 7, N'Macelo Yuka/O Rappa', 245524, 8267067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (388, N'À Vontade (Live Mix)', 33, 1, 7, N'Bombom/Ed Motta', 180636, 5972430, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (389, N'Maria Fumaça', 33, 1, 7, N'Luiz Carlos/Oberdan', 141008, 4743149, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (390, N'Sambassim (dj patife remix)', 33, 1, 7, N'Alba Carvalho/Fernando Porto', 213655, 7243166, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (391, N'Garota De Ipanema', 34, 1, 7, N'Vários', 279536, 9141343, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (392, N'Tim Tim Por Tim Tim', 34, 1, 7, N'Vários', 213237, 7143328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (393, N'Tarde Em Itapoã', 34, 1, 7, N'Vários', 313704, 10344491, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (394, N'Tanto Tempo', 34, 1, 7, N'Vários', 170292, 5572240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (395, N'Eu Vim Da Bahia - Live', 34, 1, 7, N'Vários', 157988, 5115428, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (396, N'Alô Alô Marciano', 34, 1, 7, N'Vários', 238106, 8013065, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (397, N'Linha Do Horizonte', 34, 1, 7, N'Vários', 279484, 9275929, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (398, N'Only A Dream In Rio', 34, 1, 7, N'Vários', 371356, 12192989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (399, N'Abrir A Porta', 34, 1, 7, N'Vários', 271960, 8991141, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (400, N'Alice', 34, 1, 7, N'Vários', 165982, 5594341, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (401, N'Momentos Que Marcam', 34, 1, 7, N'Vários', 280137, 9313740, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (402, N'Um Jantar Pra Dois', 34, 1, 7, N'Vários', 237714, 7819755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (403, N'Bumbo Da Mangueira', 34, 1, 7, N'Vários', 270158, 9073350, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (404, N'Mr Funk Samba', 34, 1, 7, N'Vários', 213890, 7102545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (405, N'Santo Antonio', 34, 1, 7, N'Vários', 162716, 5492069, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (406, N'Por Você', 34, 1, 7, N'Vários', 205557, 6792493, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (407, N'Só Tinha De Ser Com Você', 34, 1, 7, N'Vários', 389642, 13085596, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (408, N'Free Speech For The Dumb', 35, 1, 3, N'Molaney/Morris/Roberts/Wainwright', 155428, 5076048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (409, N'It''s Electric', 35, 1, 3, N'Harris/Tatler', 213995, 6978601, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (410, N'Sabbra Cadabra', 35, 1, 3, N'Black Sabbath', 380342, 12418147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (411, N'Turn The Page', 35, 1, 3, N'Seger', 366524, 11946327, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (412, N'Die Die My Darling', 35, 1, 3, N'Danzig', 149315, 4867667, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (413, N'Loverman', 35, 1, 3, N'Cave', 472764, 15446975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (414, N'Mercyful Fate', 35, 1, 3, N'Diamond/Shermann', 671712, 21942829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (415, N'Astronomy', 35, 1, 3, N'A.Bouchard/J.Bouchard/S.Pearlman', 397531, 13065612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (416, N'Whiskey In The Jar', 35, 1, 3, N'Traditional', 305005, 9943129, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (417, N'Tuesday''s Gone', 35, 1, 3, N'Collins/Van Zandt', 545750, 17900787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (418, N'The More I See', 35, 1, 3, N'Molaney/Morris/Roberts/Wainwright', 287973, 9378873, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (419, N'A Kind Of Magic', 36, 1, 1, N'Roger Taylor', 262608, 8689618, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (420, N'Under Pressure', 36, 1, 1, N'Queen & David Bowie', 236617, 7739042, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (421, N'Radio GA GA', 36, 1, 1, N'Roger Taylor', 343745, 11358573, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (422, N'I Want It All', 36, 1, 1, N'Queen', 241684, 7876564, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (423, N'I Want To Break Free', 36, 1, 1, N'John Deacon', 259108, 8552861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (424, N'Innuendo', 36, 1, 1, N'Queen', 387761, 12664591, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (425, N'It''s A Hard Life', 36, 1, 1, N'Freddie Mercury', 249417, 8112242, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (426, N'Breakthru', 36, 1, 1, N'Queen', 249234, 8150479, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (427, N'Who Wants To Live Forever', 36, 1, 1, N'Brian May', 297691, 9577577, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (428, N'Headlong', 36, 1, 1, N'Queen', 273057, 8921404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (429, N'The Miracle', 36, 1, 1, N'Queen', 294974, 9671923, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (430, N'I''m Going Slightly Mad', 36, 1, 1, N'Queen', 248032, 8192339, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (431, N'The Invisible Man', 36, 1, 1, N'Queen', 238994, 7920353, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (432, N'Hammer To Fall', 36, 1, 1, N'Brian May', 220316, 7255404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (433, N'Friends Will Be Friends', 36, 1, 1, N'Freddie Mercury & John Deacon', 248920, 8114582, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (434, N'The Show Must Go On', 36, 1, 1, N'Queen', 263784, 8526760, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (435, N'One Vision', 36, 1, 1, N'Queen', 242599, 7936928, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (436, N'Detroit Rock City', 37, 1, 1, N'Paul Stanley, B. Ezrin', 218880, 7146372, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (437, N'Black Diamond', 37, 1, 1, N'Paul Stanley', 314148, 10266007, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (438, N'Hard Luck Woman', 37, 1, 1, N'Paul Stanley', 216032, 7109267, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (439, N'Sure Know Something', 37, 1, 1, N'Paul Stanley, Vincent Poncia', 242468, 7939886, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (440, N'Love Gun', 37, 1, 1, N'Paul Stanley', 196257, 6424915, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (441, N'Deuce', 37, 1, 1, N'Gene Simmons', 185077, 6097210, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (442, N'Goin'' Blind', 37, 1, 1, N'Gene Simmons, S. Coronel', 216215, 7045314, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (443, N'Shock Me', 37, 1, 1, N'Ace Frehley', 227291, 7529336, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (444, N'Do You Love Me', 37, 1, 1, N'Paul Stanley, B. Ezrin, K. Fowley', 214987, 6976194, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (445, N'She', 37, 1, 1, N'Gene Simmons, S. Coronel', 248346, 8229734, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (446, N'I Was Made For Loving You', 37, 1, 1, N'Paul Stanley, Vincent Poncia, Desmond Child', 271360, 9018078, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (447, N'Shout It Out Loud', 37, 1, 1, N'Paul Stanley, Gene Simmons, B. Ezrin', 219742, 7194424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (448, N'God Of Thunder', 37, 1, 1, N'Paul Stanley', 255791, 8309077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (449, N'Calling Dr. Love', 37, 1, 1, N'Gene Simmons', 225332, 7395034, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (450, N'Beth', 37, 1, 1, N'S. Penridge, Bob Ezrin, Peter Criss', 166974, 5360574, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (451, N'Strutter', 37, 1, 1, N'Paul Stanley, Gene Simmons', 192496, 6317021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (452, N'Rock And Roll All Nite', 37, 1, 1, N'Paul Stanley, Gene Simmons', 173609, 5735902, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (453, N'Cold Gin', 37, 1, 1, N'Ace Frehley', 262243, 8609783, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (454, N'Plaster Caster', 37, 1, 1, N'Gene Simmons', 207333, 6801116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (455, N'God Gave Rock ''n'' Roll To You', 37, 1, 1, N'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin', 320444, 10441590, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (456, N'Heart of the Night', 38, 1, 2, 273737, 9098263, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (457, N'De La Luz', 38, 1, 2, 315219, 10518284, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (458, N'Westwood Moon', 38, 1, 2, 295627, 9765802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (459, N'Midnight', 38, 1, 2, 266866, 8851060, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (460, N'Playtime', 38, 1, 2, 273580, 9070880, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (461, N'Surrender', 38, 1, 2, 287634, 9422926, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (462, N'Valentino''s', 38, 1, 2, 296124, 9848545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (463, N'Believe', 38, 1, 2, 310778, 10317185, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (464, N'As We Sleep', 38, 1, 2, 316865, 10429398, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (465, N'When Evening Falls', 38, 1, 2, 298135, 9863942, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (466, N'J Squared', 38, 1, 2, 288757, 9480777, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (467, N'Best Thing', 38, 1, 2, 274259, 9069394, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (468, N'Maria', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 167262, 5484747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (469, N'Poprocks And Coke', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 158354, 5243078, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (470, N'Longview', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 234083, 7714939, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (471, N'Welcome To Paradise', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 224208, 7406008, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (472, N'Basket Case', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 181629, 5951736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (473, N'When I Come Around', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 178364, 5839426, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (474, N'She', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 134164, 4425128, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (475, N'J.A.R. (Jason Andrew Relva)', 39, 1, 4, N'Mike Dirnt -Words Green Day -Music', 170997, 5645755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (476, N'Geek Stink Breath', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 135888, 4408983, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (477, N'Brain Stew', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 193149, 6305550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (478, N'Jaded', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 90331, 2950224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (479, N'Walking Contradiction', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 151170, 4932366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (480, N'Stuck With Me', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 135523, 4431357, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (481, N'Hitchin'' A Ride', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 171546, 5616891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (482, N'Good Riddance (Time Of Your Life)', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 153600, 5075241, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (483, N'Redundant', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 198164, 6481753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (484, N'Nice Guys Finish Last', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 170187, 5604618, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (485, N'Minority', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 168803, 5535061, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (486, N'Warning', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 221910, 7343176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (487, N'Waiting', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 192757, 6316430, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (488, N'Macy''s Day Parade', 39, 1, 4, N'Billie Joe Armstrong -Words Green Day -Music', 213420, 7075573, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (489, N'Into The Light', 40, 1, 1, N'David Coverdale', 76303, 2452653, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (490, N'River Song', 40, 1, 1, N'David Coverdale', 439510, 14359478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (491, N'She Give Me ...', 40, 1, 1, N'David Coverdale', 252551, 8385478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (492, N'Don''t You Cry', 40, 1, 1, N'David Coverdale', 347036, 11269612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (493, N'Love Is Blind', 40, 1, 1, N'David Coverdale/Earl Slick', 344999, 11409720, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (494, N'Slave', 40, 1, 1, N'David Coverdale/Earl Slick', 291892, 9425200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (495, N'Cry For Love', 40, 1, 1, N'Bossi/David Coverdale/Earl Slick', 293015, 9567075, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (496, N'Living On Love', 40, 1, 1, N'Bossi/David Coverdale/Earl Slick', 391549, 12785876, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (497, N'Midnight Blue', 40, 1, 1, N'David Coverdale/Earl Slick', 298631, 9750990, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (498, N'Too Many Tears', 40, 1, 1, N'Adrian Vanderberg/David Coverdale', 359497, 11810238, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (499, N'Don''t Lie To Me', 40, 1, 1, N'David Coverdale/Earl Slick', 283585, 9288007, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (500, N'Wherever You May Go', 40, 1, 1, N'David Coverdale', 239699, 7803074, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (501, N'Grito De Alerta', 41, 1, 7, N'Gonzaga Jr.', 202213, 6539422, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (502, N'Não Dá Mais Pra Segurar (Explode Coração)', 41, 1, 7, 219768, 7083012, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (503, N'Começaria Tudo Outra Vez', 41, 1, 7, 196545, 6473395, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (504, N'O Que É O Que É ?', 41, 1, 7, 259291, 8650647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (505, N'Sangrando', 41, 1, 7, N'Gonzaga Jr/Gonzaguinha', 169717, 5494406, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (506, N'Diga Lá, Coração', 41, 1, 7, 255921, 8280636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (507, N'Lindo Lago Do Amor', 41, 1, 7, N'Gonzaga Jr.', 249678, 8353191, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (508, N'Eu Apenas Queria Que Voçê Soubesse', 41, 1, 7, 155637, 5130056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (509, N'Com A Perna No Mundo', 41, 1, 7, N'Gonzaga Jr.', 227448, 7747108, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (510, N'E Vamos À Luta', 41, 1, 7, 222406, 7585112, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (511, N'Um Homem Também Chora (Guerreiro Menino)', 41, 1, 7, 207229, 6854219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (512, N'Comportamento Geral', 41, 1, 7, N'Gonzaga Jr', 181577, 5997444, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (513, N'Ponto De Interrogação', 41, 1, 7, 180950, 5946265, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (514, N'Espere Por Mim, Morena', 41, 1, 7, N'Gonzaguinha', 207072, 6796523, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (515, N'Meia-Lua Inteira', 23, 1, 7, 222093, 7466288, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (516, N'Voce e Linda', 23, 1, 7, 242938, 8050268, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (517, N'Um Indio', 23, 1, 7, 195944, 6453213, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (518, N'Podres Poderes', 23, 1, 7, 259761, 8622495, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (519, N'Voce Nao Entende Nada - Cotidiano', 23, 1, 7, 421982, 13885612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (520, N'O Estrangeiro', 23, 1, 7, 374700, 12472890, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (521, N'Menino Do Rio', 23, 1, 7, 147670, 4862277, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (522, N'Qualquer Coisa', 23, 1, 7, 193410, 6372433, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (523, N'Sampa', 23, 1, 7, 185051, 6151831, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (524, N'Queixa', 23, 1, 7, 299676, 9953962, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (525, N'O Leaozinho', 23, 1, 7, 184398, 6098150, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (526, N'Fora Da Ordem', 23, 1, 7, 354011, 11746781, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (527, N'Terra', 23, 1, 7, 401319, 13224055, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (528, N'Alegria, Alegria', 23, 1, 7, 169221, 5497025, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (529, N'Balada Do Louco', 42, 1, 4, N'Arnaldo Baptista - Rita Lee', 241057, 7852328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (530, N'Ando Meio Desligado', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - Sérgio Dias', 287817, 9484504, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (531, N'Top Top', 42, 1, 4, N'Os Mutantes - Arnolpho Lima Filho', 146938, 4875374, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (532, N'Baby', 42, 1, 4, N'Caetano Veloso', 177188, 5798202, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (533, N'A E O Z', 42, 1, 4, N'Mutantes', 518556, 16873005, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (534, N'Panis Et Circenses', 42, 1, 4, N'Caetano Veloso - Gilberto Gil', 125152, 4069688, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (535, N'Chão De Estrelas', 42, 1, 4, N'Orestes Barbosa-Sílvio Caldas', 284813, 9433620, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (536, N'Vida De Cachorro', 42, 1, 4, N'Rita Lee - Arnaldo Baptista - Sérgio Baptista', 195186, 6411149, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (537, N'Bat Macumba', 42, 1, 4, N'Gilberto Gil - Caetano Veloso', 187794, 6295223, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (538, N'Desculpe Babe', 42, 1, 4, N'Arnaldo Baptista - Rita Lee', 170422, 5637959, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (539, N'Rita Lee', 42, 1, 4, N'Arnaldo Baptista/Rita Lee/Sérgio Dias', 189257, 6270503, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (540, N'Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho', 222955, 7346254, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (541, N'Banho De Lua', 42, 1, 4, N'B. de Filippi - F. Migliaci - Versão: Fred Jorge', 221831, 7232123, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (542, N'Meu Refrigerador Não Funciona', 42, 1, 4, N'Arnaldo Baptista - Rita Lee - Sérgio Dias', 382981, 12495906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (543, N'Burn', 43, 1, 1, N'Coverdale/Lord/Paice', 453955, 14775708, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (544, N'Stormbringer', 43, 1, 1, N'Coverdale', 277133, 9050022, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (545, N'Gypsy', 43, 1, 1, N'Coverdale/Hughes/Lord/Paice', 339173, 11046952, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (546, N'Lady Double Dealer', 43, 1, 1, N'Coverdale', 233586, 7608759, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (547, N'Mistreated', 43, 1, 1, N'Coverdale', 758648, 24596235, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (548, N'Smoke On The Water', 43, 1, 1, N'Gillan/Glover/Lord/Paice', 618031, 20103125, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (549, N'You Fool No One', 43, 1, 1, N'Coverdale/Lord/Paice', 804101, 26369966, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (550, N'Custard Pie', 44, 1, 1, N'Jimmy Page/Robert Plant', 253962, 8348257, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (551, N'The Rover', 44, 1, 1, N'Jimmy Page/Robert Plant', 337084, 11011286, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (552, N'In My Time Of Dying', 44, 1, 1, N'John Bonham/John Paul Jones', 666017, 21676727, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (553, N'Houses Of The Holy', 44, 1, 1, N'Jimmy Page/Robert Plant', 242494, 7972503, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (554, N'Trampled Under Foot', 44, 1, 1, N'John Paul Jones', 336692, 11154468, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (555, N'Kashmir', 44, 1, 1, N'John Bonham', 508604, 16686580, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (556, N'Imperatriz', 45, 1, 7, N'Guga/Marquinho Lessa/Tuninho Professor', 339173, 11348710, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (557, N'Beija-Flor', 45, 1, 7, N'Caruso/Cleber/Deo/Osmar', 327000, 10991159, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (558, N'Viradouro', 45, 1, 7, N'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto', 344320, 11484362, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (559, N'Mocidade', 45, 1, 7, N'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do', 261720, 8817757, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (560, N'Unidos Da Tijuca', 45, 1, 7, N'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir', 338834, 11440689, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (561, N'Salgueiro', 45, 1, 7, N'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da', 305920, 10294741, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (562, N'Mangueira', 45, 1, 7, N'Bizuca/Clóvis Pê/Gilson Bernini/Marelo D''Aguia', 298318, 9999506, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (563, N'União Da Ilha', 45, 1, 7, N'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André', 330945, 11100945, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (564, N'Grande Rio', 45, 1, 7, N'Carlos Santos/Ciro/Claudio Russo/Zé Luiz', 307252, 10251428, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (565, N'Portela', 45, 1, 7, N'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno', 319608, 10712216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (566, N'Caprichosos', 45, 1, 7, N'Gule/Jorge 101/Lequinho/Luiz Piao', 351320, 11870956, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (567, N'Tradição', 45, 1, 7, N'Adalto Magalha/Lourenco', 269165, 9114880, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (568, N'Império Serrano', 45, 1, 7, N'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao', 334942, 11161196, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (569, N'Tuiuti', 45, 1, 7, N'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som', 259657, 8749492, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (570, N'(Da Le) Yaleo', 46, 1, 1, N'Santana', 353488, 11769507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (571, N'Love Of My Life', 46, 1, 1, N'Carlos Santana & Dave Matthews', 347820, 11634337, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (572, N'Put Your Lights On', 46, 1, 1, N'E. Shrody', 285178, 9394769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (573, N'Africa Bamba', 46, 1, 1, N'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo', 282827, 9492487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (574, N'Smooth', 46, 1, 1, N'M. Itaal Shur & Rob Thomas', 298161, 9867455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (575, N'Do You Like The Way', 46, 1, 1, N'L. Hill', 354899, 11741062, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (576, N'Maria Maria', 46, 1, 1, N'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow', 262635, 8664601, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (577, N'Migra', 46, 1, 1, N'R. Taha, Carlos Santana & T. Lindsay', 329064, 10963305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (578, N'Corazon Espinado', 46, 1, 1, N'F. Olivera', 276114, 9206802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (579, N'Wishing It Was', 46, 1, 1, N'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita', 292832, 9771348, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (580, N'El Farol', 46, 1, 1, N'Carlos Santana & KC Porter', 291160, 9599353, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (581, N'Primavera', 46, 1, 1, N'KC Porter & JB Eckl', 378618, 12504234, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (582, N'The Calling', 46, 1, 1, N'Carlos Santana & C. Thompson', 747755, 24703884, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (583, N'Solução', 47, 1, 7, 247431, 8100449, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (584, N'Manuel', 47, 1, 7, 230269, 7677671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (585, N'Entre E Ouça', 47, 1, 7, 286302, 9391004, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (586, N'Um Contrato Com Deus', 47, 1, 7, 202501, 6636465, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (587, N'Um Jantar Pra Dois', 47, 1, 7, 244009, 8021589, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (588, N'Vamos Dançar', 47, 1, 7, 226194, 7617432, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (589, N'Um Love', 47, 1, 7, 181603, 6095524, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (590, N'Seis Da Tarde', 47, 1, 7, 238445, 7935898, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (591, N'Baixo Rio', 47, 1, 7, 198008, 6521676, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (592, N'Sombras Do Meu Destino', 47, 1, 7, 280685, 9161539, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (593, N'Do You Have Other Loves?', 47, 1, 7, 295235, 9604273, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (594, N'Agora Que O Dia Acordou', 47, 1, 7, 323213, 10572752, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (595, N'Já!!!', 47, 1, 7, 217782, 7103608, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (596, N'A Rua', 47, 1, 7, 238027, 7930264, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (597, N'Now''s The Time', 48, 1, 2, N'Miles Davis', 197459, 6358868, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (598, N'Jeru', 48, 1, 2, N'Miles Davis', 193410, 6222536, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (599, N'Compulsion', 48, 1, 2, N'Miles Davis', 345025, 11254474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (600, N'Tempus Fugit', 48, 1, 2, N'Miles Davis', 231784, 7548434, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (601, N'Walkin''', 48, 1, 2, N'Miles Davis', 807392, 26411634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (602, N'''Round Midnight', 48, 1, 2, N'Miles Davis', 357459, 11590284, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (603, N'Bye Bye Blackbird', 48, 1, 2, N'Miles Davis', 476003, 15549224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (604, N'New Rhumba', 48, 1, 2, N'Miles Davis', 277968, 9018024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (605, N'Generique', 48, 1, 2, N'Miles Davis', 168777, 5437017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (606, N'Summertime', 48, 1, 2, N'Miles Davis', 200437, 6461370, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (607, N'So What', 48, 1, 2, N'Miles Davis', 564009, 18360449, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (608, N'The Pan Piper', 48, 1, 2, N'Miles Davis', 233769, 7593713, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (609, N'Someday My Prince Will Come', 48, 1, 2, N'Miles Davis', 544078, 17890773, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (610, N'My Funny Valentine (Live)', 49, 1, 2, N'Miles Davis', 907520, 29416781, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (611, N'E.S.P.', 49, 1, 2, N'Miles Davis', 330684, 11079866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (612, N'Nefertiti', 49, 1, 2, N'Miles Davis', 473495, 15478450, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (613, N'Petits Machins (Little Stuff)', 49, 1, 2, N'Miles Davis', 487392, 16131272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (614, N'Miles Runs The Voodoo Down', 49, 1, 2, N'Miles Davis', 843964, 27967919, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (615, N'Little Church (Live)', 49, 1, 2, N'Miles Davis', 196101, 6273225, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (616, N'Black Satin', 49, 1, 2, N'Miles Davis', 316682, 10529483, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (617, N'Jean Pierre (Live)', 49, 1, 2, N'Miles Davis', 243461, 7955114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (618, N'Time After Time', 49, 1, 2, N'Miles Davis', 220734, 7292197, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (619, N'Portia', 49, 1, 2, N'Miles Davis', 378775, 12520126, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (620, N'Space Truckin''', 50, 1, 1, N'Blackmore/Gillan/Glover/Lord/Paice', 1196094, 39267613, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (621, N'Going Down / Highway Star', 50, 1, 1, N'Gillan/Glover/Lord/Nix - Blackmore/Paice', 913658, 29846063, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (622, N'Mistreated (Alternate Version)', 50, 1, 1, N'Blackmore/Coverdale', 854700, 27775442, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (623, N'You Fool No One (Alternate Version)', 50, 1, 1, N'Blackmore/Coverdale/Lord/Paice', 763924, 24887209, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (624, N'Jeepers Creepers', 51, 1, 2, 185965, 5991903, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (625, N'Blue Rythm Fantasy', 51, 1, 2, 348212, 11204006, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (626, N'Drum Boogie', 51, 1, 2, 191555, 6185636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (627, N'Let Me Off Uptown', 51, 1, 2, 187637, 6034685, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (628, N'Leave Us Leap', 51, 1, 2, 182726, 5898810, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (629, N'Opus No.1', 51, 1, 2, 179800, 5846041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (630, N'Boogie Blues', 51, 1, 2, 204199, 6603153, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (631, N'How High The Moon', 51, 1, 2, 201430, 6529487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (632, N'Disc Jockey Jump', 51, 1, 2, 193149, 6260820, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (633, N'Up An'' Atom', 51, 1, 2, 179565, 5822645, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (634, N'Bop Boogie', 51, 1, 2, 189596, 6093124, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (635, N'Lemon Drop', 51, 1, 2, 194089, 6287531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (636, N'Coronation Drop', 51, 1, 2, 176222, 5899898, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (637, N'Overtime', 51, 1, 2, 163030, 5432236, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (638, N'Imagination', 51, 1, 2, 289306, 9444385, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (639, N'Don''t Take Your Love From Me', 51, 1, 2, 282331, 9244238, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (640, N'Midget', 51, 1, 2, 217025, 7257663, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (641, N'I''m Coming Virginia', 51, 1, 2, 280163, 9209827, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (642, N'Payin'' Them Dues Blues', 51, 1, 2, 198556, 6536918, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (643, N'Jungle Drums', 51, 1, 2, 199627, 6546063, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (644, N'Showcase', 51, 1, 2, 201560, 6697510, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (645, N'Swedish Schnapps', 51, 1, 2, 191268, 6359750, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (646, N'Samba Da Bênção', 52, 1, 11, 409965, 13490008, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (647, N'Pot-Pourri N.º 4', 52, 1, 11, 392437, 13125975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (648, N'Onde Anda Você', 52, 1, 11, 168437, 5550356, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (649, N'Samba Da Volta', 52, 1, 11, 170631, 5676090, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (650, N'Canto De Ossanha', 52, 1, 11, 204956, 6771624, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (651, N'Pot-Pourri N.º 5', 52, 1, 11, 219898, 7117769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (652, N'Formosa', 52, 1, 11, 137482, 4560873, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (653, N'Como É Duro Trabalhar', 52, 1, 11, 226168, 7541177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (654, N'Minha Namorada', 52, 1, 11, 244297, 7927967, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (655, N'Por Que Será', 52, 1, 11, 162142, 5371483, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (656, N'Berimbau', 52, 1, 11, 190667, 6335548, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (657, N'Deixa', 52, 1, 11, 179826, 5932799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (658, N'Pot-Pourri N.º 2', 52, 1, 11, 211748, 6878359, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (659, N'Samba Em Prelúdio', 52, 1, 11, 212636, 6923473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (660, N'Carta Ao Tom 74', 52, 1, 11, 162560, 5382354, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (661, N'Linha de Passe (João Bosco)', 53, 1, 7, 230948, 7902328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (662, N'Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)', 53, 1, 7, 163970, 5399626, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (663, N'Chão de Giz (Elba Ramalho)', 53, 1, 7, 274834, 9016916, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (664, N'Marina (Dorival Caymmi)', 53, 1, 7, 172643, 5523628, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (665, N'Aquarela (Toquinho)', 53, 1, 7, 259944, 8480140, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (666, N'Coração do Agreste (Fafá de Belém)', 53, 1, 7, 258194, 8380320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (667, N'Dona (Roupa Nova)', 53, 1, 7, 243356, 7991295, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (668, N'Começaria Tudo Outra Vez (Maria Creuza)', 53, 1, 7, 206994, 6851151, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (669, N'Caçador de Mim (Sá & Guarabyra)', 53, 1, 7, 238341, 7751360, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (670, N'Romaria (Renato Teixeira)', 53, 1, 7, 244793, 8033885, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (671, N'As Rosas Não Falam (Beth Carvalho)', 53, 1, 7, 116767, 3836641, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (672, N'Wave (Os Cariocas)', 53, 1, 7, 130063, 4298006, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (673, N'Garota de Ipanema (Dick Farney)', 53, 1, 7, 174367, 5767474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (674, N'Preciso Apender a Viver Só (Maysa)', 53, 1, 7, 143464, 4642359, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (675, N'Susie Q', 54, 1, 1, N'Hawkins-Lewis-Broadwater', 275565, 9043825, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (676, N'I Put A Spell On You', 54, 1, 1, N'Jay Hawkins', 272091, 8943000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (677, N'Proud Mary', 54, 1, 1, N'J. C. Fogerty', 189022, 6229590, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (678, N'Bad Moon Rising', 54, 1, 1, N'J. C. Fogerty', 140146, 4609835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (679, N'Lodi', 54, 1, 1, N'J. C. Fogerty', 191451, 6260214, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (680, N'Green River', 54, 1, 1, N'J. C. Fogerty', 154279, 5105874, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (681, N'Commotion', 54, 1, 1, N'J. C. Fogerty', 162899, 5354252, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (682, N'Down On The Corner', 54, 1, 1, N'J. C. Fogerty', 164858, 5521804, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (683, N'Fortunate Son', 54, 1, 1, N'J. C. Fogerty', 140329, 4617559, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (684, N'Travelin'' Band', 54, 1, 1, N'J. C. Fogerty', 129358, 4270414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (685, N'Who''ll Stop The Rain', 54, 1, 1, N'J. C. Fogerty', 149394, 4899579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (686, N'Up Around The Bend', 54, 1, 1, N'J. C. Fogerty', 162429, 5368701, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (687, N'Run Through The Jungle', 54, 1, 1, N'J. C. Fogerty', 186044, 6156567, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (688, N'Lookin'' Out My Back Door', 54, 1, 1, N'J. C. Fogerty', 152946, 5034670, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (689, N'Long As I Can See The Light', 54, 1, 1, N'J. C. Fogerty', 213237, 6924024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (690, N'I Heard It Through The Grapevine', 54, 1, 1, N'Whitfield-Strong', 664894, 21947845, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (691, N'Have You Ever Seen The Rain?', 54, 1, 1, N'J. C. Fogerty', 160052, 5263675, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (692, N'Hey Tonight', 54, 1, 1, N'J. C. Fogerty', 162847, 5343807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (693, N'Sweet Hitch-Hiker', 54, 1, 1, N'J. C. Fogerty', 175490, 5716603, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (694, N'Someday Never Comes', 54, 1, 1, N'J. C. Fogerty', 239360, 7945235, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (695, N'Walking On The Water', 55, 1, 1, N'J.C. Fogerty', 281286, 9302129, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (696, N'Suzie-Q, Pt. 2', 55, 1, 1, N'J.C. Fogerty', 244114, 7986637, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (697, N'Born On The Bayou', 55, 1, 1, N'J.C. Fogerty', 316630, 10361866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (698, N'Good Golly Miss Molly', 55, 1, 1, N'J.C. Fogerty', 163604, 5348175, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (699, N'Tombstone Shadow', 55, 1, 1, N'J.C. Fogerty', 218880, 7209080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (700, N'Wrote A Song For Everyone', 55, 1, 1, N'J.C. Fogerty', 296385, 9675875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (701, N'Night Time Is The Right Time', 55, 1, 1, N'J.C. Fogerty', 190119, 6211173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (702, N'Cotton Fields', 55, 1, 1, N'J.C. Fogerty', 178181, 5919224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (703, N'It Came Out Of The Sky', 55, 1, 1, N'J.C. Fogerty', 176718, 5807474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (704, N'Don''t Look Now', 55, 1, 1, N'J.C. Fogerty', 131918, 4366455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (705, N'The Midnight Special', 55, 1, 1, N'J.C. Fogerty', 253596, 8297482, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (706, N'Before You Accuse Me', 55, 1, 1, N'J.C. Fogerty', 207804, 6815126, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (707, N'My Baby Left Me', 55, 1, 1, N'J.C. Fogerty', 140460, 4633440, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (708, N'Pagan Baby', 55, 1, 1, N'J.C. Fogerty', 385619, 12713813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (709, N'(Wish I Could) Hideaway', 55, 1, 1, N'J.C. Fogerty', 228466, 7432978, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (710, N'It''s Just A Thought', 55, 1, 1, N'J.C. Fogerty', 237374, 7778319, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (711, N'Molina', 55, 1, 1, N'J.C. Fogerty', 163239, 5390811, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (712, N'Born To Move', 55, 1, 1, N'J.C. Fogerty', 342804, 11260814, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (713, N'Lookin'' For A Reason', 55, 1, 1, N'J.C. Fogerty', 209789, 6933135, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (714, N'Hello Mary Lou', 55, 1, 1, N'J.C. Fogerty', 132832, 4476563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (715, N'Gatas Extraordinárias', 56, 1, 7, 212506, 7095702, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (716, N'Brasil', 56, 1, 7, 243696, 7911683, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (717, N'Eu Sou Neguinha (Ao Vivo)', 56, 1, 7, 251768, 8376000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (718, N'Geração Coca-Cola (Ao Vivo)', 56, 1, 7, 228153, 7573301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (719, N'Lanterna Dos Afogados', 56, 1, 7, 204538, 6714582, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (720, N'Coroné Antonio Bento', 56, 1, 7, 200437, 6713066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (721, N'Você Passa, Eu Acho Graça (Ao Vivo)', 56, 1, 7, 206733, 6943576, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (722, N'Meu Mundo Fica Completo (Com Você)', 56, 1, 7, 247771, 8322240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (723, N'1° De Julho', 56, 1, 7, 270262, 9017535, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (724, N'Música Urbana 2', 56, 1, 7, 194899, 6383472, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (725, N'Vida Bandida (Ao Vivo)', 56, 1, 7, 192626, 6360785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (726, N'Palavras Ao Vento', 56, 1, 7, 212453, 7048676, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (727, N'Não Sei O Que Eu Quero Da Vida', 56, 1, 7, 151849, 5024963, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (728, N'Woman Is The Nigger Of The World (Ao Vivo)', 56, 1, 7, 298919, 9724145, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (729, N'Juventude Transviada (Ao Vivo)', 56, 1, 7, 278622, 9183808, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (730, N'Malandragem', 57, 1, 7, 247588, 8165048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (731, N'O Segundo Sol', 57, 1, 7, 252133, 8335629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (732, N'Smells Like Teen Spirit (Ao Vivo)', 57, 1, 7, 316865, 10384506, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (733, N'E.C.T.', 57, 1, 7, 227500, 7571834, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (734, N'Todo Amor Que Houver Nesta Vida', 57, 1, 7, 227160, 7420347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (735, N'Metrô. Linha 743', 57, 1, 7, 174654, 5837495, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (736, N'Nós (Ao Vivo)', 57, 1, 7, 193828, 6498661, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (737, N'Na Cadência Do Samba', 57, 1, 7, 196075, 6483952, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (738, N'Admirável Gado Novo', 57, 1, 7, 274390, 9144031, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (739, N'Eleanor Rigby', 57, 1, 7, 189466, 6303205, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (740, N'Socorro', 57, 1, 7, 258586, 8549393, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (741, N'Blues Da Piedade', 57, 1, 7, 257123, 8472964, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (742, N'Rubens', 57, 1, 7, 211853, 7026317, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (743, N'Não Deixe O Samba Morrer - Cassia Eller e Alcione', 57, 1, 7, 268173, 8936345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (744, N'Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)', 57, 1, 7, 188473, 6195854, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (745, N'Comin'' Home', 58, 1, 1, N'Bolin/Coverdale/Paice', 235781, 7644604, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (746, N'Lady Luck', 58, 1, 1, N'Cook/Coverdale', 168202, 5501379, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (747, N'Gettin'' Tighter', 58, 1, 1, N'Bolin/Hughes', 218044, 7176909, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (748, N'Dealer', 58, 1, 1, N'Bolin/Coverdale', 230922, 7591066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (749, N'I Need Love', 58, 1, 1, N'Bolin/Coverdale', 263836, 8701064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (750, N'Drifter', 58, 1, 1, N'Bolin/Coverdale', 242834, 8001505, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (751, N'Love Child', 58, 1, 1, N'Bolin/Coverdale', 188160, 6173806, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (752, N'This Time Around / Owed to ''G'' [Instrumental]', 58, 1, 1, N'Bolin/Hughes/Lord', 370102, 11995679, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (753, N'You Keep On Moving', 58, 1, 1, N'Coverdale/Hughes', 319111, 10447868, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (754, N'Speed King', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 264385, 8587578, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (755, N'Bloodsucker', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 256261, 8344405, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (756, N'Child In Time', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 620460, 20230089, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (757, N'Flight Of The Rat', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 478302, 15563967, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (758, N'Into The Fire', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 210259, 6849310, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (759, N'Living Wreck', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 274886, 8993056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (760, N'Hard Lovin'' Man', 59, 1, 1, N'Blackmore, Gillan, Glover, Lord, Paice', 431203, 13931179, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (761, N'Fireball', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 204721, 6714807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (762, N'No No No', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 414902, 13646606, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (763, N'Strange Kind Of Woman', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 247092, 8072036, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (764, N'Anyone''s Daughter', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 284682, 9354480, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (765, N'The Mule', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 322063, 10638390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (766, N'Fools', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 500427, 16279366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (767, N'No One Came', 60, 1, 1, N'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 385880, 12643813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (768, N'Knocking At Your Back Door', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover', 424829, 13779332, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (769, N'Bad Attitude', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 307905, 10035180, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (770, N'Child In Time (Son Of Aleric - Instrumental)', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 602880, 19712753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (771, N'Nobody''s Home', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 243017, 7929493, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (772, N'Black Night', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 368770, 12058906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (773, N'Perfect Strangers', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover', 321149, 10445353, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (774, N'The Unwritten Law', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice', 295053, 9740361, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (775, N'Call Of The Wild', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 293851, 9575295, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (776, N'Hush', 61, 1, 1, N'South', 213054, 6944928, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (777, N'Smoke On The Water', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 464378, 15180849, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (778, N'Space Trucking', 61, 1, 1, N'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 341185, 11122183, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (779, N'Highway Star', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 368770, 12012452, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (780, N'Maybe I''m A Leo', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 290455, 9502646, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (781, N'Pictures Of Home', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 303777, 9903835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (782, N'Never Before', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 239830, 7832790, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (783, N'Smoke On The Water', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 340871, 11246496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (784, N'Lazy', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 442096, 14397671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (785, N'Space Truckin''', 62, 1, 1, N'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 272796, 8981030, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (786, N'Vavoom : Ted The Mechanic', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 257384, 8510755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (787, N'Loosen My Strings', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 359680, 11702232, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (788, N'Soon Forgotten', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 287791, 9401383, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (789, N'Sometimes I Feel Like Screaming', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 451840, 14789410, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (790, N'Cascades : I''m Not Your Lover', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283689, 9209693, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (791, N'The Aviator', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 320992, 10532053, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (792, N'Rosa''s Cantina', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 312372, 10323804, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (793, N'A Castle Full Of Rascals', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 311693, 10159566, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (794, N'A Touch Away', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 276323, 9098561, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (795, N'Hey Cisco', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 354089, 11600029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (796, N'Somebody Stole My Guitar', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 249443, 8180421, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (797, N'The Purpendicular Waltz', 63, 1, 1, N'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283924, 9299131, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (798, N'King Of Dreams', 64, 1, 1, N'Blackmore, Glover, Turner', 328385, 10733847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (799, N'The Cut Runs Deep', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 342752, 11191650, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (800, N'Fire In The Basement', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 283977, 9267550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (801, N'Truth Hurts', 64, 1, 1, N'Blackmore, Glover, Turner', 314827, 10224612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (802, N'Breakfast In Bed', 64, 1, 1, N'Blackmore, Glover, Turner', 317126, 10323804, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (803, N'Love Conquers All', 64, 1, 1, N'Blackmore, Glover, Turner', 227186, 7328516, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (804, N'Fortuneteller', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 349335, 11369671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (805, N'Too Much Is Not Enough', 64, 1, 1, N'Turner, Held, Greenwood', 257724, 8382800, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (806, N'Wicked Ways', 64, 1, 1, N'Blackmore, Glover, Turner, Lord, Paice', 393691, 12826582, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (807, N'Stormbringer', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 246413, 8044864, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (808, N'Love Don''t Mean a Thing', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 263862, 8675026, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (809, N'Holy Man', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord', 270236, 8818093, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (810, N'Hold On', 65, 1, 1, N'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord', 306860, 10022428, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (811, N'Lady Double Dealer', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 201482, 6554330, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (812, N'You Can''t Do it Right (With the One You Love)', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore', 203755, 6709579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (813, N'High Ball Shooter', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 267833, 8772471, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (814, N'The Gypsy', 65, 1, 1, N'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 242886, 7946614, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (815, N'Soldier Of Fortune', 65, 1, 1, N'D.Coverdale/R.Blackmore/Ritchie Blackmore', 193750, 6315321, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (816, N'The Battle Rages On', 66, 1, 1, N'ian paice/jon lord', 356963, 11626228, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (817, N'Lick It Up', 66, 1, 1, N'roger glover', 240274, 7792604, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (818, N'Anya', 66, 1, 1, N'jon lord/roger glover', 392437, 12754921, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (819, N'Talk About Love', 66, 1, 1, N'roger glover', 247823, 8072171, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (820, N'Time To Kill', 66, 1, 1, N'roger glover', 351033, 11354742, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (821, N'Ramshackle Man', 66, 1, 1, N'roger glover', 334445, 10874679, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (822, N'A Twist In The Tail', 66, 1, 1, N'roger glover', 257462, 8413103, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (823, N'Nasty Piece Of Work', 66, 1, 1, N'jon lord/roger glover', 276662, 9076997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (824, N'Solitaire', 66, 1, 1, N'roger glover', 282226, 9157021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (825, N'One Man''s Meat', 66, 1, 1, N'roger glover', 278804, 9068960, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (826, N'Pour Some Sugar On Me', 67, 1, 1, 292519, 9518842, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (827, N'Photograph', 67, 1, 1, 248633, 8108507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (828, N'Love Bites', 67, 1, 1, 346853, 11305791, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (829, N'Let''s Get Rocked', 67, 1, 1, 296019, 9724150, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (830, N'Two Steps Behind [Acoustic Version]', 67, 1, 1, 259787, 8523388, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (831, N'Animal', 67, 1, 1, 244741, 7985133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (832, N'Heaven Is', 67, 1, 1, 214021, 6988128, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (833, N'Rocket', 67, 1, 1, 247248, 8092463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (834, N'When Love & Hate Collide', 67, 1, 1, 257280, 8364633, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (835, N'Action', 67, 1, 1, 220604, 7130830, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (836, N'Make Love Like A Man', 67, 1, 1, 255660, 8309725, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (837, N'Armageddon It', 67, 1, 1, 322455, 10522352, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (838, N'Have You Ever Needed Someone So Bad', 67, 1, 1, 319320, 10400020, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (839, N'Rock Of Ages', 67, 1, 1, 248424, 8150318, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (840, N'Hysteria', 67, 1, 1, 355056, 11622738, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (841, N'Bringin'' On The Heartbreak', 67, 1, 1, 272457, 8853324, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (842, N'Roll Call', 68, 1, 2, N'Jim Beard', 321358, 10653494, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (843, N'Otay', 68, 1, 2, N'John Scofield, Robert Aries, Milton Chambers and Gary Grainger', 423653, 14176083, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (844, N'Groovus Interruptus', 68, 1, 2, N'Jim Beard', 319373, 10602166, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (845, N'Paris On Mine', 68, 1, 2, N'Jon Herington', 368875, 12059507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (846, N'In Time', 68, 1, 2, N'Sylvester Stewart', 368953, 12287103, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (847, N'Plan B', 68, 1, 2, N'Dean Brown, Dennis Chambers & Jim Beard', 272039, 9032315, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (848, N'Outbreak', 68, 1, 2, N'Jim Beard & Jon Herington', 659226, 21685807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (849, N'Baltimore, DC', 68, 1, 2, N'John Scofield', 346932, 11394473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (850, N'Talkin Loud and Saying Nothin', 68, 1, 2, N'James Brown & Bobby Byrd', 360411, 11994859, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (851, N'Pétala', 69, 1, 7, 270080, 8856165, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (852, N'Meu Bem-Querer', 69, 1, 7, 255608, 8330047, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (853, N'Cigano', 69, 1, 7, 304692, 10037362, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (854, N'Boa Noite', 69, 1, 7, 338755, 11283582, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (855, N'Fato Consumado', 69, 1, 7, 211565, 7018586, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (856, N'Faltando Um Pedaço', 69, 1, 7, 267728, 8788760, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (857, N'Álibi', 69, 1, 7, 213237, 6928434, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (858, N'Esquinas', 69, 1, 7, 280999, 9096726, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (859, N'Se...', 69, 1, 7, 286432, 9413777, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (860, N'Eu Te Devoro', 69, 1, 7, 311614, 10312775, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (861, N'Lilás', 69, 1, 7, 274181, 9049542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (862, N'Acelerou', 69, 1, 7, 284081, 9396942, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (863, N'Um Amor Puro', 69, 1, 7, 327784, 10687311, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (864, N'Samurai', 70, 1, 7, N'Djavan', 330997, 10872787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (865, N'Nem Um Dia', 70, 1, 7, N'Djavan', 337423, 11181446, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (866, N'Oceano', 70, 1, 7, N'Djavan', 217338, 7026441, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (867, N'Açai', 70, 1, 7, N'Djavan', 270968, 8893682, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (868, N'Serrado', 70, 1, 7, N'Djavan', 295314, 9842240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (869, N'Flor De Lis', 70, 1, 7, N'Djavan', 236355, 7801108, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (870, N'Amar É Tudo', 70, 1, 7, N'Djavan', 211617, 7073899, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (871, N'Azul', 70, 1, 7, N'Djavan', 253962, 8381029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (872, N'Seduzir', 70, 1, 7, N'Djavan', 277524, 9163253, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (873, N'A Carta', 70, 1, 7, N'Djavan - Gabriel, O Pensador', 347297, 11493463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (874, N'Sina', 70, 1, 7, N'Djavan', 268173, 8906539, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (875, N'Acelerou', 70, 1, 7, N'Djavan', 284133, 9391439, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (876, N'Um Amor Puro', 70, 1, 7, N'Djavan', 327105, 10664698, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (877, N'O Bêbado e a Equilibrista', 71, 1, 7, 223059, 7306143, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (878, N'O Mestre-Sala dos Mares', 71, 1, 7, 186226, 6180414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (879, N'Atrás da Porta', 71, 1, 7, 166608, 5432518, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (880, N'Dois Pra Lá, Dois Pra Cá', 71, 1, 7, 263026, 8684639, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (881, N'Casa no Campo', 71, 1, 7, 170788, 5531841, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (882, N'Romaria', 71, 1, 7, 242834, 7968525, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (883, N'Alô, Alô, Marciano', 71, 1, 7, 241397, 8137254, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (884, N'Me Deixas Louca', 71, 1, 7, 214831, 6888030, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (885, N'Fascinação', 71, 1, 7, 180793, 5793959, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (886, N'Saudosa Maloca', 71, 1, 7, 278125, 9059416, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (887, N'As Aparências Enganam', 71, 1, 7, 247379, 8014346, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (888, N'Madalena', 71, 1, 7, 157387, 5243721, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (889, N'Maria Rosa', 71, 1, 7, 232803, 7592504, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (890, N'Aprendendo A Jogar', 71, 1, 7, 290664, 9391041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (891, N'Layla', 72, 1, 6, N'Clapton/Gordon', 430733, 14115792, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (892, N'Badge', 72, 1, 6, N'Clapton/Harrison', 163552, 5322942, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (893, N'I Feel Free', 72, 1, 6, N'Bruce/Clapton', 174576, 5725684, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (894, N'Sunshine Of Your Love', 72, 1, 6, N'Bruce/Clapton', 252891, 8225889, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (895, N'Crossroads', 72, 1, 6, N'Clapton/Robert Johnson Arr: Eric Clapton', 253335, 8273540, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (896, N'Strange Brew', 72, 1, 6, N'Clapton/Collins/Pappalardi', 167810, 5489787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (897, N'White Room', 72, 1, 6, N'Bruce/Clapton', 301583, 9872606, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (898, N'Bell Bottom Blues', 72, 1, 6, N'Clapton', 304744, 9946681, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (899, N'Cocaine', 72, 1, 6, N'Cale/Clapton', 215928, 7138399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (900, N'I Shot The Sheriff', 72, 1, 6, N'Marley', 263862, 8738973, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (901, N'After Midnight', 72, 1, 6, N'Clapton/J. J. Cale', 191320, 6460941, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (902, N'Swing Low Sweet Chariot', 72, 1, 6, N'Clapton/Trad. Arr. Clapton', 208143, 6896288, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (903, N'Lay Down Sally', 72, 1, 6, N'Clapton/Levy', 231732, 7774207, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (904, N'Knockin On Heavens Door', 72, 1, 6, N'Clapton/Dylan', 264411, 8758819, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (905, N'Wonderful Tonight', 72, 1, 6, N'Clapton', 221387, 7326923, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (906, N'Let It Grow', 72, 1, 6, N'Clapton', 297064, 9742568, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (907, N'Promises', 72, 1, 6, N'Clapton/F.eldman/Linn', 180401, 6006154, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (908, N'I Can''t Stand It', 72, 1, 6, N'Clapton', 249730, 8271980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (909, N'Signe', 73, 1, 6, N'Eric Clapton', 193515, 6475042, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (910, N'Before You Accuse Me', 73, 1, 6, N'Eugene McDaniel', 224339, 7456807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (911, N'Hey Hey', 73, 1, 6, N'Big Bill Broonzy', 196466, 6543487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (912, N'Tears In Heaven', 73, 1, 6, N'Eric Clapton, Will Jennings', 274729, 9032835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (913, N'Lonely Stranger', 73, 1, 6, N'Eric Clapton', 328724, 10894406, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (914, N'Nobody Knows You When You''re Down & Out', 73, 1, 6, N'Jimmy Cox', 231836, 7669922, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (915, N'Layla', 73, 1, 6, N'Eric Clapton, Jim Gordon', 285387, 9490542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (916, N'Running On Faith', 73, 1, 6, N'Jerry Lynn Williams', 378984, 12536275, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (917, N'Walkin'' Blues', 73, 1, 6, N'Robert Johnson', 226429, 7435192, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (918, N'Alberta', 73, 1, 6, N'Traditional', 222406, 7412975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (919, N'San Francisco Bay Blues', 73, 1, 6, N'Jesse Fuller', 203363, 6724021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (920, N'Malted Milk', 73, 1, 6, N'Robert Johnson', 216528, 7096781, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (921, N'Old Love', 73, 1, 6, N'Eric Clapton, Robert Cray', 472920, 15780747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (922, N'Rollin'' And Tumblin''', 73, 1, 6, N'McKinley Morgenfield (Muddy Waters)', 251768, 8407355, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (923, N'Collision', 74, 1, 4, N'Jon Hudson/Mike Patton', 204303, 6656596, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (924, N'Stripsearch', 74, 1, 4, N'Jon Hudson/Mike Bordin/Mike Patton', 270106, 8861119, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (925, N'Last Cup Of Sorrow', 74, 1, 4, N'Bill Gould/Mike Patton', 251663, 8221247, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (926, N'Naked In Front Of The Computer', 74, 1, 4, N'Mike Patton', 128757, 4225077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (927, N'Helpless', 74, 1, 4, N'Bill Gould/Mike Bordin/Mike Patton', 326217, 10753135, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (928, N'Mouth To Mouth', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton', 228493, 7505887, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (929, N'Ashes To Ashes', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 217391, 7093746, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (930, N'She Loves Me Not', 74, 1, 4, N'Bill Gould/Mike Bordin/Mike Patton', 209867, 6887544, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (931, N'Got That Feeling', 74, 1, 4, N'Mike Patton', 140852, 4643227, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (932, N'Paths Of Glory', 74, 1, 4, N'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 257253, 8436300, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (933, N'Home Sick Home', 74, 1, 4, N'Mike Patton', 119040, 3898976, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (934, N'Pristina', 74, 1, 4, N'Bill Gould/Mike Patton', 232698, 7497361, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (935, N'Land Of Sunshine', 75, 1, 4, 223921, 7353567, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (936, N'Caffeine', 75, 1, 4, 267937, 8747367, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (937, N'Midlife Crisis', 75, 1, 4, 263235, 8628841, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (938, N'RV', 75, 1, 4, 223242, 7288162, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (939, N'Smaller And Smaller', 75, 1, 4, 310831, 10180103, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (940, N'Everything''s Ruined', 75, 1, 4, 273658, 9010917, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (941, N'Malpractice', 75, 1, 4, 241371, 7900683, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (942, N'Kindergarten', 75, 1, 4, 270680, 8853647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (943, N'Be Aggressive', 75, 1, 4, 222432, 7298027, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (944, N'A Small Victory', 75, 1, 4, 297168, 9733572, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (945, N'Crack Hitler', 75, 1, 4, 279144, 9162435, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (946, N'Jizzlobber', 75, 1, 4, 398341, 12926140, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (947, N'Midnight Cowboy', 75, 1, 4, 251924, 8242626, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (948, N'Easy', 75, 1, 4, 185835, 6073008, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (949, N'Get Out', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 137482, 4524972, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (950, N'Ricochet', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 269400, 8808812, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (951, N'Evidence', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 293590, 9626136, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (952, N'The Gentle Art Of Making Enemies', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 209319, 6908609, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (953, N'Star A.D.', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 203807, 6747658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (954, N'Cuckoo For Caca', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 222902, 7388369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (955, N'Caralho Voador', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 242102, 8029054, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (956, N'Ugly In The Morning', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 186435, 6224997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (957, N'Digging The Grave', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 185129, 6109259, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (958, N'Take This Bottle', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 298997, 9779971, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (959, N'King For A Day', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 395859, 13163733, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (960, N'What A Day', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 158275, 5203430, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (961, N'The Last To Know', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 267833, 8736776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (962, N'Just A Man', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 336666, 11031254, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (963, N'Absolute Zero', 76, 1, 1, N'Mike Bordin, Billy Gould, Mike Patton', 181995, 5929427, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (964, N'From Out Of Nowhere', 77, 1, 4, N'Faith No More', 202527, 6587802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (965, N'Epic', 77, 1, 4, N'Faith No More', 294008, 9631296, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (966, N'Falling To Pieces', 77, 1, 4, N'Faith No More', 316055, 10333123, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (967, N'Surprise! You''re Dead!', 77, 1, 4, N'Faith No More', 147226, 4823036, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (968, N'Zombie Eaters', 77, 1, 4, N'Faith No More', 360881, 11835367, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (969, N'The Real Thing', 77, 1, 4, N'Faith No More', 493635, 16233080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (970, N'Underwater Love', 77, 1, 4, N'Faith No More', 231993, 7634387, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (971, N'The Morning After', 77, 1, 4, N'Faith No More', 223764, 7355898, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (972, N'Woodpecker From Mars', 77, 1, 4, N'Faith No More', 340532, 11174250, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (973, N'War Pigs', 77, 1, 4, N'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 464770, 15267802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (974, N'Edge Of The World', 77, 1, 4, N'Faith No More', 250357, 8235607, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (975, N'Deixa Entrar', 78, 1, 7, 33619, 1095012, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (976, N'Falamansa Song', 78, 1, 7, 237165, 7921313, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (977, N'Xote Dos Milagres', 78, 1, 7, 269557, 8897778, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (978, N'Rindo À Toa', 78, 1, 7, 222066, 7365321, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (979, N'Confidência', 78, 1, 7, 222197, 7460829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (980, N'Forró De Tóquio', 78, 1, 7, 169273, 5588756, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (981, N'Zeca Violeiro', 78, 1, 7, 143673, 4781949, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (982, N'Avisa', 78, 1, 7, 355030, 11844320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (983, N'Principiando/Decolagem', 78, 1, 7, 116767, 3923789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (984, N'Asas', 78, 1, 7, 231915, 7711669, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (985, N'Medo De Escuro', 78, 1, 7, 213760, 7056323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (986, N'Oração', 78, 1, 7, 271072, 9003882, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (987, N'Minha Gata', 78, 1, 7, 181838, 6039502, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (988, N'Desaforo', 78, 1, 7, 174524, 5853561, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (989, N'In Your Honor', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 230191, 7468463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (990, N'No Way Back', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 196675, 6421400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (991, N'Best Of You', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 255712, 8363467, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (992, N'DOA', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 252186, 8232342, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (993, N'Hell', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 117080, 3819255, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (994, N'The Last Song', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 199523, 6496742, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (995, N'Free Me', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 278700, 9109340, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (996, N'Resolve', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 288731, 9416186, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (997, N'The Deepest Blues Are Black', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 238419, 7735473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (998, N'End Over End', 79, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 352078, 11395296, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (999, N'Still', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 313182, 10323157, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1000, N'What If I Do?', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 302994, 9929799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1001, N'Miracle', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 209684, 6877994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1002, N'Another Round', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 265848, 8752670, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1003, N'Friend Of A Friend', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 193280, 6355088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1004, N'Over And Out', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 316264, 10428382, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1005, N'On The Mend', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 271908, 9071997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1006, N'Virginia Moon', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 229198, 7494639, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1007, N'Cold Day In The Sun', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 200724, 6596617, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1008, N'Razor', 80, 1, 1, N'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 293276, 9721373, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1009, N'All My Life', 81, 1, 4, N'Foo Fighters', 263653, 8665545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1010, N'Low', 81, 1, 4, N'Foo Fighters', 268120, 8847196, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1011, N'Have It All', 81, 1, 4, N'Foo Fighters', 298057, 9729292, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1012, N'Times Like These', 81, 1, 4, N'Foo Fighters', 266370, 8624691, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1013, N'Disenchanted Lullaby', 81, 1, 4, N'Foo Fighters', 273528, 8919111, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1014, N'Tired Of You', 81, 1, 4, N'Foo Fighters', 311353, 10094743, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1015, N'Halo', 81, 1, 4, N'Foo Fighters', 306442, 10026371, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1016, N'Lonely As You', 81, 1, 4, N'Foo Fighters', 277185, 9022628, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1017, N'Overdrive', 81, 1, 4, N'Foo Fighters', 270550, 8793187, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1018, N'Burn Away', 81, 1, 4, N'Foo Fighters', 298396, 9678073, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1019, N'Come Back', 81, 1, 4, N'Foo Fighters', 469968, 15371980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1020, N'Doll', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 83487, 2702572, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1021, N'Monkey Wrench', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 231523, 7527531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1022, N'Hey, Johnny Park!', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 248528, 8079480, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1023, N'My Poor Brain', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 213446, 6973746, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1024, N'Wind Up', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 152163, 4950667, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1025, N'Up In Arms', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 135732, 4406227, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1026, N'My Hero', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 260101, 8472365, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1027, N'See You', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 146782, 4888173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1028, N'Enough Space', 82, 1, 1, N'Dave Grohl', 157387, 5169280, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1029, N'February Stars', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 289306, 9344875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1030, N'Everlong', 82, 1, 1, N'Dave Grohl', 250749, 8270816, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1031, N'Walking After You', 82, 1, 1, N'Dave Grohl', 303856, 9898992, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1032, N'New Way Home', 82, 1, 1, N'Dave, Taylor, Nate, Chris', 342230, 11205664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1033, N'My Way', 83, 1, 12, N'claude françois/gilles thibault/jacques revaux/paul anka', 275879, 8928684, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1034, N'Strangers In The Night', 83, 1, 12, N'berthold kaempfert/charles singleton/eddie snyder', 155794, 5055295, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1035, N'New York, New York', 83, 1, 12, N'fred ebb/john kander', 206001, 6707993, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1036, N'I Get A Kick Out Of You', 83, 1, 12, N'cole porter', 194429, 6332441, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1037, N'Something Stupid', 83, 1, 12, N'carson c. parks', 158615, 5210643, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1038, N'Moon River', 83, 1, 12, N'henry mancini/johnny mercer', 198922, 6395808, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1039, N'What Now My Love', 83, 1, 12, N'carl sigman/gilbert becaud/pierre leroyer', 149995, 4913383, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1040, N'Summer Love', 83, 1, 12, N'hans bradtke/heinz meier/johnny mercer', 174994, 5693242, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1041, N'For Once In My Life', 83, 1, 12, N'orlando murden/ronald miller', 171154, 5557537, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1042, N'Love And Marriage', 83, 1, 12, N'jimmy van heusen/sammy cahn', 89730, 2930596, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1043, N'They Can''t Take That Away From Me', 83, 1, 12, N'george gershwin/ira gershwin', 161227, 5240043, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1044, N'My Kind Of Town', 83, 1, 12, N'jimmy van heusen/sammy cahn', 188499, 6119915, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1045, N'Fly Me To The Moon', 83, 1, 12, N'bart howard', 149263, 4856954, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1046, N'I''ve Got You Under My Skin', 83, 1, 12, N'cole porter', 210808, 6883787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1047, N'The Best Is Yet To Come', 83, 1, 12, N'carolyn leigh/cy coleman', 173583, 5633730, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1048, N'It Was A Very Good Year', 83, 1, 12, N'ervin drake', 266605, 8554066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1049, N'Come Fly With Me', 83, 1, 12, N'jimmy van heusen/sammy cahn', 190458, 6231029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1050, N'That''s Life', 83, 1, 12, N'dean kay thompson/kelly gordon', 187010, 6095727, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1051, N'The Girl From Ipanema', 83, 1, 12, N'antonio carlos jobim/norman gimbel/vinicius de moraes', 193750, 6410674, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1052, N'The Lady Is A Tramp', 83, 1, 12, N'lorenz hart/richard rodgers', 184111, 5987372, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1053, N'Bad, Bad Leroy Brown', 83, 1, 12, N'jim croce', 169900, 5548581, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1054, N'Mack The Knife', 83, 1, 12, N'bert brecht/kurt weill/marc blitzstein', 292075, 9541052, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1055, N'Loves Been Good To Me', 83, 1, 12, N'rod mckuen', 203964, 6645365, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1056, N'L.A. Is My Lady', 83, 1, 12, N'alan bergman/marilyn bergman/peggy lipton jones/quincy jones', 193175, 6378511, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1057, N'Entrando Na Sua (Intro)', 84, 1, 7, 179252, 5840027, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1058, N'Nervosa', 84, 1, 7, 229537, 7680421, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1059, N'Funk De Bamba (Com Fernanda Abreu)', 84, 1, 7, 237191, 7866165, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1060, N'Call Me At Cleo´s', 84, 1, 7, 236617, 7920510, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1061, N'Olhos Coloridos (Com Sandra De Sá)', 84, 1, 7, 321332, 10567404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1062, N'Zambação', 84, 1, 7, 301113, 10030604, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1063, N'Funk Hum', 84, 1, 7, 244453, 8084475, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1064, N'Forty Days (Com DJ Hum)', 84, 1, 7, 221727, 7347172, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1065, N'Balada Da Paula', 84, 1, 7, N'Emerson Villani', 322821, 10603717, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1066, N'Dujji', 84, 1, 7, 324597, 10833935, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1067, N'Meu Guarda-Chuva', 84, 1, 7, 248528, 8216625, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1068, N'Motéis', 84, 1, 7, 213498, 7041077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1069, N'Whistle Stop', 84, 1, 7, 526132, 17533664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1070, N'16 Toneladas', 84, 1, 7, 191634, 6390885, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1071, N'Divirta-Se (Saindo Da Sua)', 84, 1, 7, 74919, 2439206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1072, N'Forty Days Instrumental', 84, 1, 7, 292493, 9584317, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1073, N'Óia Eu Aqui De Novo', 85, 1, 10, 219454, 7469735, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1074, N'Baião Da Penha', 85, 1, 10, 247928, 8393047, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1075, N'Esperando Na Janela', 85, 1, 10, N'Manuca/Raimundinho DoAcordion/Targino Godim', 261041, 8660617, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1076, N'Juazeiro', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 222275, 7349779, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1077, N'Último Pau-De-Arara', 85, 1, 10, N'Corumbá/José Gumarães/Venancio', 200437, 6638563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1078, N'Asa Branca', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 217051, 7387183, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1079, N'Qui Nem Jiló', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 204695, 6937472, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1080, N'Assum Preto', 85, 1, 10, N'Humberto Teixeira/Luiz Gonzaga', 199653, 6625000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1081, N'Pau-De-Arara', 85, 1, 10, N'Guio De Morais E Seus "Parentes"/Luiz Gonzaga', 191660, 6340649, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1082, N'A Volta Da Asa Branca', 85, 1, 10, N'Luiz Gonzaga/Zé Dantas', 271020, 9098093, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1083, N'O Amor Daqui De Casa', 85, 1, 10, N'Gilberto Gil', 148636, 4888292, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1084, N'As Pegadas Do Amor', 85, 1, 10, N'Gilberto Gil', 209136, 6899062, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1085, N'Lamento Sertanejo', 85, 1, 10, N'Dominguinhos/Gilberto Gil', 260963, 8518290, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1086, N'Casinha Feliz', 85, 1, 10, N'Gilberto Gil', 32287, 1039615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1087, N'Introdução (Live)', 86, 1, 7, 154096, 5227579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1088, N'Palco (Live)', 86, 1, 7, 238315, 8026622, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1089, N'Is This Love (Live)', 86, 1, 7, 295262, 9819759, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1090, N'Stir It Up (Live)', 86, 1, 7, 282409, 9594738, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1091, N'Refavela (Live)', 86, 1, 7, 236695, 7985305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1092, N'Vendedor De Caranguejo (Live)', 86, 1, 7, 248842, 8358128, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1093, N'Quanta (Live)', 86, 1, 7, 357485, 11774865, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1094, N'Estrela (Live)', 86, 1, 7, 285309, 9436411, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1095, N'Pela Internet (Live)', 86, 1, 7, 263471, 8804401, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1096, N'Cérebro Eletrônico (Live)', 86, 1, 7, 231627, 7805352, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1097, N'Opachorô (Live)', 86, 1, 7, 259526, 8596384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1098, N'Copacabana (Live)', 86, 1, 7, 289671, 9673672, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1099, N'A Novidade (Live)', 86, 1, 7, 316969, 10508000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1100, N'Ghandi (Live)', 86, 1, 7, 222458, 7481950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1101, N'De Ouro E Marfim (Live)', 86, 1, 7, 234971, 7838453, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1102, N'Doce De Carnaval (Candy All)', 87, 1, 2, 356101, 11998470, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1103, N'Lamento De Carnaval', 87, 1, 2, 294530, 9819276, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1104, N'Pretinha', 87, 1, 2, 265273, 8914579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1105, N'A Novidade', 73, 1, 7, N'Gilberto Gil', 324780, 10765600, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1106, N'Tenho Sede', 73, 1, 7, N'Gilberto Gil', 261616, 8708114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1107, N'Refazenda', 73, 1, 7, N'Gilberto Gil', 218305, 7237784, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1108, N'Realce', 73, 1, 7, N'Gilberto Gil', 264489, 8847612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1109, N'Esotérico', 73, 1, 7, N'Gilberto Gil', 317779, 10530533, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1110, N'Drão', 73, 1, 7, N'Gilberto Gil', 301453, 9931950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1111, N'A Paz', 73, 1, 7, N'Gilberto Gil', 293093, 9593064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1112, N'Beira Mar', 73, 1, 7, N'Gilberto Gil', 295444, 9597994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1113, N'Sampa', 73, 1, 7, N'Gilberto Gil', 225697, 7469905, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1114, N'Parabolicamará', 73, 1, 7, N'Gilberto Gil', 284943, 9543435, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1115, N'Tempo Rei', 73, 1, 7, N'Gilberto Gil', 302733, 10019269, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1116, N'Expresso 2222', 73, 1, 7, N'Gilberto Gil', 284760, 9690577, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1117, N'Aquele Abraço', 73, 1, 7, N'Gilberto Gil', 263993, 8805003, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1118, N'Palco', 73, 1, 7, N'Gilberto Gil', 270550, 9049901, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1119, N'Toda Menina Baiana', 73, 1, 7, N'Gilberto Gil', 278177, 9351000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1120, N'Sítio Do Pica-Pau Amarelo', 73, 1, 7, N'Gilberto Gil', 218070, 7217955, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1121, N'Straight Out Of Line', 88, 1, 3, N'Sully Erna', 259213, 8511877, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1122, N'Faceless', 88, 1, 3, N'Sully Erna', 216006, 6992417, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1123, N'Changes', 88, 1, 3, N'Sully Erna; Tony Rombola', 260022, 8455835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1124, N'Make Me Believe', 88, 1, 3, N'Sully Erna', 248607, 8075050, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1125, N'I Stand Alone', 88, 1, 3, N'Sully Erna', 246125, 8017041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1126, N'Re-Align', 88, 1, 3, N'Sully Erna', 260884, 8513891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1127, N'I Fucking Hate You', 88, 1, 3, N'Sully Erna', 247170, 8059642, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1128, N'Releasing The Demons', 88, 1, 3, N'Sully Erna', 252760, 8276372, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1129, N'Dead And Broken', 88, 1, 3, N'Sully Erna', 251454, 8206611, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1130, N'I Am', 88, 1, 3, N'Sully Erna', 239516, 7803270, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1131, N'The Awakening', 88, 1, 3, N'Sully Erna', 89547, 3035251, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1132, N'Serenity', 88, 1, 3, N'Sully Erna; Tony Rombola', 274834, 9172976, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1133, N'American Idiot', 89, 1, 4, N'Billie Joe Armstrong, Mike Dirnt, Tré Cool', 174419, 5705793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1134, N'Jesus Of Suburbia / City Of The Damned / I Don''t Care / Dearly Beloved / Tales Of Another Broken Home', 89, 1, 4, N'Billie Joe Armstrong/Green Day', 548336, 17875209, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1135, N'Holiday', 89, 1, 4, N'Billie Joe Armstrong, Mike Dirnt, Tré Cool', 232724, 7599602, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1136, N'Boulevard Of Broken Dreams', 89, 1, 4, N'Mike Dint, Billie Joe, Tré Cool', 260858, 8485122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1137, N'Are We The Waiting', 89, 1, 4, N'Green Day', 163004, 5328329, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1138, N'St. Jimmy', 89, 1, 4, N'Green Day', 175307, 5716589, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1139, N'Give Me Novacaine', 89, 1, 4, N'Green Day', 205871, 6752485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1140, N'She''s A Rebel', 89, 1, 4, N'Green Day', 120528, 3901226, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1141, N'Extraordinary Girl', 89, 1, 4, N'Green Day', 214021, 6975177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1142, N'Letterbomb', 89, 1, 4, N'Green Day', 246151, 7980902, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1143, N'Wake Me Up When September Ends', 89, 1, 4, N'Mike Dint, Billie Joe, Tré Cool', 285753, 9325597, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1144, N'Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We''re Coming Home Again', 89, 1, 4, N'Mike Dirnt/Tré Cool', 558602, 18139840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1145, N'Whatsername', 89, 1, 4, N'Green Day', 252316, 8244843, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1146, N'Welcome to the Jungle', 90, 2, 1, 273552, 4538451, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1147, N'It''s So Easy', 90, 2, 1, 202824, 3394019, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1148, N'Nightrain', 90, 2, 1, 268537, 4457283, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1149, N'Out Ta Get Me', 90, 2, 1, 263893, 4382147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1150, N'Mr. Brownstone', 90, 2, 1, 228924, 3816323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1151, N'Paradise City', 90, 2, 1, 406347, 6687123, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1152, N'My Michelle', 90, 2, 1, 219961, 3671299, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1153, N'Think About You', 90, 2, 1, 231640, 3860275, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1154, N'Sweet Child O'' Mine', 90, 2, 1, 356424, 5879347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1155, N'You''re Crazy', 90, 2, 1, 197135, 3301971, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1156, N'Anything Goes', 90, 2, 1, 206400, 3451891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1157, N'Rocket Queen', 90, 2, 1, 375349, 6185539, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1158, N'Right Next Door to Hell', 91, 2, 1, 182321, 3175950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1159, N'Dust N'' Bones', 91, 2, 1, 298374, 5053742, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1160, N'Live and Let Die', 91, 2, 1, 184016, 3203390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1161, N'Don''t Cry (Original)', 91, 2, 1, 284744, 4833259, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1162, N'Perfect Crime', 91, 2, 1, 143637, 2550030, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1163, N'You Ain''t the First', 91, 2, 1, 156268, 2754414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1164, N'Bad Obsession', 91, 2, 1, 328282, 5537678, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1165, N'Back off Bitch', 91, 2, 1, 303436, 5135662, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1166, N'Double Talkin'' Jive', 91, 2, 1, 203637, 3520862, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1167, N'November Rain', 91, 2, 1, 537540, 8923566, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1168, N'The Garden', 91, 2, 1, 322175, 5438862, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1169, N'Garden of Eden', 91, 2, 1, 161539, 2839694, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1170, N'Don''t Damn Me', 91, 2, 1, 318901, 5385886, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1171, N'Bad Apples', 91, 2, 1, 268351, 4567966, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1172, N'Dead Horse', 91, 2, 1, 257600, 4394014, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1173, N'Coma', 91, 2, 1, 616511, 10201342, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1174, N'Civil War', 92, 1, 3, N'Duff McKagan/Slash/W. Axl Rose', 461165, 15046579, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1175, N'14 Years', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 261355, 8543664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1176, N'Yesterdays', 92, 1, 3, N'Billy/Del James/W. Axl Rose/West Arkeen', 196205, 6398489, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1177, N'Knockin'' On Heaven''s Door', 92, 1, 3, N'Bob Dylan', 336457, 10986716, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1178, N'Get In The Ring', 92, 1, 3, N'Duff McKagan/Slash/W. Axl Rose', 341054, 11134105, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1179, N'Shotgun Blues', 92, 1, 3, N'W. Axl Rose', 203206, 6623916, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1180, N'Breakdown', 92, 1, 3, N'W. Axl Rose', 424960, 13978284, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1181, N'Pretty Tied Up', 92, 1, 3, N'Izzy Stradlin''', 287477, 9408754, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1182, N'Locomotive', 92, 1, 3, N'Slash/W. Axl Rose', 522396, 17236842, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1183, N'So Fine', 92, 1, 3, N'Duff McKagan', 246491, 8039484, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1184, N'Estranged', 92, 1, 3, N'W. Axl Rose', 563800, 18343787, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1185, N'You Could Be Mine', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 343875, 11207355, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1186, N'Don''t Cry', 92, 1, 3, N'Izzy Stradlin''/W. Axl Rose', 284238, 9222458, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1187, N'My World', 92, 1, 3, N'W. Axl Rose', 84532, 2764045, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1188, N'Colibri', 93, 1, 2, N'Richard Bull', 361012, 12055329, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1189, N'Love Is The Colour', 93, 1, 2, N'R. Carless', 251585, 8419165, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1190, N'Magnetic Ocean', 93, 1, 2, N'Patrick Claher/Richard Bull', 321123, 10720741, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1191, N'Deep Waters', 93, 1, 2, N'Richard Bull', 396460, 13075359, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1192, N'L''Arc En Ciel De Miles', 93, 1, 2, N'Kevin Robinson/Richard Bull', 242390, 8053997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1193, N'Gypsy', 93, 1, 2, N'Kevin Robinson', 330997, 11083374, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1194, N'Journey Into Sunlight', 93, 1, 2, N'Jean Paul Maunick', 249756, 8241177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1195, N'Sunchild', 93, 1, 2, N'Graham Harvey', 259970, 8593143, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1196, N'Millenium', 93, 1, 2, N'Maxton Gig Beesley Jnr.', 379167, 12511939, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1197, N'Thinking ''Bout Tomorrow', 93, 1, 2, N'Fayyaz Virgi/Richard Bull', 355395, 11865384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1198, N'Jacob''s Ladder', 93, 1, 2, N'Julian Crampton', 367647, 12201595, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1199, N'She Wears Black', 93, 1, 2, N'G Harvey/R Hope-Taylor', 528666, 17617944, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1200, N'Dark Side Of The Cog', 93, 1, 2, N'Jean Paul Maunick', 377155, 12491122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1201, N'Different World', 94, 2, 1, 258692, 4383764, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1202, N'These Colours Don''t Run', 94, 2, 1, 412152, 6883500, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1203, N'Brighter Than a Thousand Suns', 94, 2, 1, 526255, 8721490, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1204, N'The Pilgrim', 94, 2, 1, 307593, 5172144, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1205, N'The Longest Day', 94, 2, 1, 467810, 7785748, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1206, N'Out of the Shadows', 94, 2, 1, 336896, 5647303, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1207, N'The Reincarnation of Benjamin Breeg', 94, 2, 1, 442106, 7367736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1208, N'For the Greater Good of God', 94, 2, 1, 564893, 9367328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1209, N'Lord of Light', 94, 2, 1, 444614, 7393698, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1210, N'The Legacy', 94, 2, 1, 562966, 9314287, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1211, N'Hallowed Be Thy Name (Live) [Non Album Bonus Track]', 94, 2, 1, 431262, 7205816, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1212, N'The Number Of The Beast', 95, 1, 3, N'Steve Harris', 294635, 4718897, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1213, N'The Trooper', 95, 1, 3, N'Steve Harris', 235311, 3766272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1214, N'Prowler', 95, 1, 3, N'Steve Harris', 255634, 4091904, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1215, N'Transylvania', 95, 1, 3, N'Steve Harris', 265874, 4255744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1216, N'Remember Tomorrow', 95, 1, 3, N'Paul Di''Anno/Steve Harris', 352731, 5648438, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1217, N'Where Eagles Dare', 95, 1, 3, N'Steve Harris', 289358, 4630528, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1218, N'Sanctuary', 95, 1, 3, N'David Murray/Paul Di''Anno/Steve Harris', 293250, 4694016, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1219, N'Running Free', 95, 1, 3, N'Paul Di''Anno/Steve Harris', 228937, 3663872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1220, N'Run To The Hilss', 95, 1, 3, N'Steve Harris', 237557, 3803136, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1221, N'2 Minutes To Midnight', 95, 1, 3, N'Adrian Smith/Bruce Dickinson', 337423, 5400576, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1222, N'Iron Maiden', 95, 1, 3, N'Steve Harris', 324623, 5195776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1223, N'Hallowed Be Thy Name', 95, 1, 3, N'Steve Harris', 471849, 7550976, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1224, N'Be Quick Or Be Dead', 96, 1, 3, N'Bruce Dickinson/Janick Gers', 196911, 3151872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1225, N'From Here To Eternity', 96, 1, 3, N'Steve Harris', 259866, 4159488, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1226, N'Can I Play With Madness', 96, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 282488, 4521984, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1227, N'Wasting Love', 96, 1, 3, N'Bruce Dickinson/Janick Gers', 347846, 5566464, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1228, N'Tailgunner', 96, 1, 3, N'Bruce Dickinson/Steve Harris', 249469, 3993600, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1229, N'The Evil That Men Do', 96, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 325929, 5216256, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1230, N'Afraid To Shoot Strangers', 96, 1, 3, N'Steve Harris', 407980, 6529024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1231, N'Bring Your Daughter... To The Slaughter', 96, 1, 3, N'Bruce Dickinson', 317727, 5085184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1232, N'Heaven Can Wait', 96, 1, 3, N'Steve Harris', 448574, 7178240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1233, N'The Clairvoyant', 96, 1, 3, N'Steve Harris', 269871, 4319232, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1234, N'Fear Of The Dark', 96, 1, 3, N'Steve Harris', 431333, 6906078, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1235, N'The Wicker Man', 97, 1, 1, N'Adrian Smith/Bruce Dickinson/Steve Harris', 275539, 11022464, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1236, N'Ghost Of The Navigator', 97, 1, 1, N'Bruce Dickinson/Janick Gers/Steve Harris', 410070, 16404608, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1237, N'Brave New World', 97, 1, 1, N'Bruce Dickinson/David Murray/Steve Harris', 378984, 15161472, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1238, N'Blood Brothers', 97, 1, 1, N'Steve Harris', 434442, 17379456, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1239, N'The Mercenary', 97, 1, 1, N'Janick Gers/Steve Harris', 282488, 11300992, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1240, N'Dream Of Mirrors', 97, 1, 1, N'Janick Gers/Steve Harris', 561162, 22448256, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1241, N'The Fallen Angel', 97, 1, 1, N'Adrian Smith/Steve Harris', 240718, 9629824, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1242, N'The Nomad', 97, 1, 1, N'David Murray/Steve Harris', 546115, 21846144, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1243, N'Out Of The Silent Planet', 97, 1, 1, N'Bruce Dickinson/Janick Gers/Steve Harris', 385541, 15423616, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1244, N'The Thin Line Between Love & Hate', 97, 1, 1, N'David Murray/Steve Harris', 506801, 20273280, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1245, N'Wildest Dreams', 98, 1, 13, N'Adrian Smith/Steve Harris', 232777, 9312384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1246, N'Rainmaker', 98, 1, 13, N'Bruce Dickinson/David Murray/Steve Harris', 228623, 9146496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1247, N'No More Lies', 98, 1, 13, N'Steve Harris', 441782, 17672320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1248, N'Montsegur', 98, 1, 13, N'Bruce Dickinson/Janick Gers/Steve Harris', 350484, 14020736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1249, N'Dance Of Death', 98, 1, 13, N'Janick Gers/Steve Harris', 516649, 20670727, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1250, N'Gates Of Tomorrow', 98, 1, 13, N'Bruce Dickinson/Janick Gers/Steve Harris', 312032, 12482688, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1251, N'New Frontier', 98, 1, 13, N'Adrian Smith/Bruce Dickinson/Nicko McBrain', 304509, 12181632, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1252, N'Paschendale', 98, 1, 13, N'Adrian Smith/Steve Harris', 508107, 20326528, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1253, N'Face In The Sand', 98, 1, 13, N'Adrian Smith/Bruce Dickinson/Steve Harris', 391105, 15648948, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1254, N'Age Of Innocence', 98, 1, 13, N'David Murray/Steve Harris', 370468, 14823478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1255, N'Journeyman', 98, 1, 13, N'Bruce Dickinson/David Murray/Steve Harris', 427023, 17082496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1256, N'Be Quick Or Be Dead', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 204512, 8181888, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1257, N'From Here To Eternity', 99, 1, 1, N'Steve Harris', 218357, 8739038, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1258, N'Afraid To Shoot Strangers', 99, 1, 1, N'Steve Harris', 416496, 16664589, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1259, N'Fear Is The Key', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 335307, 13414528, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1260, N'Childhood''s End', 99, 1, 1, N'Steve Harris', 280607, 11225216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1261, N'Wasting Love', 99, 1, 1, N'Bruce Dickinson/Janick Gers', 350981, 14041216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1262, N'The Fugitive', 99, 1, 1, N'Steve Harris', 294112, 11765888, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1263, N'Chains Of Misery', 99, 1, 1, N'Bruce Dickinson/David Murray', 217443, 8700032, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1264, N'The Apparition', 99, 1, 1, N'Janick Gers/Steve Harris', 234605, 9386112, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1265, N'Judas Be My Guide', 99, 1, 1, N'Bruce Dickinson/David Murray', 188786, 7553152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1266, N'Weekend Warrior', 99, 1, 1, N'Janick Gers/Steve Harris', 339748, 13594678, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1267, N'Fear Of The Dark', 99, 1, 1, N'Steve Harris', 436976, 17483789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1268, N'01 - Prowler', 100, 1, 6, N'Steve Harris', 236173, 5668992, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1269, N'02 - Sanctuary', 100, 1, 6, N'David Murray/Paul Di''Anno/Steve Harris', 196284, 4712576, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1270, N'03 - Remember Tomorrow', 100, 1, 6, N'Harris/Paul Di´Anno', 328620, 7889024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1271, N'04 - Running Free', 100, 1, 6, N'Harris/Paul Di´Anno', 197276, 4739122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1272, N'05 - Phantom of the Opera', 100, 1, 6, N'Steve Harris', 428016, 10276872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1273, N'06 - Transylvania', 100, 1, 6, N'Steve Harris', 259343, 6226048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1274, N'07 - Strange World', 100, 1, 6, N'Steve Harris', 332460, 7981184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1275, N'08 - Charlotte the Harlot', 100, 1, 6, N'Murray Dave', 252708, 6066304, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1276, N'09 - Iron Maiden', 100, 1, 6, N'Steve Harris', 216058, 5189891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1277, N'The Ides Of March', 101, 1, 13, N'Steve Harris', 105926, 2543744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1278, N'Wrathchild', 101, 1, 13, N'Steve Harris', 174471, 4188288, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1279, N'Murders In The Rue Morgue', 101, 1, 13, N'Steve Harris', 258377, 6205786, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1280, N'Another Life', 101, 1, 13, N'Steve Harris', 203049, 4874368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1281, N'Genghis Khan', 101, 1, 13, N'Steve Harris', 187141, 4493440, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1282, N'Innocent Exile', 101, 1, 13, N'Di´Anno/Harris', 232515, 5584861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1283, N'Killers', 101, 1, 13, N'Steve Harris', 300956, 7227440, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1284, N'Prodigal Son', 101, 1, 13, N'Steve Harris', 372349, 8937600, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1285, N'Purgatory', 101, 1, 13, N'Steve Harris', 200150, 4804736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1286, N'Drifter', 101, 1, 13, N'Steve Harris', 288757, 6934660, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1287, N'Intro- Churchill S Speech', 102, 1, 13, 48013, 1154488, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1288, N'Aces High', 102, 1, 13, 276375, 6635187, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1289, N'2 Minutes To Midnight', 102, 1, 3, N'Smith/Dickinson', 366550, 8799380, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1290, N'The Trooper', 102, 1, 3, N'Harris', 268878, 6455255, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1291, N'Revelations', 102, 1, 3, N'Dickinson', 371826, 8926021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1292, N'Flight Of Icarus', 102, 1, 3, N'Smith/Dickinson', 229982, 5521744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1293, N'Rime Of The Ancient Mariner', 102, 1, 3, 789472, 18949518, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1294, N'Powerslave', 102, 1, 3, 454974, 10921567, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1295, N'The Number Of The Beast', 102, 1, 3, N'Harris', 275121, 6605094, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1296, N'Hallowed Be Thy Name', 102, 1, 3, N'Harris', 451422, 10836304, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1297, N'Iron Maiden', 102, 1, 3, N'Harris', 261955, 6289117, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1298, N'Run To The Hills', 102, 1, 3, N'Harris', 231627, 5561241, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1299, N'Running Free', 102, 1, 3, N'Harris/Di Anno', 204617, 4912986, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1300, N'Wrathchild', 102, 1, 13, N'Steve Harris', 183666, 4410181, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1301, N'Acacia Avenue', 102, 1, 13, 379872, 9119118, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1302, N'Children Of The Damned', 102, 1, 13, N'Steve Harris', 278177, 6678446, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1303, N'Die With Your Boots On', 102, 1, 13, N'Adrian Smith/Bruce Dickinson/Steve Harris', 314174, 7542367, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1304, N'Phantom Of The Opera', 102, 1, 13, N'Steve Harris', 441155, 10589917, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1305, N'Be Quick Or Be Dead', 103, 1, 1, 233142, 5599853, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1306, N'The Number Of The Beast', 103, 1, 1, 294008, 7060625, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1307, N'Wrathchild', 103, 1, 1, 174106, 4182963, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1308, N'From Here To Eternity', 103, 1, 1, 284447, 6831163, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1309, N'Can I Play With Madness', 103, 1, 1, 213106, 5118995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1310, N'Wasting Love', 103, 1, 1, 336953, 8091301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1311, N'Tailgunner', 103, 1, 1, 247640, 5947795, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1312, N'The Evil That Men Do', 103, 1, 1, 478145, 11479913, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1313, N'Afraid To Shoot Strangers', 103, 1, 1, 412525, 9905048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1314, N'Fear Of The Dark', 103, 1, 1, 431542, 10361452, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1315, N'Bring Your Daughter... To The Slaughter...', 104, 1, 1, 376711, 9045532, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1316, N'The Clairvoyant', 104, 1, 1, 262426, 6302648, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1317, N'Heaven Can Wait', 104, 1, 1, 440555, 10577743, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1318, N'Run To The Hills', 104, 1, 1, 235859, 5665052, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1319, N'2 Minutes To Midnight', 104, 1, 1, N'Adrian Smith/Bruce Dickinson', 338233, 8122030, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1320, N'Iron Maiden', 104, 1, 1, 494602, 11874875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1321, N'Hallowed Be Thy Name', 104, 1, 1, 447791, 10751410, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1322, N'The Trooper', 104, 1, 1, 232672, 5588560, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1323, N'Sanctuary', 104, 1, 1, 318511, 7648679, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1324, N'Running Free', 104, 1, 1, 474017, 11380851, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1325, N'Tailgunner', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 255582, 4089856, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1326, N'Holy Smoke', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 229459, 3672064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1327, N'No Prayer For The Dying', 105, 1, 3, N'Steve Harris', 263941, 4225024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1328, N'Public Enema Number One', 105, 1, 3, N'Bruce Dickinson/David Murray', 254197, 4071587, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1329, N'Fates Warning', 105, 1, 3, N'David Murray/Steve Harris', 250853, 4018088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1330, N'The Assassin', 105, 1, 3, N'Steve Harris', 258768, 4141056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1331, N'Run Silent Run Deep', 105, 1, 3, N'Bruce Dickinson/Steve Harris', 275408, 4407296, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1332, N'Hooks In You', 105, 1, 3, N'Adrian Smith/Bruce Dickinson', 247510, 3960832, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1333, N'Bring Your Daughter... ...To The Slaughter', 105, 1, 3, N'Bruce Dickinson', 284238, 4548608, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1334, N'Mother Russia', 105, 1, 3, N'Steve Harris', 332617, 5322752, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1335, N'Where Eagles Dare', 106, 1, 3, N'Steve Harris', 369554, 5914624, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1336, N'Revelations', 106, 1, 3, N'Bruce Dickinson', 408607, 6539264, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1337, N'Flight Of The Icarus', 106, 1, 3, N'Adrian Smith/Bruce Dickinson', 230269, 3686400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1338, N'Die With Your Boots On', 106, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 325694, 5212160, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1339, N'The Trooper', 106, 1, 3, N'Steve Harris', 251454, 4024320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1340, N'Still Life', 106, 1, 3, N'David Murray/Steve Harris', 294347, 4710400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1341, N'Quest For Fire', 106, 1, 3, N'Steve Harris', 221309, 3543040, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1342, N'Sun And Steel', 106, 1, 3, N'Adrian Smith/Bruce Dickinson', 206367, 3306324, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1343, N'To Tame A Land', 106, 1, 3, N'Steve Harris', 445283, 7129264, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1344, N'Aces High', 107, 1, 3, N'Harris', 269531, 6472088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1345, N'2 Minutes To Midnight', 107, 1, 3, N'Smith/Dickinson', 359810, 8638809, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1346, N'Losfer Words', 107, 1, 3, N'Steve Harris', 252891, 6074756, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1347, N'Flash of The Blade', 107, 1, 3, N'Dickinson', 242729, 5828861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1348, N'Duelists', 107, 1, 3, N'Steve Harris', 366471, 8800686, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1349, N'Back in the Village', 107, 1, 3, N'Dickinson/Smith', 320548, 7696518, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1350, N'Powerslave', 107, 1, 3, N'Dickinson', 407823, 9791106, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1351, N'Rime of the Ancient Mariner', 107, 1, 3, N'Harris', 816509, 19599577, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1352, N'Intro', 108, 1, 3, 115931, 4638848, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1353, N'The Wicker Man', 108, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 281782, 11272320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1354, N'Ghost Of The Navigator', 108, 1, 3, N'Bruce Dickinson/Janick Gers/Steve Harris', 408607, 16345216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1355, N'Brave New World', 108, 1, 3, N'Bruce Dickinson/David Murray/Steve Harris', 366785, 14676148, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1356, N'Wrathchild', 108, 1, 3, N'Steve Harris', 185808, 7434368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1357, N'2 Minutes To Midnight', 108, 1, 3, N'Adrian Smith/Bruce Dickinson', 386821, 15474816, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1358, N'Blood Brothers', 108, 1, 3, N'Steve Harris', 435513, 17422464, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1359, N'Sign Of The Cross', 108, 1, 3, N'Steve Harris', 649116, 25966720, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1360, N'The Mercenary', 108, 1, 3, N'Janick Gers/Steve Harris', 282697, 11309184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1361, N'The Trooper', 108, 1, 3, N'Steve Harris', 273528, 10942592, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1362, N'Dream Of Mirrors', 109, 1, 1, N'Janick Gers/Steve Harris', 578324, 23134336, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1363, N'The Clansman', 109, 1, 1, N'Steve Harris', 559203, 22370432, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1364, N'The Evil That Men Do', 109, 1, 3, N'Adrian Smith/Bruce Dickinson/Steve Harris', 280737, 11231360, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1365, N'Fear Of The Dark', 109, 1, 1, N'Steve Harris', 460695, 18430080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1366, N'Iron Maiden', 109, 1, 1, N'Steve Harris', 351869, 14076032, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1367, N'The Number Of The Beast', 109, 1, 1, N'Steve Harris', 300434, 12022107, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1368, N'Hallowed Be Thy Name', 109, 1, 1, N'Steve Harris', 443977, 17760384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1369, N'Sanctuary', 109, 1, 1, N'David Murray/Paul Di''Anno/Steve Harris', 317335, 12695680, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1370, N'Run To The Hills', 109, 1, 1, N'Steve Harris', 292179, 11688064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1371, N'Moonchild', 110, 1, 3, N'Adrian Smith; Bruce Dickinson', 340767, 8179151, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1372, N'Infinite Dreams', 110, 1, 3, N'Steve Harris', 369005, 8858669, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1373, N'Can I Play With Madness', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 211043, 5067867, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1374, N'The Evil That Men Do', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 273998, 6578930, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1375, N'Seventh Son of a Seventh Son', 110, 1, 3, N'Steve Harris', 593580, 14249000, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1376, N'The Prophecy', 110, 1, 3, N'Dave Murray; Steve Harris', 305475, 7334450, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1377, N'The Clairvoyant', 110, 1, 3, N'Adrian Smith; Bruce Dickinson; Steve Harris', 267023, 6411510, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1378, N'Only the Good Die Young', 110, 1, 3, N'Bruce Dickinson; Harris', 280894, 6744431, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1379, N'Caught Somewhere in Time', 111, 1, 3, N'Steve Harris', 445779, 10701149, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1380, N'Wasted Years', 111, 1, 3, N'Adrian Smith', 307565, 7384358, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1381, N'Sea of Madness', 111, 1, 3, N'Adrian Smith', 341995, 8210695, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1382, N'Heaven Can Wait', 111, 1, 3, N'Steve Harris', 441417, 10596431, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1383, N'Stranger in a Strange Land', 111, 1, 3, N'Adrian Smith', 344502, 8270899, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1384, N'Alexander the Great', 111, 1, 3, N'Steve Harris', 515631, 12377742, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1385, N'De Ja Vu', 111, 1, 3, N'David Murray/Steve Harris', 296176, 7113035, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1386, N'The Loneliness of the Long Dis', 111, 1, 3, N'Steve Harris', 391314, 9393598, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1387, N'22 Acacia Avenue', 112, 1, 3, N'Adrian Smith/Steve Harris', 395572, 5542516, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1388, N'Children of the Damned', 112, 1, 3, N'Steve Harris', 274364, 3845631, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1389, N'Gangland', 112, 1, 3, N'Adrian Smith/Clive Burr/Steve Harris', 228440, 3202866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1390, N'Hallowed Be Thy Name', 112, 1, 3, N'Steve Harris', 428669, 6006107, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1391, N'Invaders', 112, 1, 3, N'Steve Harris', 203180, 2849181, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1392, N'Run to the Hills', 112, 1, 3, N'Steve Harris', 228884, 3209124, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1393, N'The Number Of The Beast', 112, 1, 1, N'Steve Harris', 293407, 11737216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1394, N'The Prisoner', 112, 1, 3, N'Adrian Smith/Steve Harris', 361299, 5062906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1395, N'Sign Of The Cross', 113, 1, 1, N'Steve Harris', 678008, 27121792, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1396, N'Lord Of The Flies', 113, 1, 1, N'Janick Gers/Steve Harris', 303699, 12148864, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1397, N'Man On The Edge', 113, 1, 1, N'Blaze Bayley/Janick Gers', 253413, 10137728, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1398, N'Fortunes Of War', 113, 1, 1, N'Steve Harris', 443977, 17760384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1399, N'Look For The Truth', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 310230, 12411008, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1400, N'The Aftermath', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 380786, 15233152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1401, N'Judgement Of Heaven', 113, 1, 1, N'Steve Harris', 312476, 12501120, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1402, N'Blood On The World''s Hands', 113, 1, 1, N'Steve Harris', 357799, 14313600, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1403, N'The Edge Of Darkness', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 399333, 15974528, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1404, N'2 A.M.', 113, 1, 1, N'Blaze Bayley/Janick Gers/Steve Harris', 337658, 13511087, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1405, N'The Unbeliever', 113, 1, 1, N'Janick Gers/Steve Harris', 490422, 19617920, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1406, N'Futureal', 114, 1, 1, N'Blaze Bayley/Steve Harris', 175777, 7032960, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1407, N'The Angel And The Gambler', 114, 1, 1, N'Steve Harris', 592744, 23711872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1408, N'Lightning Strikes Twice', 114, 1, 1, N'David Murray/Steve Harris', 290377, 11616384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1409, N'The Clansman', 114, 1, 1, N'Steve Harris', 539689, 21592327, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1410, N'When Two Worlds Collide', 114, 1, 1, N'Blaze Bayley/David Murray/Steve Harris', 377312, 15093888, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1411, N'The Educated Fool', 114, 1, 1, N'Steve Harris', 404767, 16191616, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1412, N'Don''t Look To The Eyes Of A Stranger', 114, 1, 1, N'Steve Harris', 483657, 19347584, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1413, N'Como Estais Amigos', 114, 1, 1, N'Blaze Bayley/Janick Gers', 330292, 13213824, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1414, N'Please Please Please', 115, 1, 14, N'James Brown/Johnny Terry', 165067, 5394585, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1415, N'Think', 115, 1, 14, N'Lowman Pauling', 166739, 5513208, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1416, N'Night Train', 115, 1, 14, N'Jimmy Forrest/Lewis C. Simpkins/Oscar Washington', 212401, 7027377, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1417, N'Out Of Sight', 115, 1, 14, N'Ted Wright', 143725, 4711323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1418, N'Papa''s Got A Brand New Bag Pt.1', 115, 1, 14, N'James Brown', 127399, 4174420, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1419, N'I Got You (I Feel Good)', 115, 1, 14, N'James Brown', 167392, 5468472, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1420, N'It''s A Man''s Man''s Man''s World', 115, 1, 14, N'Betty Newsome/James Brown', 168228, 5541611, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1421, N'Cold Sweat', 115, 1, 14, N'Alfred Ellis/James Brown', 172408, 5643213, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1422, N'Say It Loud, I''m Black And I''m Proud Pt.1', 115, 1, 14, N'Alfred Ellis/James Brown', 167392, 5478117, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1423, N'Get Up (I Feel Like Being A) Sex Machine', 115, 1, 14, N'Bobby Byrd/James Brown/Ron Lenhoff', 316551, 10498031, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1424, N'Hey America', 115, 1, 14, N'Addie William Jones/Nat Jones', 218226, 7187857, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1425, N'Make It Funky Pt.1', 115, 1, 14, N'Charles Bobbitt/James Brown', 196231, 6507782, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1426, N'I''m A Greedy Man Pt.1', 115, 1, 14, N'Charles Bobbitt/James Brown', 217730, 7251211, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1427, N'Get On The Good Foot', 115, 1, 14, N'Fred Wesley/James Brown/Joseph Mims', 215902, 7182736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1428, N'Get Up Offa That Thing', 115, 1, 14, N'Deanna Brown/Deidra Jenkins/Yamma Brown', 250723, 8355989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1429, N'It''s Too Funky In Here', 115, 1, 14, N'Brad Shapiro/George Jackson/Robert Miller/Walter Shaw', 239072, 7973979, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1430, N'Living In America', 115, 1, 14, N'Charlie Midnight/Dan Hartman', 282880, 9432346, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1431, N'I''m Real', 115, 1, 14, N'Full Force/James Brown', 334236, 11183457, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1432, N'Hot Pants Pt.1', 115, 1, 14, N'Fred Wesley/James Brown', 188212, 6295110, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1433, N'Soul Power (Live)', 115, 1, 14, N'James Brown', 260728, 8593206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1434, N'When You Gonna Learn (Digeridoo)', 116, 1, 1, N'Jay Kay/Kay, Jay', 230635, 7655482, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1435, N'Too Young To Die', 116, 1, 1, N'Smith, Toby', 365818, 12391660, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1436, N'Hooked Up', 116, 1, 1, N'Smith, Toby', 275879, 9301687, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1437, N'If I Like It, I Do It', 116, 1, 1, N'Gelder, Nick van', 293093, 9848207, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1438, N'Music Of The Wind', 116, 1, 1, N'Smith, Toby', 383033, 12870239, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1439, N'Emergency On Planet Earth', 116, 1, 1, N'Smith, Toby', 245263, 8117218, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1440, N'Whatever It Is, I Just Can''t Stop', 116, 1, 1, N'Jay Kay/Kay, Jay', 247222, 8249453, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1441, N'Blow Your Mind', 116, 1, 1, N'Smith, Toby', 512339, 17089176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1442, N'Revolution 1993', 116, 1, 1, N'Smith, Toby', 616829, 20816872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1443, N'Didgin'' Out', 116, 1, 1, N'Buchanan, Wallis', 157100, 5263555, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1444, N'Canned Heat', 117, 1, 14, N'Jay Kay', 331964, 11042037, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1445, N'Planet Home', 117, 1, 14, N'Jay Kay/Toby Smith', 284447, 9566237, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1446, N'Black Capricorn Day', 117, 1, 14, N'Jay Kay', 341629, 11477231, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1447, N'Soul Education', 117, 1, 14, N'Jay Kay/Toby Smith', 255477, 8575435, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1448, N'Failling', 117, 1, 14, N'Jay Kay/Toby Smith', 225227, 7503999, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1449, N'Destitute Illusions', 117, 1, 14, N'Derrick McKenzie/Jay Kay/Toby Smith', 340218, 11452651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1450, N'Supersonic', 117, 1, 14, N'Jay Kay', 315872, 10699265, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1451, N'Butterfly', 117, 1, 14, N'Jay Kay/Toby Smith', 268852, 8947356, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1452, N'Were Do We Go From Here', 117, 1, 14, N'Jay Kay', 313626, 10504158, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1453, N'King For A Day', 117, 1, 14, N'Jay Kay/Toby Smith', 221544, 7335693, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1454, N'Deeper Underground', 117, 1, 14, N'Toby Smith', 281808, 9351277, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1455, N'Just Another Story', 118, 1, 15, N'Toby Smith', 529684, 17582818, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1456, N'Stillness In Time', 118, 1, 15, N'Toby Smith', 257097, 8644290, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1457, N'Half The Man', 118, 1, 15, N'Toby Smith', 289854, 9577679, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1458, N'Light Years', 118, 1, 15, N'Toby Smith', 354560, 11796244, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1459, N'Manifest Destiny', 118, 1, 15, N'Toby Smith', 382197, 12676962, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1460, N'The Kids', 118, 1, 15, N'Toby Smith', 309995, 10334529, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1461, N'Mr. Moon', 118, 1, 15, N'Stuard Zender/Toby Smith', 329534, 11043559, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1462, N'Scam', 118, 1, 15, N'Stuart Zender', 422321, 14019705, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1463, N'Journey To Arnhemland', 118, 1, 15, N'Toby Smith/Wallis Buchanan', 322455, 10843832, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1464, N'Morning Glory', 118, 1, 15, N'J. Kay/Jay Kay', 384130, 12777210, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1465, N'Space Cowboy', 118, 1, 15, N'J. Kay/Jay Kay', 385697, 12906520, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1466, N'Last Chance', 119, 1, 4, N'C. Cester/C. Muncey', 112352, 3683130, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1467, N'Are You Gonna Be My Girl', 119, 1, 4, N'C. Muncey/N. Cester', 213890, 6992324, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1468, N'Rollover D.J.', 119, 1, 4, N'C. Cester/N. Cester', 196702, 6406517, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1469, N'Look What You''ve Done', 119, 1, 4, N'N. Cester', 230974, 7517083, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1470, N'Get What You Need', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 247719, 8043765, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1471, N'Move On', 119, 1, 4, N'C. Cester/N. Cester', 260623, 8519353, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1472, N'Radio Song', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 272117, 8871509, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1473, N'Get Me Outta Here', 119, 1, 4, N'C. Cester/N. Cester', 176274, 5729098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1474, N'Cold Hard Bitch', 119, 1, 4, N'C. Cester/C. Muncey/N. Cester', 243278, 7929610, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1475, N'Come Around Again', 119, 1, 4, N'C. Muncey/N. Cester', 270497, 8872405, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1476, N'Take It Or Leave It', 119, 1, 4, N'C. Muncey/N. Cester', 142889, 4643370, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1477, N'Lazy Gun', 119, 1, 4, N'C. Cester/N. Cester', 282174, 9186285, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1478, N'Timothy', 119, 1, 4, N'C. Cester', 270341, 8856507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1479, N'Foxy Lady', 120, 1, 1, N'Jimi Hendrix', 199340, 6480896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1480, N'Manic Depression', 120, 1, 1, N'Jimi Hendrix', 222302, 7289272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1481, N'Red House', 120, 1, 1, N'Jimi Hendrix', 224130, 7285851, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1482, N'Can You See Me', 120, 1, 1, N'Jimi Hendrix', 153077, 4987068, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1483, N'Love Or Confusion', 120, 1, 1, N'Jimi Hendrix', 193123, 6329408, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1484, N'I Don''t Live Today', 120, 1, 1, N'Jimi Hendrix', 235311, 7661214, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1485, N'May This Be Love', 120, 1, 1, N'Jimi Hendrix', 191216, 6240028, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1486, N'Fire', 120, 1, 1, N'Jimi Hendrix', 164989, 5383075, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1487, N'Third Stone From The Sun', 120, 1, 1, N'Jimi Hendrix', 404453, 13186975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1488, N'Remember', 120, 1, 1, N'Jimi Hendrix', 168150, 5509613, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1489, N'Are You Experienced?', 120, 1, 1, N'Jimi Hendrix', 254537, 8292497, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1490, N'Hey Joe', 120, 1, 1, N'Billy Roberts', 210259, 6870054, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1491, N'Stone Free', 120, 1, 1, N'Jimi Hendrix', 216293, 7002331, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1492, N'Purple Haze', 120, 1, 1, N'Jimi Hendrix', 171572, 5597056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1493, N'51st Anniversary', 120, 1, 1, N'Jimi Hendrix', 196388, 6398044, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1494, N'The Wind Cries Mary', 120, 1, 1, N'Jimi Hendrix', 200463, 6540638, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1495, N'Highway Chile', 120, 1, 1, N'Jimi Hendrix', 212453, 6887949, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1496, N'Surfing with the Alien', 121, 2, 1, 263707, 4418504, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1497, N'Ice 9', 121, 2, 1, 239721, 4036215, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1498, N'Crushing Day', 121, 2, 1, 314768, 5232158, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1499, N'Always With Me, Always With You', 121, 2, 1, 202035, 3435777, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1500, N'Satch Boogie', 121, 2, 1, 193560, 3300654, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1501, N'Hill of the Skull', 121, 2, 1, N'J. Satriani', 108435, 1944738, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1502, N'Circles', 121, 2, 1, 209071, 3548553, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1503, N'Lords of Karma', 121, 2, 1, N'J. Satriani', 288227, 4809279, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1504, N'Midnight', 121, 2, 1, N'J. Satriani', 102630, 1851753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1505, N'Echo', 121, 2, 1, N'J. Satriani', 337570, 5595557, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1506, N'Engenho De Dentro', 122, 1, 7, 310073, 10211473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1507, N'Alcohol', 122, 1, 7, 355239, 12010478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1508, N'Mama Africa', 122, 1, 7, 283062, 9488316, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1509, N'Salve Simpatia', 122, 1, 7, 343484, 11314756, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1510, N'W/Brasil (Chama O Síndico)', 122, 1, 7, 317100, 10599953, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1511, N'País Tropical', 122, 1, 7, 452519, 14946972, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1512, N'Os Alquimistas Estão Chegando', 122, 1, 7, 367281, 12304520, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1513, N'Charles Anjo 45', 122, 1, 7, 389276, 13022833, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1514, N'Selassiê', 122, 1, 7, 326321, 10724982, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1515, N'Menina Sarará', 122, 1, 7, 191477, 6393818, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1516, N'Que Maravilha', 122, 1, 7, 338076, 10996656, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1517, N'Santa Clara Clareou', 122, 1, 7, 380081, 12524725, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1518, N'Filho Maravilha', 122, 1, 7, 227526, 7498259, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1519, N'Taj Mahal', 122, 1, 7, 289750, 9502898, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1520, N'Rapidamente', 123, 1, 7, 252238, 8470107, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1521, N'As Dores do Mundo', 123, 1, 7, N'Hyldon', 255477, 8537092, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1522, N'Vou Pra Ai', 123, 1, 7, 300878, 10053718, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1523, N'My Brother', 123, 1, 7, 253231, 8431821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1524, N'Há Quanto Tempo', 123, 1, 7, 270027, 9004470, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1525, N'Vício', 123, 1, 7, 269897, 8887216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1526, N'Encontrar Alguém', 123, 1, 7, N'Marco Tulio Lara/Rogerio Flausino', 224078, 7437935, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1527, N'Dance Enquanto é Tempo', 123, 1, 7, 229093, 7583799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1528, N'A Tarde', 123, 1, 7, 266919, 8836127, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1529, N'Always Be All Right', 123, 1, 7, 128078, 4299676, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1530, N'Sem Sentido', 123, 1, 7, 250462, 8292108, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1531, N'Onibusfobia', 123, 1, 7, 315977, 10474904, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1532, N'Pura Elegancia', 124, 1, 16, N'João Suplicy', 284107, 9632269, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1533, N'Choramingando', 124, 1, 16, N'João Suplicy', 190484, 6400532, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1534, N'Por Merecer', 124, 1, 16, N'João Suplicy', 230582, 7764601, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1535, N'No Futuro', 124, 1, 16, N'João Suplicy', 182308, 6056200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1536, N'Voce Inteira', 124, 1, 16, N'João Suplicy', 241084, 8077282, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1537, N'Cuando A Noite Vai Chegando', 124, 1, 16, N'João Suplicy', 270628, 9081874, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1538, N'Naquele Dia', 124, 1, 16, N'João Suplicy', 251768, 8452654, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1539, N'Equinocio', 124, 1, 16, N'João Suplicy', 269008, 8871455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1540, N'Papelão', 124, 1, 16, N'João Suplicy', 213263, 7257390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1541, N'Cuando Eu For Pro Ceu', 124, 1, 16, N'João Suplicy', 118804, 3948371, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1542, N'Do Nosso Amor', 124, 1, 16, N'João Suplicy', 203415, 6774566, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1543, N'Borogodo', 124, 1, 16, N'João Suplicy', 208457, 7104588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1544, N'Cafezinho', 124, 1, 16, N'João Suplicy', 180924, 6031174, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1545, N'Enquanto O Dia Não Vem', 124, 1, 16, N'João Suplicy', 220891, 7248336, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1546, N'The Green Manalishi', 125, 1, 3, 205792, 6720789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1547, N'Living After Midnight', 125, 1, 3, 213289, 7056785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1548, N'Breaking The Law (Live)', 125, 1, 3, 144195, 4728246, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1549, N'Hot Rockin''', 125, 1, 3, 197328, 6509179, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1550, N'Heading Out To The Highway (Live)', 125, 1, 3, 276427, 9006022, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1551, N'The Hellion', 125, 1, 3, 41900, 1351993, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1552, N'Electric Eye', 125, 1, 3, 222197, 7231368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1553, N'You''ve Got Another Thing Comin''', 125, 1, 3, 305162, 9962558, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1554, N'Turbo Lover', 125, 1, 3, 335542, 11068866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1555, N'Freewheel Burning', 125, 1, 3, 265952, 8713599, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1556, N'Some Heads Are Gonna Roll', 125, 1, 3, 249939, 8198617, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1557, N'Metal Meltdown', 125, 1, 3, 290664, 9390646, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1558, N'Ram It Down', 125, 1, 3, 292179, 9554023, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1559, N'Diamonds And Rust (Live)', 125, 1, 3, 219350, 7163147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1560, N'Victim Of Change (Live)', 125, 1, 3, 430942, 14067512, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1561, N'Tyrant (Live)', 125, 1, 3, 282253, 9190536, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1562, N'Comin'' Home', 126, 1, 1, N'Paul Stanley, Ace Frehley', 172068, 5661120, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1563, N'Plaster Caster', 126, 1, 1, N'Gene Simmons', 198060, 6528719, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1564, N'Goin'' Blind', 126, 1, 1, N'Gene Simmons, Stephen Coronel', 217652, 7167523, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1565, N'Do You Love Me', 126, 1, 1, N'Paul Stanley, Bob Ezrin, Kim Fowley', 193619, 6343111, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1566, N'Domino', 126, 1, 1, N'Gene Simmons', 226377, 7488191, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1567, N'Sure Know Something', 126, 1, 1, N'Paul Stanley, Vincent Poncia', 254354, 8375190, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1568, N'A World Without Heroes', 126, 1, 1, N'Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed', 177815, 5832524, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1569, N'Rock Bottom', 126, 1, 1, N'Paul Stanley, Ace Frehley', 200594, 6560818, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1570, N'See You Tonight', 126, 1, 1, N'Gene Simmons', 146494, 4817521, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1571, N'I Still Love You', 126, 1, 1, N'Paul Stanley', 369815, 12086145, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1572, N'Every Time I Look At You', 126, 1, 1, N'Paul Stanley, Vincent Cusano', 283898, 9290948, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1573, N'2,000 Man', 126, 1, 1, N'Mick Jagger, Keith Richard', 312450, 10292829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1574, N'Beth', 126, 1, 1, N'Peter Criss, Stan Penridge, Bob Ezrin', 170187, 5577807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1575, N'Nothin'' To Lose', 126, 1, 1, N'Gene Simmons', 222354, 7351460, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1576, N'Rock And Roll All Nite', 126, 1, 1, N'Paul Stanley, Gene Simmons', 259631, 8549296, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1577, N'Immigrant Song', 127, 1, 1, N'Robert Plant', 201247, 6457766, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1578, N'Heartbreaker', 127, 1, 1, N'John Bonham/John Paul Jones/Robert Plant', 316081, 10179657, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1579, N'Since I''ve Been Loving You', 127, 1, 1, N'John Paul Jones/Robert Plant', 416365, 13471959, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1580, N'Black Dog', 127, 1, 1, N'John Paul Jones/Robert Plant', 317622, 10267572, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1581, N'Dazed And Confused', 127, 1, 1, N'Jimmy Page/Led Zeppelin', 1116734, 36052247, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1582, N'Stairway To Heaven', 127, 1, 1, N'Robert Plant', 529658, 17050485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1583, N'Going To California', 127, 1, 1, N'Robert Plant', 234605, 7646749, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1584, N'That''s The Way', 127, 1, 1, N'Robert Plant', 343431, 11248455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1585, N'Whole Lotta Love (Medley)', 127, 1, 1, N'Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon', 825103, 26742545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1586, N'Thank You', 127, 1, 1, N'Robert Plant', 398262, 12831826, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1587, N'We''re Gonna Groove', 128, 1, 1, N'Ben E.King/James Bethea', 157570, 5180975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1588, N'Poor Tom', 128, 1, 1, N'Jimmy Page/Robert Plant', 182491, 6016220, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1589, N'I Can''t Quit You Baby', 128, 1, 1, N'Willie Dixon', 258168, 8437098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1590, N'Walter''s Walk', 128, 1, 1, N'Jimmy Page, Robert Plant', 270785, 8712499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1591, N'Ozone Baby', 128, 1, 1, N'Jimmy Page, Robert Plant', 215954, 7079588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1592, N'Darlene', 128, 1, 1, N'Jimmy Page, Robert Plant, John Bonham, John Paul Jones', 307226, 10078197, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1593, N'Bonzo''s Montreux', 128, 1, 1, N'John Bonham', 258925, 8557447, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1594, N'Wearing And Tearing', 128, 1, 1, N'Jimmy Page, Robert Plant', 330004, 10701590, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1595, N'The Song Remains The Same', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 330004, 10708950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1596, N'The Rain Song', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 459180, 15029875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1597, N'Over The Hills And Far Away', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 290089, 9552829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1598, N'The Crunge', 129, 1, 1, N'John Bonham/John Paul Jones', 197407, 6460212, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1599, N'Dancing Days', 129, 1, 1, N'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 223216, 7250104, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1600, N'D''Yer Mak''er', 129, 1, 1, N'John Bonham/John Paul Jones', 262948, 8645935, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1601, N'No Quarter', 129, 1, 1, N'John Paul Jones', 420493, 13656517, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1602, N'The Ocean', 129, 1, 1, N'John Bonham/John Paul Jones', 271098, 8846469, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1603, N'In The Evening', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 410566, 13399734, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1604, N'South Bound Saurez', 130, 1, 1, N'John Paul Jones & Robert Plant', 254406, 8420427, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1605, N'Fool In The Rain', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 372950, 12371433, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1606, N'Hot Dog', 130, 1, 1, N'Jimmy Page & Robert Plant', 197198, 6536167, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1607, N'Carouselambra', 130, 1, 1, N'John Paul Jones, Jimmy Page & Robert Plant', 634435, 20858315, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1608, N'All My Love', 130, 1, 1, N'Robert Plant & John Paul Jones', 356284, 11684862, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1609, N'I''m Gonna Crawl', 130, 1, 1, N'Jimmy Page, Robert Plant & John Paul Jones', 329639, 10737665, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1610, N'Black Dog', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 296672, 9660588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1611, N'Rock & Roll', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 220917, 7142127, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1612, N'The Battle Of Evermore', 131, 1, 1, N'Jimmy Page, Robert Plant', 351555, 11525689, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1613, N'Stairway To Heaven', 131, 1, 1, N'Jimmy Page, Robert Plant', 481619, 15706767, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1614, N'Misty Mountain Hop', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 278857, 9092799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1615, N'Four Sticks', 131, 1, 1, N'Jimmy Page, Robert Plant', 284447, 9481301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1616, N'Going To California', 131, 1, 1, N'Jimmy Page, Robert Plant', 215693, 7068737, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1617, N'When The Levee Breaks', 131, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie', 427702, 13912107, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1618, N'Good Times Bad Times', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 166164, 5464077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1619, N'Babe I''m Gonna Leave You', 132, 1, 1, N'Jimmy Page/Robert Plant', 401475, 13189312, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1620, N'You Shook Me', 132, 1, 1, N'J. B. Lenoir/Willie Dixon', 388179, 12643067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1621, N'Dazed and Confused', 132, 1, 1, N'Jimmy Page', 386063, 12610326, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1622, N'Your Time Is Gonna Come', 132, 1, 1, N'Jimmy Page/John Paul Jones', 274860, 9011653, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1623, N'Black Mountain Side', 132, 1, 1, N'Jimmy Page', 132702, 4440602, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1624, N'Communication Breakdown', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 150230, 4899554, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1625, N'I Can''t Quit You Baby', 132, 1, 1, N'Willie Dixon', 282671, 9252733, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1626, N'How Many More Times', 132, 1, 1, N'Jimmy Page/John Bonham/John Paul Jones', 508055, 16541364, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1627, N'Whole Lotta Love', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 334471, 11026243, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1628, N'What Is And What Should Never Be', 133, 1, 1, N'Jimmy Page, Robert Plant', 287973, 9369385, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1629, N'The Lemon Song', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 379141, 12463496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1630, N'Thank You', 133, 1, 1, N'Jimmy Page, Robert Plant', 287791, 9337392, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1631, N'Heartbreaker', 133, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 253988, 8387560, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1632, N'Living Loving Maid (She''s Just A Woman)', 133, 1, 1, N'Jimmy Page, Robert Plant', 159216, 5219819, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1633, N'Ramble On', 133, 1, 1, N'Jimmy Page, Robert Plant', 275591, 9199710, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1634, N'Moby Dick', 133, 1, 1, N'John Bonham, John Paul Jones, Jimmy Page', 260728, 8664210, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1635, N'Bring It On Home', 133, 1, 1, N'Jimmy Page, Robert Plant', 259970, 8494731, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1636, N'Immigrant Song', 134, 1, 1, N'Jimmy Page, Robert Plant', 144875, 4786461, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1637, N'Friends', 134, 1, 1, N'Jimmy Page, Robert Plant', 233560, 7694220, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1638, N'Celebration Day', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 209528, 6871078, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1639, N'Since I''ve Been Loving You', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 444055, 14482460, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1640, N'Out On The Tiles', 134, 1, 1, N'Jimmy Page, Robert Plant, John Bonham', 246047, 8060350, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1641, N'Gallows Pole', 134, 1, 1, N'Traditional', 296228, 9757151, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1642, N'Tangerine', 134, 1, 1, N'Jimmy Page', 189675, 6200893, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1643, N'That''s The Way', 134, 1, 1, N'Jimmy Page, Robert Plant', 337345, 11202499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1644, N'Bron-Y-Aur Stomp', 134, 1, 1, N'Jimmy Page, Robert Plant, John Paul Jones', 259500, 8674508, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1645, N'Hats Off To (Roy) Harper', 134, 1, 1, N'Traditional', 219376, 7236640, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1646, N'In The Light', 135, 1, 1, N'John Paul Jones/Robert Plant', 526785, 17033046, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1647, N'Bron-Yr-Aur', 135, 1, 1, N'Jimmy Page', 126641, 4150746, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1648, N'Down By The Seaside', 135, 1, 1, N'Robert Plant', 316186, 10371282, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1649, N'Ten Years Gone', 135, 1, 1, N'Robert Plant', 393116, 12756366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1650, N'Night Flight', 135, 1, 1, N'John Paul Jones/Robert Plant', 217547, 7160647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1651, N'The Wanton Song', 135, 1, 1, N'Robert Plant', 249887, 8180988, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1652, N'Boogie With Stu', 135, 1, 1, N'Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant', 233273, 7657086, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1653, N'Black Country Woman', 135, 1, 1, N'Robert Plant', 273084, 8951732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1654, N'Sick Again', 135, 1, 1, N'Robert Plant', 283036, 9279263, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1655, N'Achilles Last Stand', 136, 1, 1, N'Jimmy Page/Robert Plant', 625502, 20593955, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1656, N'For Your Life', 136, 1, 1, N'Jimmy Page/Robert Plant', 384391, 12633382, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1657, N'Royal Orleans', 136, 1, 1, N'John Bonham/John Paul Jones', 179591, 5930027, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1658, N'Nobody''s Fault But Mine', 136, 1, 1, N'Jimmy Page/Robert Plant', 376215, 12237859, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1659, N'Candy Store Rock', 136, 1, 1, N'Jimmy Page/Robert Plant', 252055, 8397423, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1660, N'Hots On For Nowhere', 136, 1, 1, N'Jimmy Page/Robert Plant', 284107, 9342342, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1661, N'Tea For One', 136, 1, 1, N'Jimmy Page/Robert Plant', 566752, 18475264, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1662, N'Rock & Roll', 137, 1, 1, N'John Bonham/John Paul Jones/Robert Plant', 242442, 7897065, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1663, N'Celebration Day', 137, 1, 1, N'John Paul Jones/Robert Plant', 230034, 7478487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1664, N'The Song Remains The Same', 137, 1, 1, N'Robert Plant', 353358, 11465033, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1665, N'Rain Song', 137, 1, 1, N'Robert Plant', 505808, 16273705, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1666, N'Dazed And Confused', 137, 1, 1, N'Jimmy Page', 1612329, 52490554, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1667, N'No Quarter', 138, 1, 1, N'John Paul Jones/Robert Plant', 749897, 24399285, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1668, N'Stairway To Heaven', 138, 1, 1, N'Robert Plant', 657293, 21354766, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1669, N'Moby Dick', 138, 1, 1, N'John Bonham/John Paul Jones', 766354, 25345841, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1670, N'Whole Lotta Love', 138, 1, 1, N'John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 863895, 28191437, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1671, N'Natália', 139, 1, 7, N'Renato Russo', 235728, 7640230, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1672, N'L''Avventura', 139, 1, 7, N'Renato Russo', 278256, 9165769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1673, N'Música De Trabalho', 139, 1, 7, N'Renato Russo', 260231, 8590671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1674, N'Longe Do Meu Lado', 139, 1, 7, N'Renato Russo - Marcelo Bonfá', 266161, 8655249, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1675, N'A Via Láctea', 139, 1, 7, N'Renato Russo', 280084, 9234879, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1676, N'Música Ambiente', 139, 1, 7, N'Renato Russo', 247614, 8234388, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1677, N'Aloha', 139, 1, 7, N'Renato Russo', 325955, 10793301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1678, N'Soul Parsifal', 139, 1, 7, N'Renato Russo - Marisa Monte', 295053, 9853589, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1679, N'Dezesseis', 139, 1, 7, N'Renato Russo', 323918, 10573515, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1680, N'Mil Pedaços', 139, 1, 7, N'Renato Russo', 203337, 6643291, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1681, N'Leila', 139, 1, 7, N'Renato Russo', 323056, 10608239, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1682, N'1º De Julho', 139, 1, 7, N'Renato Russo', 290298, 9619257, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1683, N'Esperando Por Mim', 139, 1, 7, N'Renato Russo', 261668, 8844133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1684, N'Quando Você Voltar', 139, 1, 7, N'Renato Russo', 173897, 5781046, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1685, N'O Livro Dos Dias', 139, 1, 7, N'Renato Russo', 257253, 8570929, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1686, N'Será', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 148401, 4826528, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1687, N'Ainda É Cedo', 140, 1, 7, N'Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonfá', 236826, 7796400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1688, N'Geração Coca-Cola', 140, 1, 7, N'Renato Russo', 141453, 4625731, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1689, N'Eduardo E Mônica', 140, 1, 7, N'Renato Russo', 271229, 9026691, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1690, N'Tempo Perdido', 140, 1, 7, N'Renato Russo', 302158, 9963914, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1691, N'Indios', 140, 1, 7, N'Renato Russo', 258168, 8610226, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1692, N'Que País É Este', 140, 1, 7, N'Renato Russo', 177606, 5822124, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1693, N'Faroeste Caboclo', 140, 1, 7, N'Renato Russo', 543007, 18092739, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1694, N'Há Tempos', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 197146, 6432922, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1695, N'Pais E Filhos', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 308401, 10130685, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1696, N'Meninos E Meninas', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 203781, 6667802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1697, N'Vento No Litoral', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 366445, 12063806, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1698, N'Perfeição', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 276558, 9258489, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1699, N'Giz', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 202213, 6677671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1700, N'Dezesseis', 140, 1, 7, N'Dado Villa-Lobos/Marcelo Bonfá', 321724, 10501773, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1701, N'Antes Das Seis', 140, 1, 7, N'Dado Villa-Lobos', 189231, 6296531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1702, N'Are You Gonna Go My Way', 141, 1, 1, N'Craig Ross/Lenny Kravitz', 211591, 6905135, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1703, N'Fly Away', 141, 1, 1, N'Lenny Kravitz', 221962, 7322085, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1704, N'Rock And Roll Is Dead', 141, 1, 1, N'Lenny Kravitz', 204199, 6680312, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1705, N'Again', 141, 1, 1, N'Lenny Kravitz', 228989, 7490476, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1706, N'It Ain''t Over ''Til It''s Over', 141, 1, 1, N'Lenny Kravitz', 242703, 8078936, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1707, N'Can''t Get You Off My Mind', 141, 1, 1, N'Lenny Kravitz', 273815, 8937150, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1708, N'Mr. Cab Driver', 141, 1, 1, N'Lenny Kravitz', 230321, 7668084, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1709, N'American Woman', 141, 1, 1, N'B. Cummings/G. Peterson/M.J. Kale/R. Bachman', 261773, 8538023, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1710, N'Stand By My Woman', 141, 1, 1, N'Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan', 259683, 8447611, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1711, N'Always On The Run', 141, 1, 1, N'Lenny Kravitz/Slash', 232515, 7593397, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1712, N'Heaven Help', 141, 1, 1, N'Gerry DeVeaux/Terry Britten', 190354, 6222092, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1713, N'I Belong To You', 141, 1, 1, N'Lenny Kravitz', 257123, 8477980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1714, N'Believe', 141, 1, 1, N'Henry Hirsch/Lenny Kravitz', 295131, 9661978, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1715, N'Let Love Rule', 141, 1, 1, N'Lenny Kravitz', 342648, 11298085, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1716, N'Black Velveteen', 141, 1, 1, N'Lenny Kravitz', 290899, 9531301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1717, N'Assim Caminha A Humanidade', 142, 1, 7, 210755, 6993763, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1718, N'Honolulu', 143, 1, 7, 261433, 8558481, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1719, N'Dancin´Days', 143, 1, 7, 237400, 7875347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1720, N'Um Pro Outro', 142, 1, 7, 236382, 7825215, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1721, N'Aviso Aos Navegantes', 143, 1, 7, 242808, 8058651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1722, N'Casa', 142, 1, 7, 307591, 10107269, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1723, N'Condição', 142, 1, 7, 263549, 8778465, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1724, N'Hyperconectividade', 143, 1, 7, 180636, 5948039, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1725, N'O Descobridor Dos Sete Mares', 143, 1, 7, 225854, 7475780, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1726, N'Satisfação', 142, 1, 7, 208065, 6901681, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1727, N'Brumário', 142, 1, 7, 216241, 7243499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1728, N'Um Certo Alguém', 143, 1, 7, 194063, 6430939, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1729, N'Fullgás', 143, 1, 7, 346070, 11505484, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1730, N'Sábado À Noite', 142, 1, 7, 193854, 6435114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1731, N'A Cura', 142, 1, 7, 280920, 9260588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1732, N'Aquilo', 143, 1, 7, 246073, 8167819, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1733, N'Atrás Do Trio Elétrico', 142, 1, 7, 149080, 4917615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1734, N'Senta A Pua', 143, 1, 7, 217547, 7205844, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1735, N'Ro-Que-Se-Da-Ne', 143, 1, 7, 146703, 4805897, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1736, N'Tudo Bem', 142, 1, 7, 196101, 6419139, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1737, N'Toda Forma De Amor', 142, 1, 7, 227813, 7496584, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1738, N'Tudo Igual', 143, 1, 7, 276035, 9201645, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1739, N'Fogo De Palha', 143, 1, 7, 246804, 8133732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1740, N'Sereia', 142, 1, 7, 278047, 9121087, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1741, N'Assaltaram A Gramática', 143, 1, 7, 261041, 8698959, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1742, N'Se Você Pensa', 142, 1, 7, 195996, 6552490, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1743, N'Lá Vem O Sol (Here Comes The Sun)', 142, 1, 7, 189492, 6229645, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1744, N'O Último Romântico (Ao Vivo)', 143, 1, 7, 231993, 7692697, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1745, N'Pseudo Silk Kimono', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 134739, 4334038, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1746, N'Kayleigh', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 234605, 7716005, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1747, N'Lavender', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 153417, 4999814, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1748, N'Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 356493, 11791068, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1749, N'Heart Of Lothian: Wide Boy / Curtain Call', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 366053, 11893723, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1750, N'Waterhole (Expresso Bongo)', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 133093, 4378835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1751, N'Lords Of The Backstage', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 112875, 3741319, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1752, N'Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 569704, 18578995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1753, N'Childhoods End?', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 272796, 9015366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1754, N'White Feather', 144, 1, 1, N'Kelly, Mosley, Rothery, Trewaves', 143595, 4711776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1755, N'Arrepio', 145, 1, 7, N'Carlinhos Brown', 136254, 4511390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1756, N'Magamalabares', 145, 1, 7, N'Carlinhos Brown', 215875, 7183757, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1757, N'Chuva No Brejo', 145, 1, 7, N'Morais', 145606, 4857761, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1758, N'Cérebro Eletrônico', 145, 1, 7, N'Gilberto Gil', 172800, 5760864, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1759, N'Tempos Modernos', 145, 1, 7, N'Lulu Santos', 183066, 6066234, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1760, N'Maraçá', 145, 1, 7, N'Carlinhos Brown', 230008, 7621482, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1761, N'Blanco', 145, 1, 7, N'Marisa Monte/poema de Octavio Paz/versão: Haroldo de Campos', 45191, 1454532, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1762, N'Panis Et Circenses', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 192339, 6318373, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1763, N'De Noite Na Cama', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 209005, 7012658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1764, N'Beija Eu', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 197276, 6512544, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1765, N'Give Me Love', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 249808, 8196331, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1766, N'Ainda Lembro', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 218801, 7211247, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1767, N'A Menina Dança', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 129410, 4326918, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1768, N'Dança Da Solidão', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 203520, 6699368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1769, N'Ao Meu Redor', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 275591, 9158834, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1770, N'Bem Leve', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 159190, 5246835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1771, N'Segue O Seco', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 178207, 5922018, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1772, N'O Xote Das Meninas', 145, 1, 7, N'Caetano Veloso e Gilberto Gil', 291866, 9553228, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1773, N'Wherever I Lay My Hat', 146, 1, 14, 136986, 4477321, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1774, N'Get My Hands On Some Lovin''', 146, 1, 14, 149054, 4860380, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1775, N'No Good Without You', 146, 1, 14, N'William "Mickey" Stevenson', 161410, 5259218, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1776, N'You''ve Been A Long Time Coming', 146, 1, 14, N'Brian Holland/Eddie Holland/Lamont Dozier', 137221, 4437949, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1777, N'When I Had Your Love', 146, 1, 14, N'Robert Rogers/Warren "Pete" Moore/William "Mickey" Stevenson', 152424, 4972815, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1778, N'You''re What''s Happening (In The World Today)', 146, 1, 14, N'Allen Story/George Gordy/Robert Gordy', 142027, 4631104, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1779, N'Loving You Is Sweeter Than Ever', 146, 1, 14, N'Ivy Hunter/Stevie Wonder', 166295, 5377546, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1780, N'It''s A Bitter Pill To Swallow', 146, 1, 14, N'Smokey Robinson/Warren "Pete" Moore', 194821, 6477882, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1781, N'Seek And You Shall Find', 146, 1, 14, N'Ivy Hunter/William "Mickey" Stevenson', 223451, 7306719, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1782, N'Gonna Keep On Tryin'' Till I Win Your Love', 146, 1, 14, N'Barrett Strong/Norman Whitfield', 176404, 5789945, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1783, N'Gonna Give Her All The Love I''ve Got', 146, 1, 14, N'Barrett Strong/Norman Whitfield', 210886, 6893603, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1784, N'I Wish It Would Rain', 146, 1, 14, N'Barrett Strong/Norman Whitfield/Roger Penzabene', 172486, 5647327, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1785, N'Abraham, Martin And John', 146, 1, 14, N'Dick Holler', 273057, 8888206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1786, N'Save The Children', 146, 1, 14, N'Al Cleveland/Marvin Gaye/Renaldo Benson', 194821, 6342021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1787, N'You Sure Love To Ball', 146, 1, 14, N'Marvin Gaye', 218540, 7217872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1788, N'Ego Tripping Out', 146, 1, 14, N'Marvin Gaye', 314514, 10383887, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1789, N'Praise', 146, 1, 14, N'Marvin Gaye', 235833, 7839179, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1790, N'Heavy Love Affair', 146, 1, 14, N'Marvin Gaye', 227892, 7522232, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1791, N'Down Under', 147, 1, 1, 222171, 7366142, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1792, N'Overkill', 147, 1, 1, 225410, 7408652, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1793, N'Be Good Johnny', 147, 1, 1, 216320, 7139814, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1794, N'Everything I Need', 147, 1, 1, 216476, 7107625, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1795, N'Down by the Sea', 147, 1, 1, 408163, 13314900, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1796, N'Who Can It Be Now?', 147, 1, 1, 202396, 6682850, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1797, N'It''s a Mistake', 147, 1, 1, 273371, 8979965, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1798, N'Dr. Heckyll & Mr. Jive', 147, 1, 1, 278465, 9110403, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1799, N'Shakes and Ladders', 147, 1, 1, 198008, 6560753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1800, N'No Sign of Yesterday', 147, 1, 1, 362004, 11829011, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1801, N'Enter Sandman', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 332251, 10852002, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1802, N'Sad But True', 148, 1, 3, N'Ulrich', 324754, 10541258, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1803, N'Holier Than Thou', 148, 1, 3, N'Ulrich', 227892, 7462011, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1804, N'The Unforgiven', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 387082, 12646886, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1805, N'Wherever I May Roam', 148, 1, 3, N'Ulrich', 404323, 13161169, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1806, N'Don''t Tread On Me', 148, 1, 3, N'Ulrich', 240483, 7827907, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1807, N'Through The Never', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 244375, 8024047, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1808, N'Nothing Else Matters', 148, 1, 3, N'Ulrich', 388832, 12606241, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1809, N'Of Wolf And Man', 148, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 256835, 8339785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1810, N'The God That Failed', 148, 1, 3, N'Ulrich', 308610, 10055959, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1811, N'My Friend Of Misery', 148, 1, 3, N'James Hetfield, Lars Ulrich and Jason Newsted', 409547, 13293515, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1812, N'The Struggle Within', 148, 1, 3, N'Ulrich', 234240, 7654052, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1813, N'Helpless', 149, 1, 3, N'Harris/Tatler', 398315, 12977902, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1814, N'The Small Hours', 149, 1, 3, N'Holocaust', 403435, 13215133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1815, N'The Wait', 149, 1, 3, N'Killing Joke', 295418, 9688418, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1816, N'Crash Course In Brain Surgery', 149, 1, 3, N'Bourge/Phillips/Shelley', 190406, 6233729, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1817, N'Last Caress/Green Hell', 149, 1, 3, N'Danzig', 209972, 6854313, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1818, N'Am I Evil?', 149, 1, 3, N'Harris/Tatler', 470256, 15387219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1819, N'Blitzkrieg', 149, 1, 3, N'Jones/Sirotto/Smith', 216685, 7090018, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1820, N'Breadfan', 149, 1, 3, N'Bourge/Phillips/Shelley', 341551, 11100130, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1821, N'The Prince', 149, 1, 3, N'Harris/Tatler', 265769, 8624492, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1822, N'Stone Cold Crazy', 149, 1, 3, N'Deacon/May/Mercury/Taylor', 137717, 4514830, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1823, N'So What', 149, 1, 3, N'Culmer/Exalt', 189152, 6162894, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1824, N'Killing Time', 149, 1, 3, N'Sweet Savage', 183693, 6021197, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1825, N'Overkill', 149, 1, 3, N'Clarke/Kilmister/Tayler', 245133, 7971330, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1826, N'Damage Case', 149, 1, 3, N'Clarke/Farren/Kilmister/Tayler', 220212, 7212997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1827, N'Stone Dead Forever', 149, 1, 3, N'Clarke/Kilmister/Tayler', 292127, 9556060, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1828, N'Too Late Too Late', 149, 1, 3, N'Clarke/Kilmister/Tayler', 192052, 6276291, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1829, N'Hit The Lights', 150, 1, 3, N'James Hetfield, Lars Ulrich', 257541, 8357088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1830, N'The Four Horsemen', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 433188, 14178138, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1831, N'Motorbreath', 150, 1, 3, N'James Hetfield', 188395, 6153933, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1832, N'Jump In The Fire', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 281573, 9135755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1833, N'(Anesthesia) Pulling Teeth', 150, 1, 3, N'Cliff Burton', 254955, 8234710, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1834, N'Whiplash', 150, 1, 3, N'James Hetfield, Lars Ulrich', 249208, 8102839, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1835, N'Phantom Lord', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 302053, 9817143, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1836, N'No Remorse', 150, 1, 3, N'James Hetfield, Lars Ulrich', 386795, 12672166, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1837, N'Seek & Destroy', 150, 1, 3, N'James Hetfield, Lars Ulrich', 415817, 13452301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1838, N'Metal Militia', 150, 1, 3, N'James Hetfield, Lars Ulrich, Dave Mustaine', 311327, 10141785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1839, N'Ain''t My Bitch', 151, 1, 3, N'James Hetfield, Lars Ulrich', 304457, 9931015, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1840, N'2 X 4', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 328254, 10732251, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1841, N'The House Jack Built', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 398942, 13005152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1842, N'Until It Sleeps', 151, 1, 3, N'James Hetfield, Lars Ulrich', 269740, 8837394, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1843, N'King Nothing', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 328097, 10681477, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1844, N'Hero Of The Day', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 261982, 8540298, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1845, N'Bleeding Me', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 497998, 16249420, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1846, N'Cure', 151, 1, 3, N'James Hetfield, Lars Ulrich', 294347, 9648615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1847, N'Poor Twisted Me', 151, 1, 3, N'James Hetfield, Lars Ulrich', 240065, 7854349, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1848, N'Wasted My Hate', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 237296, 7762300, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1849, N'Mama Said', 151, 1, 3, N'James Hetfield, Lars Ulrich', 319764, 10508310, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1850, N'Thorn Within', 151, 1, 3, N'James Hetfield, Lars Ulrich, Kirk Hammett', 351738, 11486686, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1851, N'Ronnie', 151, 1, 3, N'James Hetfield, Lars Ulrich', 317204, 10390947, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1852, N'The Outlaw Torn', 151, 1, 3, N'James Hetfield, Lars Ulrich', 588721, 19286261, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1853, N'Battery', 152, 1, 3, N'J.Hetfield/L.Ulrich', 312424, 10229577, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1854, N'Master Of Puppets', 152, 1, 3, N'K.Hammett', 515239, 16893720, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1855, N'The Thing That Should Not Be', 152, 1, 3, N'K.Hammett', 396199, 12952368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1856, N'Welcome Home (Sanitarium)', 152, 1, 3, N'K.Hammett', 387186, 12679965, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1857, N'Disposable Heroes', 152, 1, 3, N'J.Hetfield/L.Ulrich', 496718, 16135560, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1858, N'Leper Messiah', 152, 1, 3, N'C.Burton', 347428, 11310434, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1859, N'Orion', 152, 1, 3, N'K.Hammett', 500062, 16378477, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1860, N'Damage Inc.', 152, 1, 3, N'K.Hammett', 330919, 10725029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1861, N'Fuel', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 269557, 8876811, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1862, N'The Memory Remains', 153, 1, 3, N'Hetfield, Ulrich', 279353, 9110730, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1863, N'Devil''s Dance', 153, 1, 3, N'Hetfield, Ulrich', 318955, 10414832, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1864, N'The Unforgiven II', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 395520, 12886474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1865, N'Better Than You', 153, 1, 3, N'Hetfield, Ulrich', 322899, 10549070, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1866, N'Slither', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 313103, 10199789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1867, N'Carpe Diem Baby', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 372480, 12170693, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1868, N'Bad Seed', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 245394, 8019586, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1869, N'Where The Wild Things Are', 153, 1, 3, N'Hetfield, Ulrich, Newsted', 414380, 13571280, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1870, N'Prince Charming', 153, 1, 3, N'Hetfield, Ulrich', 365061, 12009412, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1871, N'Low Man''s Lyric', 153, 1, 3, N'Hetfield, Ulrich', 457639, 14855583, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1872, N'Attitude', 153, 1, 3, N'Hetfield, Ulrich', 315898, 10335734, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1873, N'Fixxxer', 153, 1, 3, N'Hetfield, Ulrich, Hammett', 496065, 16190041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1874, N'Fight Fire With Fire', 154, 1, 3, N'Metallica', 285753, 9420856, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1875, N'Ride The Lightning', 154, 1, 3, N'Metallica', 397740, 13055884, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1876, N'For Whom The Bell Tolls', 154, 1, 3, N'Metallica', 311719, 10159725, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1877, N'Fade To Black', 154, 1, 3, N'Metallica', 414824, 13531954, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1878, N'Trapped Under Ice', 154, 1, 3, N'Metallica', 244532, 7975942, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1879, N'Escape', 154, 1, 3, N'Metallica', 264359, 8652332, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1880, N'Creeping Death', 154, 1, 3, N'Metallica', 396878, 12955593, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1881, N'The Call Of Ktulu', 154, 1, 3, N'Metallica', 534883, 17486240, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1882, N'Frantic', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 350458, 11510849, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1883, N'St. Anger', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 441234, 14363779, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1884, N'Some Kind Of Monster', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 505626, 16557497, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1885, N'Dirty Window', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 324989, 10670604, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1886, N'Invisible Kid', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 510197, 16591800, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1887, N'My World', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 345626, 11253756, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1888, N'Shoot Me Again', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 430210, 14093551, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1889, N'Sweet Amber', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 327235, 10616595, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1890, N'The Unnamed Feeling', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 429479, 14014582, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1891, N'Purify', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 314017, 10232537, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1892, N'All Within My Hands', 155, 1, 3, N'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 527986, 17162741, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1893, N'Blackened', 156, 1, 3, N'James Hetfield, Lars Ulrich & Jason Newsted', 403382, 13254874, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1894, N'...And Justice For All', 156, 1, 3, N'James Hetfield, Lars Ulrich & Kirk Hammett', 585769, 19262088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1895, N'Eye Of The Beholder', 156, 1, 3, N'James Hetfield, Lars Ulrich & Kirk Hammett', 385828, 12747894, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1896, N'One', 156, 1, 3, N'James Hetfield & Lars Ulrich', 446484, 14695721, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1897, N'The Shortest Straw', 156, 1, 3, N'James Hetfield and Lars Ulrich', 395389, 13013990, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1898, N'Harvester Of Sorrow', 156, 1, 3, N'James Hetfield and Lars Ulrich', 345547, 11377339, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1899, N'The Frayed Ends Of Sanity', 156, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 464039, 15198986, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1900, N'To Live Is To Die', 156, 1, 3, N'James Hetfield, Lars Ulrich and Cliff Burton', 588564, 19243795, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1901, N'Dyers Eve', 156, 1, 3, N'James Hetfield, Lars Ulrich and Kirk Hammett', 313991, 10302828, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1902, N'Springsville', 157, 1, 2, N'J. Carisi', 207725, 6776219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1903, N'The Maids Of Cadiz', 157, 1, 2, N'L. Delibes', 233534, 7505275, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1904, N'The Duke', 157, 1, 2, N'Dave Brubeck', 214961, 6977626, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1905, N'My Ship', 157, 1, 2, N'Ira Gershwin, Kurt Weill', 268016, 8581144, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1906, N'Miles Ahead', 157, 1, 2, N'Miles Davis, Gil Evans', 209893, 6807707, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1907, N'Blues For Pablo', 157, 1, 2, N'Gil Evans', 318328, 10218398, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1908, N'New Rhumba', 157, 1, 2, N'A. Jamal', 276871, 8980400, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1909, N'The Meaning Of The Blues', 157, 1, 2, N'R. Troup, L. Worth', 168594, 5395412, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1910, N'Lament', 157, 1, 2, N'J.J. Johnson', 134191, 4293394, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1911, N'I Don''t Wanna Be Kissed (By Anyone But You)', 157, 1, 2, N'H. Spina, J. Elliott', 191320, 6219487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1912, N'Springsville (Alternate Take)', 157, 1, 2, N'J. Carisi', 196388, 6382079, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1913, N'Blues For Pablo (Alternate Take)', 157, 1, 2, N'Gil Evans', 212558, 6900619, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1914, N'The Meaning Of The Blues/Lament (Alternate Take)', 157, 1, 2, N'J.J. Johnson/R. Troup, L. Worth', 309786, 9912387, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1915, N'I Don''t Wanna Be Kissed (By Anyone But You) (Alternate Take)', 157, 1, 2, N'H. Spina, J. Elliott', 192078, 6254796, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1916, N'Coração De Estudante', 158, 1, 7, N'Wagner Tiso, Milton Nascimento', 238550, 7797308, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1917, N'A Noite Do Meu Bem', 158, 1, 7, N'Dolores Duran', 220081, 7125225, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1918, N'Paisagem Na Janela', 158, 1, 7, N'Lô Borges, Fernando Brant', 197694, 6523547, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1919, N'Cuitelinho', 158, 1, 7, N'Folclore', 209397, 6803970, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1920, N'Caxangá', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 245551, 8144179, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1921, N'Nos Bailes Da Vida', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 275748, 9126170, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1922, N'Menestrel Das Alagoas', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 199758, 6542289, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1923, N'Brasil', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 155428, 5252560, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1924, N'Canção Do Novo Mundo', 158, 1, 7, N'Beto Guedes, Ronaldo Bastos', 215353, 7032626, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1925, N'Um Gosto De Sol', 158, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 307200, 9893875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1926, N'Solar', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 156212, 5098288, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1927, N'Para Lennon E McCartney', 158, 1, 7, N'Lô Borges, Márcio Borges, Fernando Brant', 321828, 10626920, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1928, N'Maria, Maria', 158, 1, 7, N'Milton Nascimento, Fernando Brant', 72463, 2371543, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1929, N'Minas', 159, 1, 7, N'Milton Nascimento, Caetano Veloso', 152293, 4921056, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1930, N'Fé Cega, Faca Amolada', 159, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 278099, 9258649, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1931, N'Beijo Partido', 159, 1, 7, N'Toninho Horta', 229564, 7506969, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1932, N'Saudade Dos Aviões Da Panair (Conversando No Bar)', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 268721, 8805088, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1933, N'Gran Circo', 159, 1, 7, N'Milton Nascimento, Márcio Borges', 251297, 8237026, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1934, N'Ponta de Areia', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 272796, 8874285, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1935, N'Trastevere', 159, 1, 7, N'Milton Nascimento, Ronaldo Bastos', 265665, 8708399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1936, N'Idolatrada', 159, 1, 7, N'Milton Nascimento, Fernando Brant', 286249, 9426153, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1937, N'Leila (Venha Ser Feliz)', 159, 1, 7, N'Milton Nascimento', 209737, 6898507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1938, N'Paula E Bebeto', 159, 1, 7, N'Milton Nascimento, Caetano Veloso', 135732, 4583956, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1939, N'Simples', 159, 1, 7, N'Nelson Angelo', 133093, 4326333, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1940, N'Norwegian Wood', 159, 1, 7, N'John Lennon, Paul McCartney', 413910, 13520382, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1941, N'Caso Você Queira Saber', 159, 1, 7, N'Beto Guedes, Márcio Borges', 205688, 6787901, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1942, N'Ace Of Spades', 160, 1, 3, N'Clarke/Kilmister/Taylor', 169926, 5523552, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1943, N'Love Me Like A Reptile', 160, 1, 3, N'Clarke/Kilmister/Taylor', 203546, 6616389, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1944, N'Shoot You In The Back', 160, 1, 3, N'Clarke/Kilmister/Taylor', 160026, 5175327, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1945, N'Live To Win', 160, 1, 3, N'Clarke/Kilmister/Taylor', 217626, 7102182, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1946, N'Fast And Loose', 160, 1, 3, N'Clarke/Kilmister/Taylor', 203337, 6643350, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1947, N'(We Are) The Road Crew', 160, 1, 3, N'Clarke/Kilmister/Taylor', 192600, 6283035, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1948, N'Fire Fire', 160, 1, 3, N'Clarke/Kilmister/Taylor', 164675, 5416114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1949, N'Jailbait', 160, 1, 3, N'Clarke/Kilmister/Taylor', 213916, 6983609, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1950, N'Dance', 160, 1, 3, N'Clarke/Kilmister/Taylor', 158432, 5155099, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1951, N'Bite The Bullet', 160, 1, 3, N'Clarke/Kilmister/Taylor', 98115, 3195536, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1952, N'The Chase Is Better Than The Catch', 160, 1, 3, N'Clarke/Kilmister/Taylor', 258403, 8393310, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1953, N'The Hammer', 160, 1, 3, N'Clarke/Kilmister/Taylor', 168071, 5543267, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1954, N'Dirty Love', 160, 1, 3, N'Clarke/Kilmister/Taylor', 176457, 5805241, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1955, N'Please Don''t Touch', 160, 1, 3, N'Heath/Robinson', 169926, 5557002, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1956, N'Emergency', 160, 1, 3, N'Dufort/Johnson/McAuliffe/Williams', 180427, 5828728, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1957, N'Kir Royal', 161, 1, 16, N'Mônica Marianno', 234788, 7706552, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1958, N'O Que Vai Em Meu Coração', 161, 1, 16, N'Mônica Marianno', 255373, 8366846, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1959, N'Aos Leões', 161, 1, 16, N'Mônica Marianno', 234684, 7790574, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1960, N'Dois Índios', 161, 1, 16, N'Mônica Marianno', 219271, 7213072, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1961, N'Noite Negra', 161, 1, 16, N'Mônica Marianno', 206811, 6819584, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1962, N'Beijo do Olhar', 161, 1, 16, N'Mônica Marianno', 252682, 8369029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1963, N'É Fogo', 161, 1, 16, N'Mônica Marianno', 194873, 6501520, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1964, N'Já Foi', 161, 1, 16, N'Mônica Marianno', 245681, 8094872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1965, N'Só Se For Pelo Cabelo', 161, 1, 16, N'Mônica Marianno', 238288, 8006345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1966, N'No Clima', 161, 1, 16, N'Mônica Marianno', 249495, 8362040, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1967, N'A Moça e a Chuva', 161, 1, 16, N'Mônica Marianno', 274625, 8929357, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1968, N'Demorou!', 161, 1, 16, N'Mônica Marianno', 39131, 1287083, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1969, N'Bitter Pill', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 266814, 8666786, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1970, N'Enslaved', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee', 269844, 8789966, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1971, N'Girls, Girls, Girls', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee', 270288, 8874814, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1972, N'Kickstart My Heart', 162, 1, 3, N'Nikki Sixx', 283559, 9237736, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1973, N'Wild Side', 162, 1, 3, N'Nikki Sixx/Tommy Lee/Vince Neil', 276767, 9116997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1974, N'Glitter', 162, 1, 3, N'Bryan Adams/Nikki Sixx/Scott Humphrey', 340114, 11184094, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1975, N'Dr. Feelgood', 162, 1, 3, N'Mick Mars/Nikki Sixx', 282618, 9281875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1976, N'Same Ol'' Situation', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 254511, 8283958, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1977, N'Home Sweet Home', 162, 1, 3, N'Nikki Sixx/Tommy Lee/Vince Neil', 236904, 7697538, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1978, N'Afraid', 162, 1, 3, N'Nikki Sixx', 248006, 8077464, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1979, N'Don''t Go Away Mad (Just Go Away)', 162, 1, 3, N'Mick Mars/Nikki Sixx', 279980, 9188156, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1980, N'Without You', 162, 1, 3, N'Mick Mars/Nikki Sixx', 268956, 8738371, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1981, N'Smokin'' in The Boys Room', 162, 1, 3, N'Cub Coda/Michael Lutz', 206837, 6735408, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1982, N'Primal Scream', 162, 1, 3, N'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 286197, 9421164, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1983, N'Too Fast For Love', 162, 1, 3, N'Nikki Sixx', 200829, 6580542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1984, N'Looks That Kill', 162, 1, 3, N'Nikki Sixx', 240979, 7831122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1985, N'Shout At The Devil', 162, 1, 3, N'Nikki Sixx', 221962, 7281974, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1986, N'Intro', 163, 1, 1, N'Kurt Cobain', 52218, 1688527, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1987, N'School', 163, 1, 1, N'Kurt Cobain', 160235, 5234885, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1988, N'Drain You', 163, 1, 1, N'Kurt Cobain', 215196, 7013175, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1989, N'Aneurysm', 163, 1, 1, N'Nirvana', 271516, 8862545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1990, N'Smells Like Teen Spirit', 163, 1, 1, N'Nirvana', 287190, 9425215, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1991, N'Been A Son', 163, 1, 1, N'Kurt Cobain', 127555, 4170369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1992, N'Lithium', 163, 1, 1, N'Kurt Cobain', 250017, 8148800, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1993, N'Sliver', 163, 1, 1, N'Kurt Cobain', 116218, 3784567, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1994, N'Spank Thru', 163, 1, 1, N'Kurt Cobain', 190354, 6186487, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1995, N'Scentless Apprentice', 163, 1, 1, N'Nirvana', 211200, 6898177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1996, N'Heart-Shaped Box', 163, 1, 1, N'Kurt Cobain', 281887, 9210982, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1997, N'Milk It', 163, 1, 1, N'Kurt Cobain', 225724, 7406945, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1998, N'Negative Creep', 163, 1, 1, N'Kurt Cobain', 163761, 5354854, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (1999, N'Polly', 163, 1, 1, N'Kurt Cobain', 149995, 4885331, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2000, N'Breed', 163, 1, 1, N'Kurt Cobain', 208378, 6759080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2001, N'Tourette''s', 163, 1, 1, N'Kurt Cobain', 115591, 3753246, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2002, N'Blew', 163, 1, 1, N'Kurt Cobain', 216346, 7096936, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2003, N'Smells Like Teen Spirit', 164, 1, 1, N'Kurt Cobain', 301296, 9823847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2004, N'In Bloom', 164, 1, 1, N'Kurt Cobain', 254928, 8327077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2005, N'Come As You Are', 164, 1, 1, N'Kurt Cobain', 219219, 7123357, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2006, N'Breed', 164, 1, 1, N'Kurt Cobain', 183928, 5984812, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2007, N'Lithium', 164, 1, 1, N'Kurt Cobain', 256992, 8404745, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2008, N'Polly', 164, 1, 1, N'Kurt Cobain', 177031, 5788407, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2009, N'Territorial Pissings', 164, 1, 1, N'Kurt Cobain', 143281, 4613880, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2010, N'Drain You', 164, 1, 1, N'Kurt Cobain', 223973, 7273440, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2011, N'Lounge Act', 164, 1, 1, N'Kurt Cobain', 156786, 5093635, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2012, N'Stay Away', 164, 1, 1, N'Kurt Cobain', 212636, 6956404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2013, N'On A Plain', 164, 1, 1, N'Kurt Cobain', 196440, 6390635, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2014, N'Something In The Way', 164, 1, 1, N'Kurt Cobain', 230556, 7472168, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2015, N'Time', 165, 1, 1, 96888, 3124455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2016, N'P.S.Apareça', 165, 1, 1, 209188, 6842244, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2017, N'Sangue Latino', 165, 1, 1, 223033, 7354184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2018, N'Folhas Secas', 165, 1, 1, 161253, 5284522, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2019, N'Poeira', 165, 1, 1, 267075, 8784141, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2020, N'Mágica', 165, 1, 1, 233743, 7627348, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2021, N'Quem Mata A Mulher Mata O Melhor', 165, 1, 1, 262791, 8640121, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2022, N'Mundaréu', 165, 1, 1, 217521, 7158975, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2023, N'O Braço Da Minha Guitarra', 165, 1, 1, 258351, 8469531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2024, N'Deus', 165, 1, 1, 284160, 9188110, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2025, N'Mãe Terra', 165, 1, 1, 306625, 9949269, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2026, N'Às Vezes', 165, 1, 1, 330292, 10706614, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2027, N'Menino De Rua', 165, 1, 1, 329795, 10784595, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2028, N'Prazer E Fé', 165, 1, 1, 214831, 7031383, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2029, N'Elza', 165, 1, 1, 199105, 6517629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2030, N'Requebra', 166, 1, 7, 240744, 8010811, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2031, N'Nossa Gente (Avisa Là)', 166, 1, 7, 188212, 6233201, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2032, N'Olodum - Alegria Geral', 166, 1, 7, 233404, 7754245, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2033, N'Madagáscar Olodum', 166, 1, 7, 252264, 8270584, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2034, N'Faraó Divindade Do Egito', 166, 1, 7, 228571, 7523278, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2035, N'Todo Amor (Asas Da Liberdade)', 166, 1, 7, 245133, 8121434, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2036, N'Denúncia', 166, 1, 7, 159555, 5327433, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2037, N'Olodum, A Banda Do Pelô', 166, 1, 7, 146599, 4900121, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2038, N'Cartao Postal', 166, 1, 7, 211565, 7082301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2039, N'Jeito Faceiro', 166, 1, 7, 217286, 7233608, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2040, N'Revolta Olodum', 166, 1, 7, 230191, 7557065, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2041, N'Reggae Odoyá', 166, 1, 7, 224470, 7499807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2042, N'Protesto Do Olodum (Ao Vivo)', 166, 1, 7, 206001, 6766104, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2043, N'Olodum - Smile (Instrumental)', 166, 1, 7, 235833, 7871409, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2044, N'Vulcão Dub - Fui Eu', 167, 1, 7, N'Bi Ribeira/Herbert Vianna/João Barone', 287059, 9495202, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2045, N'O Trem Da Juventude', 167, 1, 7, N'Herbert Vianna', 225880, 7507655, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2046, N'Manguetown', 167, 1, 7, N'Chico Science/Dengue/Lúcio Maia', 162925, 5382018, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2047, N'Um Amor, Um Lugar', 167, 1, 7, N'Herbert Vianna', 184555, 6090334, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2048, N'Bora-Bora', 167, 1, 7, N'Herbert Vianna', 182987, 6036046, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2049, N'Vai Valer', 167, 1, 7, N'Herbert Vianna', 206524, 6899778, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2050, N'I Feel Good (I Got You) - Sossego', 167, 1, 7, N'James Brown/Tim Maia', 244976, 8091302, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2051, N'Uns Dias', 167, 1, 7, N'Herbert Vianna', 240796, 7931552, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2052, N'Sincero Breu', 167, 1, 7, N'C. A./C.A./Celso Alvim/Herbert Vianna/Mário Moura/Pedro Luís/Sidon Silva', 208013, 6921669, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2053, N'Meu Erro', 167, 1, 7, N'Herbert Vianna', 188577, 6192791, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2054, N'Selvagem', 167, 1, 7, N'Bi Ribeiro/Herbert Vianna/João Barone', 148558, 4942831, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2055, N'Brasília 5:31', 167, 1, 7, N'Herbert Vianna', 178337, 5857116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2056, N'Tendo A Lua', 167, 1, 7, N'Herbert Vianna/Tet Tillett', 198922, 6568180, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2057, N'Que País É Este', 167, 1, 7, N'Renato Russo', 216685, 7137865, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2058, N'Navegar Impreciso', 167, 1, 7, N'Herbert Vianna', 262870, 8761283, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2059, N'Feira Moderna', 167, 1, 7, N'Beto Guedes/Fernando Brant/L Borges', 182517, 6001793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2060, N'Tequila - Lourinha Bombril (Parate Y Mira)', 167, 1, 7, N'Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna', 255738, 8514961, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2061, N'Vamo Batê Lata', 167, 1, 7, N'Herbert Vianna', 228754, 7585707, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2062, N'Life During Wartime', 167, 1, 7, N'Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth', 259186, 8543439, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2063, N'Nebulosa Do Amor', 167, 1, 7, N'Herbert Vianna', 203415, 6732496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2064, N'Caleidoscópio', 167, 1, 7, N'Herbert Vianna', 256522, 8484597, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2065, N'Trac Trac', 168, 1, 7, N'Fito Paez/Herbert Vianna', 231653, 7638256, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2066, N'Tendo A Lua', 168, 1, 7, N'Herbert Vianna/Tetê Tillet', 219585, 7342776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2067, N'Mensagen De Amor (2000)', 168, 1, 7, N'Herbert Vianna', 183588, 6061324, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2068, N'Lourinha Bombril', 168, 1, 7, N'Bahiano/Diego Blanco/Herbert Vianna', 159895, 5301882, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2069, N'La Bella Luna', 168, 1, 7, N'Herbert Vianna', 192653, 6428598, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2070, N'Busca Vida', 168, 1, 7, N'Herbert Vianna', 176431, 5798663, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2071, N'Uma Brasileira', 168, 1, 7, N'Carlinhos Brown/Herbert Vianna', 217573, 7280574, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2072, N'Luis Inacio (300 Picaretas)', 168, 1, 7, N'Herbert Vianna', 198191, 6576790, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2073, N'Saber Amar', 168, 1, 7, N'Herbert Vianna', 202788, 6723733, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2074, N'Ela Disse Adeus', 168, 1, 7, N'Herbert Vianna', 226298, 7608999, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2075, N'O Amor Nao Sabe Esperar', 168, 1, 7, N'Herbert Vianna', 241084, 8042534, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2076, N'Aonde Quer Que Eu Va', 168, 1, 7, N'Herbert Vianna/Paulo Sérgio Valle', 258089, 8470121, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2077, N'Caleidoscópio', 169, 1, 7, 211330, 7000017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2078, N'Óculos', 169, 1, 7, 219271, 7262419, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2079, N'Cinema Mudo', 169, 1, 7, 227918, 7612168, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2080, N'Alagados', 169, 1, 7, 302393, 10255463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2081, N'Lanterna Dos Afogados', 169, 1, 7, 190197, 6264318, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2082, N'Melô Do Marinheiro', 169, 1, 7, 208352, 6905668, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2083, N'Vital E Sua Moto', 169, 1, 7, 210207, 6902878, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2084, N'O Beco', 169, 1, 7, 189178, 6293184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2085, N'Meu Erro', 169, 1, 7, 208431, 6893533, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2086, N'Perplexo', 169, 1, 7, 161175, 5355013, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2087, N'Me Liga', 169, 1, 7, 229590, 7565912, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2088, N'Quase Um Segundo', 169, 1, 7, 275644, 8971355, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2089, N'Selvagem', 169, 1, 7, 245890, 8141084, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2090, N'Romance Ideal', 169, 1, 7, 250070, 8260477, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2091, N'Será Que Vai Chover?', 169, 1, 7, 337057, 11133830, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2092, N'SKA', 169, 1, 7, 148871, 4943540, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2093, N'Bark at the Moon', 170, 2, 1, N'O. Osbourne', 257252, 4601224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2094, N'I Don''t Know', 171, 2, 1, N'B. Daisley, O. Osbourne & R. Rhoads', 312980, 5525339, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2095, N'Crazy Train', 171, 2, 1, N'B. Daisley, O. Osbourne & R. Rhoads', 295960, 5255083, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2096, N'Flying High Again', 172, 2, 1, N'L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads', 290851, 5179599, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2097, N'Mama, I''m Coming Home', 173, 2, 1, N'L. Kilmister, O. Osbourne & Z. Wylde', 251586, 4302390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2098, N'No More Tears', 173, 2, 1, N'J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde', 444358, 7362964, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2099, N'I Don''t Know', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 283088, 9207869, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2100, N'Crazy Train', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 322716, 10517408, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2101, N'Believer', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 308897, 10003794, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2102, N'Mr. Crowley', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 344241, 11184130, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2103, N'Flying High Again', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake', 261224, 8481822, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2104, N'Relvelation (Mother Earth)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 349440, 11367866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2105, N'Steal Away (The Night)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 485720, 15945806, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2106, N'Suicide Solution (With Guitar Solo)', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 467069, 15119938, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2107, N'Iron Man', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 172120, 5609799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2108, N'Children Of The Grave', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 357067, 11626740, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2109, N'Paranoid', 174, 1, 3, N'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 176352, 5729813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2110, N'Goodbye To Romance', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 334393, 10841337, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2111, N'No Bone Movies', 174, 1, 3, N'O. Osbourne, R. Daisley, R. Rhoads', 249208, 8095199, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2112, N'Dee', 174, 1, 3, N'R. Rhoads', 261302, 8555963, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2113, N'Shining In The Light', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 240796, 7951688, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2114, N'When The World Was Young', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 373394, 12198930, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2115, N'Upon A Golden Horse', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 232359, 7594829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2116, N'Blue Train', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 405028, 13170391, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2117, N'Please Read The Letter', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 262112, 8603372, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2118, N'Most High', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 336535, 10999203, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2119, N'Heart In Your Hand', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 230896, 7598019, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2120, N'Walking Into Clarksdale', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 318511, 10396315, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2121, N'Burning Up', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 321619, 10525136, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2122, N'When I Was A Child', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 345626, 11249456, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2123, N'House Of Love', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 335699, 10990880, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2124, N'Sons Of Freedom', 175, 1, 1, N'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 246465, 8087944, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2125, N'United Colours', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 330266, 10939131, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2126, N'Slug', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 281469, 9295950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2127, N'Your Blue Room', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 328228, 10867860, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2128, N'Always Forever Now', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 383764, 12727928, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2129, N'A Different Kind Of Blue', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 120816, 3884133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2130, N'Beach Sequence', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 212297, 6928259, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2131, N'Miss Sarajevo', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 340767, 11064884, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2132, N'Ito Okashi', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 205087, 6572813, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2133, N'One Minute Warning', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 279693, 9335453, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2134, N'Corpse (These Chains Are Way Too Long)', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 214909, 6920451, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2135, N'Elvis Ate America', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 180166, 5851053, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2136, N'Plot 180', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 221596, 7253729, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2137, N'Theme From The Swan', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 203911, 6638076, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2138, N'Theme From Let''s Go Native', 176, 1, 10, N'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 186723, 6179777, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2139, N'Wrathchild', 177, 1, 1, N'Steve Harris', 170396, 5499390, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2140, N'Killers', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 309995, 10009697, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2141, N'Prowler', 177, 1, 1, N'Steve Harris', 240274, 7782963, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2142, N'Murders In The Rue Morgue', 177, 1, 1, N'Steve Harris', 258638, 8360999, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2143, N'Women In Uniform', 177, 1, 1, N'Greg Macainsh', 189936, 6139651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2144, N'Remember Tomorrow', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 326426, 10577976, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2145, N'Sanctuary', 177, 1, 1, N'David Murray/Paul Di''Anno/Steve Harris', 198844, 6423543, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2146, N'Running Free', 177, 1, 1, N'Paul Di''Anno/Steve Harris', 199706, 6483496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2147, N'Phantom Of The Opera', 177, 1, 1, N'Steve Harris', 418168, 13585530, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2148, N'Iron Maiden', 177, 1, 1, N'Steve Harris', 235232, 7600077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2149, N'Corduroy', 178, 1, 1, N'Pearl Jam & Eddie Vedder', 305293, 9991106, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2150, N'Given To Fly', 178, 1, 1, N'Eddie Vedder & Mike McCready', 233613, 7678347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2151, N'Hail, Hail', 178, 1, 1, N'Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready', 223764, 7364206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2152, N'Daughter', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 407484, 13420697, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2153, N'Elderly Woman Behind The Counter In A Small Town', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 229328, 7509304, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2154, N'Untitled', 178, 1, 1, N'Pearl Jam', 122801, 3957141, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2155, N'MFC', 178, 1, 1, N'Eddie Vedder', 148192, 4817665, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2156, N'Go', 178, 1, 1, N'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 161541, 5290810, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2157, N'Red Mosquito', 178, 1, 1, N'Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder', 242991, 7944923, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2158, N'Even Flow', 178, 1, 1, N'Stone Gossard & Eddie Vedder', 317100, 10394239, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2159, N'Off He Goes', 178, 1, 1, N'Eddie Vedder', 343222, 11245109, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2160, N'Nothingman', 178, 1, 1, N'Jeff Ament & Eddie Vedder', 278595, 9107017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2161, N'Do The Evolution', 178, 1, 1, N'Eddie Vedder & Stone Gossard', 225462, 7377286, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2162, N'Better Man', 178, 1, 1, N'Eddie Vedder', 246204, 8019563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2163, N'Black', 178, 1, 1, N'Stone Gossard & Eddie Vedder', 415712, 13580009, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2164, N'F*Ckin'' Up', 178, 1, 1, N'Neil Young', 377652, 12360893, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2165, N'Life Wasted', 179, 1, 4, N'Stone Gossard', 234344, 7610169, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2166, N'World Wide Suicide', 179, 1, 4, N'Eddie Vedder', 209188, 6885908, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2167, N'Comatose', 179, 1, 4, N'Mike McCready & Stone Gossard', 139990, 4574516, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2168, N'Severed Hand', 179, 1, 4, N'Eddie Vedder', 270341, 8817438, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2169, N'Marker In The Sand', 179, 1, 4, N'Mike McCready', 263235, 8656578, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2170, N'Parachutes', 179, 1, 4, N'Stone Gossard', 216555, 7074973, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2171, N'Unemployable', 179, 1, 4, N'Matt Cameron & Mike McCready', 184398, 6066542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2172, N'Big Wave', 179, 1, 4, N'Jeff Ament', 178573, 5858788, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2173, N'Gone', 179, 1, 4, N'Eddie Vedder', 249547, 8158204, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2174, N'Wasted Reprise', 179, 1, 4, N'Stone Gossard', 53733, 1731020, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2175, N'Army Reserve', 179, 1, 4, N'Jeff Ament', 225567, 7393771, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2176, N'Come Back', 179, 1, 4, N'Eddie Vedder & Mike McCready', 329743, 10768701, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2177, N'Inside Job', 179, 1, 4, N'Eddie Vedder & Mike McCready', 428643, 14006924, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2178, N'Can''t Keep', 180, 1, 1, N'Eddie Vedder', 219428, 7215713, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2179, N'Save You', 180, 1, 1, N'Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard', 230112, 7609110, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2180, N'Love Boat Captain', 180, 1, 1, N'Eddie Vedder', 276453, 9016789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2181, N'Cropduster', 180, 1, 1, N'Matt Cameron', 231888, 7588928, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2182, N'Ghost', 180, 1, 1, N'Jeff Ament', 195108, 6383772, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2183, N'I Am Mine', 180, 1, 1, N'Eddie Vedder', 215719, 7086901, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2184, N'Thumbing My Way', 180, 1, 1, N'Eddie Vedder', 250226, 8201437, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2185, N'You Are', 180, 1, 1, N'Matt Cameron', 270863, 8938409, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2186, N'Get Right', 180, 1, 1, N'Matt Cameron', 158589, 5223345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2187, N'Green Disease', 180, 1, 1, N'Eddie Vedder', 161253, 5375818, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2188, N'Help Help', 180, 1, 1, N'Jeff Ament', 215092, 7033002, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2189, N'Bushleager', 180, 1, 1, N'Stone Gossard', 237479, 7849757, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2190, N'1/2 Full', 180, 1, 1, N'Jeff Ament', 251010, 8197219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2191, N'Arc', 180, 1, 1, N'Pearl Jam', 65593, 2099421, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2192, N'All or None', 180, 1, 1, N'Stone Gossard', 277655, 9104728, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2193, N'Once', 181, 1, 1, N'Stone Gossard', 231758, 7561555, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2194, N'Evenflow', 181, 1, 1, N'Stone Gossard', 293720, 9622017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2195, N'Alive', 181, 1, 1, N'Stone Gossard', 341080, 11176623, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2196, N'Why Go', 181, 1, 1, N'Jeff Ament', 200254, 6539287, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2197, N'Black', 181, 1, 1, N'Dave Krusen/Stone Gossard', 343823, 11213314, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2198, N'Jeremy', 181, 1, 1, N'Jeff Ament', 318981, 10447222, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2199, N'Oceans', 181, 1, 1, N'Jeff Ament/Stone Gossard', 162194, 5282368, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2200, N'Porch', 181, 1, 1, N'Eddie Vedder', 210520, 6877475, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2201, N'Garden', 181, 1, 1, N'Jeff Ament/Stone Gossard', 299154, 9740738, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2202, N'Deep', 181, 1, 1, N'Jeff Ament/Stone Gossard', 258324, 8432497, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2203, N'Release', 181, 1, 1, N'Jeff Ament/Mike McCready/Stone Gossard', 546063, 17802673, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2204, N'Go', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 193123, 6351920, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2205, N'Animal', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 169325, 5503459, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2206, N'Daughter', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 235598, 7824586, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2207, N'Glorified G', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 206968, 6772116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2208, N'Dissident', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 215510, 7034500, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2209, N'W.M.A.', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 359262, 12037261, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2210, N'Blood', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 170631, 5551478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2211, N'Rearviewmirror', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 284186, 9321053, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2212, N'Rats', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 255425, 8341934, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2213, N'Elderly Woman Behind The Counter In A Small Town', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 196336, 6499398, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2214, N'Leash', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 189257, 6191560, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2215, N'Indifference', 182, 1, 1, N'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 302053, 9756133, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2216, N'Johnny B. Goode', 141, 1, 8, 243200, 8092024, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2217, N'Don''t Look Back', 141, 1, 8, 221100, 7344023, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2218, N'Jah Seh No', 141, 1, 8, 276871, 9134476, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2219, N'I''m The Toughest', 141, 1, 8, 230191, 7657594, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2220, N'Nothing But Love', 141, 1, 8, 221570, 7335228, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2221, N'Buk-In-Hamm Palace', 141, 1, 8, 265665, 8964369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2222, N'Bush Doctor', 141, 1, 8, 239751, 7942299, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2223, N'Wanted Dread And Alive', 141, 1, 8, 260310, 8670933, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2224, N'Mystic Man', 141, 1, 8, 353671, 11812170, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2225, N'Coming In Hot', 141, 1, 8, 213054, 7109414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2226, N'Pick Myself Up', 141, 1, 8, 234684, 7788255, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2227, N'Crystal Ball', 141, 1, 8, 309733, 10319296, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2228, N'Equal Rights Downpresser Man', 141, 1, 8, 366733, 12086524, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2229, N'Speak To Me/Breathe', 183, 1, 1, N'Mason/Waters, Gilmour, Wright', 234213, 7631305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2230, N'On The Run', 183, 1, 1, N'Gilmour, Waters', 214595, 7206300, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2231, N'Time', 183, 1, 1, N'Mason, Waters, Wright, Gilmour', 425195, 13955426, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2232, N'The Great Gig In The Sky', 183, 1, 1, N'Wright, Waters', 284055, 9147563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2233, N'Money', 183, 1, 1, N'Waters', 391888, 12930070, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2234, N'Us And Them', 183, 1, 1, N'Waters, Wright', 461035, 15000299, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2235, N'Any Colour You Like', 183, 1, 1, N'Gilmour, Mason, Wright, Waters', 205740, 6707989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2236, N'Brain Damage', 183, 1, 1, N'Waters', 230556, 7497655, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2237, N'Eclipse', 183, 1, 1, N'Waters', 125361, 4065299, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2238, N'ZeroVinteUm', 184, 1, 17, 315637, 10426550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2239, N'Queimando Tudo', 184, 1, 17, 172591, 5723677, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2240, N'Hip Hop Rio', 184, 1, 17, 151536, 4991935, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2241, N'Bossa', 184, 1, 17, 29048, 967098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2242, N'100% HardCore', 184, 1, 17, 165146, 5407744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2243, N'Biruta', 184, 1, 17, 213263, 7108200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2244, N'Mão Na Cabeça', 184, 1, 17, 202631, 6642753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2245, N'O Bicho Tá Pregando', 184, 1, 17, 171964, 5683369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2246, N'Adoled (Ocean)', 184, 1, 17, 185103, 6009946, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2247, N'Seus Amigos', 184, 1, 17, 100858, 3304738, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2248, N'Paga Pau', 184, 1, 17, 197485, 6529041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2249, N'Rappers Reais', 184, 1, 17, 202004, 6684160, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2250, N'Nega Do Cabelo Duro', 184, 1, 17, 121808, 4116536, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2251, N'Hemp Family', 184, 1, 17, 205923, 6806900, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2252, N'Quem Me Cobrou?', 184, 1, 17, 121704, 3947664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2253, N'Se Liga', 184, 1, 17, 410409, 13559173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2254, N'Bohemian Rhapsody', 185, 1, 1, N'Mercury, Freddie', 358948, 11619868, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2255, N'Another One Bites The Dust', 185, 1, 1, N'Deacon, John', 216946, 7172355, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2256, N'Killer Queen', 185, 1, 1, N'Mercury, Freddie', 182099, 5967749, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2257, N'Fat Bottomed Girls', 185, 1, 1, N'May, Brian', 204695, 6630041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2258, N'Bicycle Race', 185, 1, 1, N'Mercury, Freddie', 183823, 6012409, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2259, N'You''re My Best Friend', 185, 1, 1, N'Deacon, John', 172225, 5602173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2260, N'Don''t Stop Me Now', 185, 1, 1, N'Mercury, Freddie', 211826, 6896666, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2261, N'Save Me', 185, 1, 1, N'May, Brian', 228832, 7444624, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2262, N'Crazy Little Thing Called Love', 185, 1, 1, N'Mercury, Freddie', 164231, 5435501, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2263, N'Somebody To Love', 185, 1, 1, N'Mercury, Freddie', 297351, 9650520, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2264, N'Now I''m Here', 185, 1, 1, N'May, Brian', 255346, 8328312, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2265, N'Good Old-Fashioned Lover Boy', 185, 1, 1, N'Mercury, Freddie', 175960, 5747506, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2266, N'Play The Game', 185, 1, 1, N'Mercury, Freddie', 213368, 6915832, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2267, N'Flash', 185, 1, 1, N'May, Brian', 168489, 5464986, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2268, N'Seven Seas Of Rhye', 185, 1, 1, N'Mercury, Freddie', 170553, 5539957, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2269, N'We Will Rock You', 185, 1, 1, N'Deacon, John/May, Brian', 122880, 4026955, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2270, N'We Are The Champions', 185, 1, 1, N'Mercury, Freddie', 180950, 5880231, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2271, N'We Will Rock You', 186, 1, 1, N'May', 122671, 4026815, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2272, N'We Are The Champions', 186, 1, 1, N'Mercury', 182883, 5939794, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2273, N'Sheer Heart Attack', 186, 1, 1, N'Taylor', 207386, 6642685, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2274, N'All Dead, All Dead', 186, 1, 1, N'May', 190119, 6144878, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2275, N'Spread Your Wings', 186, 1, 1, N'Deacon', 275356, 8936992, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2276, N'Fight From The Inside', 186, 1, 1, N'Taylor', 184737, 6078001, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2277, N'Get Down, Make Love', 186, 1, 1, N'Mercury', 231235, 7509333, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2278, N'Sleep On The Sidewalk', 186, 1, 1, N'May', 187428, 6099840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2279, N'Who Needs You', 186, 1, 1, N'Deacon', 186958, 6292969, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2280, N'It''s Late', 186, 1, 1, N'May', 386194, 12519388, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2281, N'My Melancholy Blues', 186, 1, 1, N'Mercury', 206471, 6691838, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2282, N'Shiny Happy People', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 226298, 7475323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2283, N'Me In Honey', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 246674, 8194751, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2284, N'Radio Song', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 255477, 8421172, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2285, N'Pop Song 89', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 185730, 6132218, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2286, N'Get Up', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 160235, 5264376, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2287, N'You Are The Everything', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 226298, 7373181, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2288, N'Stand', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 192862, 6349090, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2289, N'World Leader Pretend', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 259761, 8537282, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2290, N'The Wrong Child', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 216633, 7065060, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2291, N'Orange Crush', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 231706, 7742894, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2292, N'Turn You Inside-Out', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 257358, 8395671, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2293, N'Hairshirt', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 235911, 7753807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2294, N'I Remember California', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 304013, 9950311, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2295, N'Untitled', 188, 1, 4, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 191503, 6332426, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2296, N'How The West Was Won And Where It Got Us', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 271151, 8994291, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2297, N'The Wake-Up Bomb', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 308532, 10077337, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2298, N'New Test Leper', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 326791, 10866447, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2299, N'Undertow', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 309498, 10131005, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2300, N'E-Bow The Letter', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 324963, 10714576, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2301, N'Leave', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 437968, 14433365, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2302, N'Departure', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 209423, 6818425, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2303, N'Bittersweet Me', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245812, 8114718, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2304, N'Be Mine', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 333087, 10790541, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2305, N'Binky The Doormat', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 301688, 9950320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2306, N'Zither', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 154148, 5032962, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2307, N'So Fast, So Numb', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 252682, 8341223, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2308, N'Low Desert', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 212062, 6989288, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2309, N'Electrolite', 189, 1, 1, N'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245315, 8051199, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2310, N'Losing My Religion', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 269035, 8885672, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2311, N'Low', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 296777, 9633860, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2312, N'Near Wild Heaven', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 199862, 6610009, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2313, N'Endgame', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 230687, 7664479, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2314, N'Belong', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 247013, 8219375, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2315, N'Half A World Away', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 208431, 6837283, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2316, N'Texarkana', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 220081, 7260681, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2317, N'Country Feedback', 187, 1, 4, N'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 249782, 8178943, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2318, N'Carnival Of Sorts', 190, 1, 4, N'R.E.M.', 233482, 7669658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2319, N'Radio Free Aurope', 190, 1, 4, N'R.E.M.', 245315, 8163490, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2320, N'Perfect Circle', 190, 1, 4, N'R.E.M.', 208509, 6898067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2321, N'Talk About The Passion', 190, 1, 4, N'R.E.M.', 203206, 6725435, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2322, N'So Central Rain', 190, 1, 4, N'R.E.M.', 194768, 6414550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2323, N'Don''t Go Back To Rockville', 190, 1, 4, N'R.E.M.', 272352, 9010715, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2324, N'Pretty Persuasion', 190, 1, 4, N'R.E.M.', 229929, 7577754, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2325, N'Green Grow The Rushes', 190, 1, 4, N'R.E.M.', 225671, 7422425, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2326, N'Can''t Get There From Here', 190, 1, 4, N'R.E.M.', 220630, 7285936, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2327, N'Driver 8', 190, 1, 4, N'R.E.M.', 204747, 6779076, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2328, N'Fall On Me', 190, 1, 4, N'R.E.M.', 172016, 5676811, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2329, N'I Believe', 190, 1, 4, N'R.E.M.', 227709, 7542929, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2330, N'Cuyahoga', 190, 1, 4, N'R.E.M.', 260623, 8591057, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2331, N'The One I Love', 190, 1, 4, N'R.E.M.', 197355, 6495125, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2332, N'The Finest Worksong', 190, 1, 4, N'R.E.M.', 229276, 7574856, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2333, N'It''s The End Of The World As We Know It (And I Feel Fine)', 190, 1, 4, N'R.E.M.', 244819, 7998987, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2334, N'Infeliz Natal', 191, 1, 4, N'Rodolfo', 138266, 4503299, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2335, N'A Sua', 191, 1, 4, N'Rodolfo', 142132, 4622064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2336, N'Papeau Nuky Doe', 191, 1, 4, N'Rodolfo', 121652, 3995022, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2337, N'Merry Christmas', 191, 1, 4, N'Rodolfo', 126040, 4166652, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2338, N'Bodies', 191, 1, 4, N'Rodolfo', 180035, 5873778, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2339, N'Puteiro Em João Pessoa', 191, 1, 4, N'Rodolfo', 195578, 6395490, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2340, N'Esporrei Na Manivela', 191, 1, 4, N'Rodolfo', 293276, 9618499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2341, N'Bê-a-Bá', 191, 1, 4, N'Rodolfo', 249051, 8130636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2342, N'Cajueiro', 191, 1, 4, N'Rodolfo', 158589, 5164837, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2343, N'Palhas Do Coqueiro', 191, 1, 4, N'Rodolfo', 133851, 4396466, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2344, N'Maluco Beleza', 192, 1, 1, 203206, 6628067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2345, N'O Dia Em Que A Terra Parou', 192, 1, 1, 261720, 8586678, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2346, N'No Fundo Do Quintal Da Escola', 192, 1, 1, 177606, 5836953, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2347, N'O Segredo Do Universo', 192, 1, 1, 192679, 6315187, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2348, N'As Profecias', 192, 1, 1, 232515, 7657732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2349, N'Mata Virgem', 192, 1, 1, 142602, 4690029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2350, N'Sapato 36', 192, 1, 1, 196702, 6507301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2351, N'Todo Mundo Explica', 192, 1, 1, 134896, 4449772, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2352, N'Que Luz É Essa', 192, 1, 1, 165067, 5620058, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2353, N'Diamante De Mendigo', 192, 1, 1, 206053, 6775101, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2354, N'Negócio É', 192, 1, 1, 175464, 5826775, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2355, N'Muita Estrela, Pouca Constelação', 192, 1, 1, 268068, 8781021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2356, N'Século XXI', 192, 1, 1, 244897, 8040563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2357, N'Rock Das Aranhas (Ao Vivo) (Live)', 192, 1, 1, 231836, 7591945, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2358, N'The Power Of Equality', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 243591, 8148266, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2359, N'If You Have To Ask', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 216790, 7199175, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2360, N'Breaking The Girl', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 295497, 9805526, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2361, N'Funky Monks', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 323395, 10708168, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2362, N'Suck My Kiss', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 217234, 7129137, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2363, N'I Could Have Lied', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 244506, 8088244, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2364, N'Mellowship Slinky In B Major', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 240091, 7971384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2365, N'The Righteous & The Wicked', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 248084, 8134096, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2366, N'Give It Away', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 283010, 9308997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2367, N'Blood Sugar Sex Magik', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 271229, 8940573, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2368, N'Under The Bridge', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 264359, 8682716, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2369, N'Naked In The Rain', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 265717, 8724674, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2370, N'Apache Rose Peacock', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 282226, 9312588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2371, N'The Greeting Song', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 193593, 6346507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2372, N'My Lovely Man', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 279118, 9220114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2373, N'Sir Psycho Sexy', 193, 1, 4, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 496692, 16354362, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2374, N'They''re Red Hot', 193, 1, 4, N'Robert Johnson', 71941, 2382220, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2375, N'By The Way', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218017, 7197430, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2376, N'Universally Speaking', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 259213, 8501904, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2377, N'This Is The Place', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 257906, 8469765, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2378, N'Dosed', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 312058, 10235611, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2379, N'Don''t Forget Me', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 277995, 9107071, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2380, N'The Zephyr Song', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 232960, 7690312, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2381, N'Can''t Stop', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 269400, 8872479, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2382, N'I Could Die For You', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 193906, 6333311, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2383, N'Midnight', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 295810, 9702450, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2384, N'Throw Away Your Television', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 224574, 7483526, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2385, N'Cabron', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218592, 7458864, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2386, N'Tear', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 317413, 10395500, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2387, N'On Mercury', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 208509, 6834762, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2388, N'Minor Thing', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 217835, 7148115, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2389, N'Warm Tape', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 256653, 8358200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2390, N'Venice Queen', 194, 1, 1, N'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 369110, 12280381, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2391, N'Around The World', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 238837, 7859167, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2392, N'Parallel Universe', 195, 1, 1, N'Red Hot Chili Peppers', 270654, 8958519, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2393, N'Scar Tissue', 195, 1, 1, N'Red Hot Chili Peppers', 217469, 7153744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2394, N'Otherside', 195, 1, 1, N'Red Hot Chili Peppers', 255973, 8357989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2395, N'Get On Top', 195, 1, 1, N'Red Hot Chili Peppers', 198164, 6587883, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2396, N'Californication', 195, 1, 1, N'Red Hot Chili Peppers', 321671, 10568999, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2397, N'Easily', 195, 1, 1, N'Red Hot Chili Peppers', 231418, 7504534, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2398, N'Porcelain', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 163787, 5278793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2399, N'Emit Remmus', 195, 1, 1, N'Red Hot Chili Peppers', 240300, 7901717, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2400, N'I Like Dirt', 195, 1, 1, N'Red Hot Chili Peppers', 157727, 5225917, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2401, N'This Velvet Glove', 195, 1, 1, N'Red Hot Chili Peppers', 225280, 7480537, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2402, N'Savior', 195, 1, 1, N'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 292493, 9551885, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2403, N'Purple Stain', 195, 1, 1, N'Red Hot Chili Peppers', 253440, 8359971, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2404, N'Right On Time', 195, 1, 1, N'Red Hot Chili Peppers', 112613, 3722219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2405, N'Road Trippin''', 195, 1, 1, N'Red Hot Chili Peppers', 205635, 6685831, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2406, N'The Spirit Of Radio', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 299154, 9862012, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2407, N'The Trees', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 285126, 9345473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2408, N'Something For Nothing', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 240770, 7898395, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2409, N'Freewill', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 324362, 10694110, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2410, N'Xanadu', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 667428, 21753168, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2411, N'Bastille Day', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 280528, 9264769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2412, N'By-Tor And The Snow Dog', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 519888, 17076397, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2413, N'Anthem', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 264515, 8693343, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2414, N'Closer To The Heart', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 175412, 5767005, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2415, N'2112 Overture', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 272718, 8898066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2416, N'The Temples Of Syrinx', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 133459, 4360163, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2417, N'La Villa Strangiato', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 577488, 19137855, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2418, N'Fly By Night', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 202318, 6683061, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2419, N'Finding My Way', 196, 1, 1, N'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 305528, 9985701, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2420, N'Jingo', 197, 1, 1, N'M.Babatunde Olantunji', 592953, 19736495, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2421, N'El Corazon Manda', 197, 1, 1, N'E.Weiss', 713534, 23519583, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2422, N'La Puesta Del Sol', 197, 1, 1, N'E.Weiss', 628062, 20614621, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2423, N'Persuasion', 197, 1, 1, N'Carlos Santana', 318432, 10354751, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2424, N'As The Years Go by', 197, 1, 1, N'Albert King', 233064, 7566829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2425, N'Soul Sacrifice', 197, 1, 1, N'Carlos Santana', 296437, 9801120, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2426, N'Fried Neckbones And Home Fries', 197, 1, 1, N'W.Correa', 638563, 20939646, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2427, N'Santana Jam', 197, 1, 1, N'Carlos Santana', 882834, 29207100, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2428, N'Evil Ways', 198, 1, 1, 475402, 15289235, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2429, N'We''ve Got To Get Together/Jingo', 198, 1, 1, 1070027, 34618222, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2430, N'Rock Me', 198, 1, 1, 94720, 3037596, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2431, N'Just Ain''t Good Enough', 198, 1, 1, 850259, 27489067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2432, N'Funky Piano', 198, 1, 1, 934791, 30200730, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2433, N'The Way You Do To Mer', 198, 1, 1, 618344, 20028702, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2434, N'Holding Back The Years', 141, 1, 1, N'Mick Hucknall and Neil Moss', 270053, 8833220, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2435, N'Money''s Too Tight To Mention', 141, 1, 1, N'John and William Valentine', 268408, 8861921, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2436, N'The Right Thing', 141, 1, 1, N'Mick Hucknall', 262687, 8624063, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2437, N'It''s Only Love', 141, 1, 1, N'Jimmy and Vella Cameron', 232594, 7659017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2438, N'A New Flame', 141, 1, 1, N'Mick Hucknall', 237662, 7822875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2439, N'You''ve Got It', 141, 1, 1, N'Mick Hucknall and Lamont Dozier', 235232, 7712845, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2440, N'If You Don''t Know Me By Now', 141, 1, 1, N'Kenny Gamble and Leon Huff', 206524, 6712634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2441, N'Stars', 141, 1, 1, N'Mick Hucknall', 248137, 8194906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2442, N'Something Got Me Started', 141, 1, 1, N'Mick Hucknall and Fritz McIntyre', 239595, 7997139, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2443, N'Thrill Me', 141, 1, 1, N'Mick Hucknall and Fritz McIntyre', 303934, 10034711, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2444, N'Your Mirror', 141, 1, 1, N'Mick Hucknall', 240666, 7893821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2445, N'For Your Babies', 141, 1, 1, N'Mick Hucknall', 256992, 8408803, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2446, N'So Beautiful', 141, 1, 1, N'Mick Hucknall', 298083, 9837832, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2447, N'Angel', 141, 1, 1, N'Carolyn Franklin and Sonny Saunders', 240561, 7880256, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2448, N'Fairground', 141, 1, 1, N'Mick Hucknall', 263888, 8793094, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2449, N'Água E Fogo', 199, 1, 1, N'Chico Amaral/Edgard Scandurra/Samuel Rosa', 278987, 9272272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2450, N'Três Lados', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 233665, 7699609, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2451, N'Ela Desapareceu', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 250122, 8289200, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2452, N'Balada Do Amor Inabalável', 199, 1, 1, N'Fausto Fawcett/Samuel Rosa', 240613, 8025816, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2453, N'Canção Noturna', 199, 1, 1, N'Chico Amaral/Lelo Zanettik', 238628, 7874774, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2454, N'Muçulmano', 199, 1, 1, N'Leão, Rodrigo F./Samuel Rosa', 249600, 8270613, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2455, N'Maquinarama', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 245629, 8213710, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2456, N'Rebelião', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 298527, 9817847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2457, N'A Última Guerra', 199, 1, 1, N'Leão, Rodrigo F./Lô Borges/Samuel Rosa', 314723, 10480391, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2458, N'Fica', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 272169, 8980972, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2459, N'Ali', 199, 1, 1, N'Nando Reis/Samuel Rosa', 306390, 10110351, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2460, N'Preto Damião', 199, 1, 1, N'Chico Amaral/Samuel Rosa', 264568, 8697658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2461, N'É Uma Partida De Futebol', 200, 1, 1, N'Samuel Rosa', 1071, 38747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2462, N'Eu Disse A Ela', 200, 1, 1, N'Samuel Rosa', 254223, 8479463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2463, N'Zé Trindade', 200, 1, 1, N'Samuel Rosa', 247954, 8331310, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2464, N'Garota Nacional', 200, 1, 1, N'Samuel Rosa', 317492, 10511239, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2465, N'Tão Seu', 200, 1, 1, N'Samuel Rosa', 243748, 8133126, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2466, N'Sem Terra', 200, 1, 1, N'Samuel Rosa', 279353, 9196411, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2467, N'Os Exilados', 200, 1, 1, N'Samuel Rosa', 245551, 8222095, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2468, N'Um Dia Qualquer', 200, 1, 1, N'Samuel Rosa', 292414, 9805570, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2469, N'Los Pretos', 200, 1, 1, N'Samuel Rosa', 239229, 8025667, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2470, N'Sul Da América', 200, 1, 1, N'Samuel Rosa', 254928, 8484871, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2471, N'Poconé', 200, 1, 1, N'Samuel Rosa', 318406, 10771610, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2472, N'Lucky 13', 201, 1, 4, N'Billy Corgan', 189387, 6200617, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2473, N'Aeroplane Flies High', 201, 1, 4, N'Billy Corgan', 473391, 15408329, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2474, N'Because You Are', 201, 1, 4, N'Billy Corgan', 226403, 7405137, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2475, N'Slow Dawn', 201, 1, 4, N'Billy Corgan', 192339, 6269057, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2476, N'Believe', 201, 1, 4, N'James Iha', 192940, 6320652, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2477, N'My Mistake', 201, 1, 4, N'Billy Corgan', 240901, 7843477, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2478, N'Marquis In Spades', 201, 1, 4, N'Billy Corgan', 192731, 6304789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2479, N'Here''s To The Atom Bomb', 201, 1, 4, N'Billy Corgan', 266893, 8763140, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2480, N'Sparrow', 201, 1, 4, N'Billy Corgan', 176822, 5696989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2481, N'Waiting', 201, 1, 4, N'Billy Corgan', 228336, 7627641, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2482, N'Saturnine', 201, 1, 4, N'Billy Corgan', 229877, 7523502, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2483, N'Rock On', 201, 1, 4, N'David Cook', 366471, 12133825, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2484, N'Set The Ray To Jerry', 201, 1, 4, N'Billy Corgan', 249364, 8215184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2485, N'Winterlong', 201, 1, 4, N'Billy Corgan', 299389, 9670616, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2486, N'Soot & Stars', 201, 1, 4, N'Billy Corgan', 399986, 12866557, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2487, N'Blissed & Gone', 201, 1, 4, N'Billy Corgan', 286302, 9305998, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2488, N'Siva', 202, 1, 4, N'Billy Corgan', 261172, 8576622, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2489, N'Rhinocerous', 202, 1, 4, N'Billy Corgan', 353462, 11526684, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2490, N'Drown', 202, 1, 4, N'Billy Corgan', 270497, 8883496, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2491, N'Cherub Rock', 202, 1, 4, N'Billy Corgan', 299389, 9786739, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2492, N'Today', 202, 1, 4, N'Billy Corgan', 202213, 6596933, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2493, N'Disarm', 202, 1, 4, N'Billy Corgan', 198556, 6508249, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2494, N'Landslide', 202, 1, 4, N'Stevie Nicks', 190275, 6187754, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2495, N'Bullet With Butterfly Wings', 202, 1, 4, N'Billy Corgan', 257306, 8431747, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2496, N'1979', 202, 1, 4, N'Billy Corgan', 263653, 8728470, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2497, N'Zero', 202, 1, 4, N'Billy Corgan', 161123, 5267176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2498, N'Tonight, Tonight', 202, 1, 4, N'Billy Corgan', 255686, 8351543, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2499, N'Eye', 202, 1, 4, N'Billy Corgan', 294530, 9784201, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2500, N'Ava Adore', 202, 1, 4, N'Billy Corgan', 261433, 8590412, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2501, N'Perfect', 202, 1, 4, N'Billy Corgan', 203023, 6734636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2502, N'The Everlasting Gaze', 202, 1, 4, N'Billy Corgan', 242155, 7844404, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2503, N'Stand Inside Your Love', 202, 1, 4, N'Billy Corgan', 253753, 8270113, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2504, N'Real Love', 202, 1, 4, N'Billy Corgan', 250697, 8025896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2505, N'[Untitled]', 202, 1, 4, N'Billy Corgan', 231784, 7689713, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2506, N'Nothing To Say', 203, 1, 1, N'Chris Cornell/Kim Thayil', 238027, 7744833, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2507, N'Flower', 203, 1, 1, N'Chris Cornell/Kim Thayil', 208822, 6830732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2508, N'Loud Love', 203, 1, 1, N'Chris Cornell', 297456, 9660953, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2509, N'Hands All Over', 203, 1, 1, N'Chris Cornell/Kim Thayil', 362475, 11893108, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2510, N'Get On The Snake', 203, 1, 1, N'Chris Cornell/Kim Thayil', 225123, 7313744, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2511, N'Jesus Christ Pose', 203, 1, 1, N'Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron', 352966, 11739886, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2512, N'Outshined', 203, 1, 1, N'Chris Cornell', 312476, 10274629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2513, N'Rusty Cage', 203, 1, 1, N'Chris Cornell', 267728, 8779485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2514, N'Spoonman', 203, 1, 1, N'Chris Cornell', 248476, 8289906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2515, N'The Day I Tried To Live', 203, 1, 1, N'Chris Cornell', 321175, 10507137, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2516, N'Black Hole Sun', 203, 1, 1, N'Soundgarden', 320365, 10425229, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2517, N'Fell On Black Days', 203, 1, 1, N'Chris Cornell', 282331, 9256082, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2518, N'Pretty Noose', 203, 1, 1, N'Chris Cornell', 253570, 8317931, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2519, N'Burden In My Hand', 203, 1, 1, N'Chris Cornell', 292153, 9659911, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2520, N'Blow Up The Outside World', 203, 1, 1, N'Chris Cornell', 347898, 11379527, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2521, N'Ty Cobb', 203, 1, 1, N'Ben Shepherd/Chris Cornell', 188786, 6233136, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2522, N'Bleed Together', 203, 1, 1, N'Chris Cornell', 232202, 7597074, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2523, N'Morning Dance', 204, 1, 2, N'Jay Beckenstein', 238759, 8101979, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2524, N'Jubilee', 204, 1, 2, N'Jeremy Wall', 275147, 9151846, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2525, N'Rasul', 204, 1, 2, N'Jeremy Wall', 238315, 7854737, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2526, N'Song For Lorraine', 204, 1, 2, N'Jay Beckenstein', 240091, 8101723, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2527, N'Starburst', 204, 1, 2, N'Jeremy Wall', 291500, 9768399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2528, N'Heliopolis', 204, 1, 2, N'Jay Beckenstein', 338729, 11365655, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2529, N'It Doesn''t Matter', 204, 1, 2, N'Chet Catallo', 270027, 9034177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2530, N'Little Linda', 204, 1, 2, N'Jeremy Wall', 264019, 8958743, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2531, N'End Of Romanticism', 204, 1, 2, N'Rick Strauss', 320078, 10553155, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2532, N'The House Is Rockin''', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 144352, 4706253, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2533, N'Crossfire', 205, 1, 6, N'B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon', 251219, 8238033, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2534, N'Tightrope', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 281155, 9254906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2535, N'Let Me Love You Baby', 205, 1, 6, N'Willie Dixon', 164127, 5378455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2536, N'Leave My Girl Alone', 205, 1, 6, N'B. Guy', 256365, 8438021, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2537, N'Travis Walk', 205, 1, 6, N'Stevie Ray Vaughan', 140826, 4650979, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2538, N'Wall Of Denial', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 336927, 11085915, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2539, N'Scratch-N-Sniff', 205, 1, 6, N'Doyle Bramhall/Stevie Ray Vaughan', 163422, 5353627, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2540, N'Love Me Darlin''', 205, 1, 6, N'C. Burnett', 201586, 6650869, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2541, N'Riviera Paradise', 205, 1, 6, N'Stevie Ray Vaughan', 528692, 17232776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2542, N'Dead And Bloated', 206, 1, 1, N'R. DeLeo/Weiland', 310386, 10170433, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2543, N'Sex Type Thing', 206, 1, 1, N'D. DeLeo/Kretz/Weiland', 218723, 7102064, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2544, N'Wicked Garden', 206, 1, 1, N'D. DeLeo/R. DeLeo/Weiland', 245368, 7989505, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2545, N'No Memory', 206, 1, 1, N'Dean Deleo', 80613, 2660859, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2546, N'Sin', 206, 1, 1, N'R. DeLeo/Weiland', 364800, 12018823, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2547, N'Naked Sunday', 206, 1, 1, N'D. DeLeo/Kretz/R. DeLeo/Weiland', 229720, 7444201, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2548, N'Creep', 206, 1, 1, N'R. DeLeo/Weiland', 333191, 10894988, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2549, N'Piece Of Pie', 206, 1, 1, N'R. DeLeo/Weiland', 324623, 10605231, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2550, N'Plush', 206, 1, 1, N'R. DeLeo/Weiland', 314017, 10229848, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2551, N'Wet My Bed', 206, 1, 1, N'R. DeLeo/Weiland', 96914, 3198627, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2552, N'Crackerman', 206, 1, 1, N'Kretz/R. DeLeo/Weiland', 194403, 6317361, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2553, N'Where The River Goes', 206, 1, 1, N'D. DeLeo/Kretz/Weiland', 505991, 16468904, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2554, N'Soldier Side - Intro', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 63764, 2056079, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2555, N'B.Y.O.B.', 207, 1, 3, N'Tankian, Serj', 255555, 8407935, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2556, N'Revenga', 207, 1, 3, N'Tankian, Serj', 228127, 7503805, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2557, N'Cigaro', 207, 1, 3, N'Tankian, Serj', 131787, 4321705, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2558, N'Radio/Video', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 249312, 8224917, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2559, N'This Cocaine Makes Me Feel Like I''m On This Song', 207, 1, 3, N'Tankian, Serj', 128339, 4185193, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2560, N'Violent Pornography', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 211435, 6985960, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2561, N'Question!', 207, 1, 3, N'Tankian, Serj', 200698, 6616398, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2562, N'Sad Statue', 207, 1, 3, N'Tankian, Serj', 205897, 6733449, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2563, N'Old School Hollywood', 207, 1, 3, N'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 176953, 5830258, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2564, N'Lost in Hollywood', 207, 1, 3, N'Tankian, Serj', 320783, 10535158, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2565, N'The Sun Road', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 880640, 29008407, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2566, N'Dark Corners', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 513541, 16839223, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2567, N'Duende', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 447582, 14956771, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2568, N'Black Light Syndrome', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 526471, 17300835, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2569, N'Falling in Circles', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 549093, 18263248, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2570, N'Book of Hours', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 583366, 19464726, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2571, N'Chaos-Control', 208, 1, 1, N'Terry Bozzio, Steve Stevens, Tony Levin', 529841, 17455568, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2572, N'Midnight From The Inside Out', 209, 1, 6, N'Chris Robinson/Rich Robinson', 286981, 9442157, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2573, N'Sting Me', 209, 1, 6, N'Chris Robinson/Rich Robinson', 268094, 8813561, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2574, N'Thick & Thin', 209, 1, 6, N'Chris Robinson/Rich Robinson', 222720, 7284377, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2575, N'Greasy Grass River', 209, 1, 6, N'Chris Robinson/Rich Robinson', 218749, 7157045, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2576, N'Sometimes Salvation', 209, 1, 6, N'Chris Robinson/Rich Robinson', 389146, 12749424, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2577, N'Cursed Diamonds', 209, 1, 6, N'Chris Robinson/Rich Robinson', 368300, 12047978, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2578, N'Miracle To Me', 209, 1, 6, N'Chris Robinson/Rich Robinson', 372636, 12222116, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2579, N'Wiser Time', 209, 1, 6, N'Chris Robinson/Rich Robinson', 459990, 15161907, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2580, N'Girl From A Pawnshop', 209, 1, 6, N'Chris Robinson/Rich Robinson', 404688, 13250848, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2581, N'Cosmic Fiend', 209, 1, 6, N'Chris Robinson/Rich Robinson', 308401, 10115556, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2582, N'Black Moon Creeping', 210, 1, 6, N'Chris Robinson/Rich Robinson', 359314, 11740886, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2583, N'High Head Blues', 210, 1, 6, N'Chris Robinson/Rich Robinson', 371879, 12227998, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2584, N'Title Song', 210, 1, 6, N'Chris Robinson/Rich Robinson', 505521, 16501316, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2585, N'She Talks To Angels', 210, 1, 6, N'Chris Robinson/Rich Robinson', 361978, 11837342, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2586, N'Twice As Hard', 210, 1, 6, N'Chris Robinson/Rich Robinson', 275565, 9008067, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2587, N'Lickin''', 210, 1, 6, N'Chris Robinson/Rich Robinson', 314409, 10331216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2588, N'Soul Singing', 210, 1, 6, N'Chris Robinson/Rich Robinson', 233639, 7672489, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2589, N'Hard To Handle', 210, 1, 6, N'A.Isbell/A.Jones/O.Redding', 206994, 6786304, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2590, N'Remedy', 210, 1, 6, N'Chris Robinson/Rich Robinson', 337084, 11049098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2591, N'White Riot', 211, 1, 4, N'Joe Strummer/Mick Jones', 118726, 3922819, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2592, N'Remote Control', 211, 1, 4, N'Joe Strummer/Mick Jones', 180297, 5949647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2593, N'Complete Control', 211, 1, 4, N'Joe Strummer/Mick Jones', 192653, 6272081, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2594, N'Clash City Rockers', 211, 1, 4, N'Joe Strummer/Mick Jones', 227500, 7555054, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2595, N'(White Man) In Hammersmith Palais', 211, 1, 4, N'Joe Strummer/Mick Jones', 240640, 7883532, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2596, N'Tommy Gun', 211, 1, 4, N'Joe Strummer/Mick Jones', 195526, 6399872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2597, N'English Civil War', 211, 1, 4, N'Mick Jones/Traditional arr. Joe Strummer', 156708, 5111226, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2598, N'I Fought The Law', 211, 1, 4, N'Sonny Curtis', 159764, 5245258, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2599, N'London Calling', 211, 1, 4, N'Joe Strummer/Mick Jones', 199706, 6569007, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2600, N'Train In Vain', 211, 1, 4, N'Joe Strummer/Mick Jones', 189675, 6329877, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2601, N'Bankrobber', 211, 1, 4, N'Joe Strummer/Mick Jones', 272431, 9067323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2602, N'The Call Up', 211, 1, 4, N'The Clash', 324336, 10746937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2603, N'Hitsville UK', 211, 1, 4, N'The Clash', 261433, 8606887, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2604, N'The Magnificent Seven', 211, 1, 4, N'The Clash', 268486, 8889821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2605, N'This Is Radio Clash', 211, 1, 4, N'The Clash', 249756, 8366573, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2606, N'Know Your Rights', 211, 1, 4, N'The Clash', 217678, 7195726, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2607, N'Rock The Casbah', 211, 1, 4, N'The Clash', 222145, 7361500, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2608, N'Should I Stay Or Should I Go', 211, 1, 4, N'The Clash', 187219, 6188688, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2609, N'War (The Process)', 212, 1, 1, N'Billy Duffy/Ian Astbury', 252630, 8254842, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2610, N'The Saint', 212, 1, 1, N'Billy Duffy/Ian Astbury', 216215, 7061584, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2611, N'Rise', 212, 1, 1, N'Billy Duffy/Ian Astbury', 219088, 7106195, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2612, N'Take The Power', 212, 1, 1, N'Billy Duffy/Ian Astbury', 235755, 7650012, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2613, N'Breathe', 212, 1, 1, N'Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones', 299781, 9742361, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2614, N'Nico', 212, 1, 1, N'Billy Duffy/Ian Astbury', 289488, 9412323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2615, N'American Gothic', 212, 1, 1, N'Billy Duffy/Ian Astbury', 236878, 7739840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2616, N'Ashes And Ghosts', 212, 1, 1, N'Billy Duffy/Bob Rock/Ian Astbury', 300591, 9787692, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2617, N'Shape The Sky', 212, 1, 1, N'Billy Duffy/Ian Astbury', 209789, 6885647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2618, N'Speed Of Light', 212, 1, 1, N'Billy Duffy/Bob Rock/Ian Astbury', 262817, 8563352, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2619, N'True Believers', 212, 1, 1, N'Billy Duffy/Ian Astbury', 308009, 9981359, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2620, N'My Bridges Burn', 212, 1, 1, N'Billy Duffy/Ian Astbury', 231862, 7571370, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2621, N'She Sells Sanctuary', 213, 1, 1, 253727, 8368634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2622, N'Fire Woman', 213, 1, 1, 312790, 10196995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2623, N'Lil'' Evil', 213, 1, 1, 165825, 5419655, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2624, N'Spirit Walker', 213, 1, 1, 230060, 7555897, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2625, N'The Witch', 213, 1, 1, 258768, 8725403, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2626, N'Revolution', 213, 1, 1, 256026, 8371254, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2627, N'Wild Hearted Son', 213, 1, 1, 266893, 8670550, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2628, N'Love Removal Machine', 213, 1, 1, 257619, 8412167, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2629, N'Rain', 213, 1, 1, 236669, 7788461, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2630, N'Edie (Ciao Baby)', 213, 1, 1, 241632, 7846177, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2631, N'Heart Of Soul', 213, 1, 1, 274207, 8967257, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2632, N'Love', 213, 1, 1, 326739, 10729824, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2633, N'Wild Flower', 213, 1, 1, 215536, 7084321, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2634, N'Go West', 213, 1, 1, 238158, 7777749, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2635, N'Resurrection Joe', 213, 1, 1, 255451, 8532840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2636, N'Sun King', 213, 1, 1, 368431, 12010865, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2637, N'Sweet Soul Sister', 213, 1, 1, 212009, 6889883, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2638, N'Earth Mofo', 213, 1, 1, 282200, 9204581, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2639, N'Break on Through', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 149342, 4943144, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2640, N'Soul Kitchen', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 215066, 7040865, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2641, N'The Crystal Ship', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 154853, 5052658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2642, N'Twentienth Century Fox', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 153913, 5069211, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2643, N'Alabama Song', 214, 1, 1, N'Weill-Brecht', 200097, 6563411, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2644, N'Light My Fire', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 428329, 13963351, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2645, N'Back Door Man', 214, 1, 1, N'Willie Dixon, C. Burnett', 214360, 7035636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2646, N'I Looked At You', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 142080, 4663988, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2647, N'End Of The Night', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 172695, 5589732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2648, N'Take It As It Comes', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 137168, 4512656, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2649, N'The End', 214, 1, 1, N'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 701831, 22927336, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2650, N'Roxanne', 215, 1, 1, N'G M Sumner', 192992, 6330159, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2651, N'Can''t Stand Losing You', 215, 1, 1, N'G M Sumner', 181159, 5971983, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2652, N'Message in a Bottle', 215, 1, 1, N'G M Sumner', 291474, 9647829, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2653, N'Walking on the Moon', 215, 1, 1, N'G M Sumner', 302080, 10019861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2654, N'Don''t Stand so Close to Me', 215, 1, 1, N'G M Sumner', 241031, 7956658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2655, N'De Do Do Do, De Da Da Da', 215, 1, 1, N'G M Sumner', 247196, 8227075, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2656, N'Every Little Thing She Does is Magic', 215, 1, 1, N'G M Sumner', 261120, 8646853, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2657, N'Invisible Sun', 215, 1, 1, N'G M Sumner', 225593, 7304320, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2658, N'Spirit''s in the Material World', 215, 1, 1, N'G M Sumner', 181133, 5986622, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2659, N'Every Breath You Take', 215, 1, 1, N'G M Sumner', 254615, 8364520, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2660, N'King Of Pain', 215, 1, 1, N'G M Sumner', 300512, 9880303, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2661, N'Wrapped Around Your Finger', 215, 1, 1, N'G M Sumner', 315454, 10361490, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2662, N'Don''t Stand So Close to Me ''86', 215, 1, 1, N'G M Sumner', 293590, 9636683, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2663, N'Message in a Bottle (new classic rock mix)', 215, 1, 1, N'G M Sumner', 290951, 9640349, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2664, N'Time Is On My Side', 216, 1, 1, N'Jerry Ragavoy', 179983, 5855836, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2665, N'Heart Of Stone', 216, 1, 1, N'Jagger/Richards', 164493, 5329538, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2666, N'Play With Fire', 216, 1, 1, N'Nanker Phelge', 132022, 4265297, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2667, N'Satisfaction', 216, 1, 1, N'Jagger/Richards', 226612, 7398766, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2668, N'As Tears Go By', 216, 1, 1, N'Jagger/Richards/Oldham', 164284, 5357350, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2669, N'Get Off Of My Cloud', 216, 1, 1, N'Jagger/Richards', 176013, 5719514, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2670, N'Mother''s Little Helper', 216, 1, 1, N'Jagger/Richards', 167549, 5422434, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2671, N'19th Nervous Breakdown', 216, 1, 1, N'Jagger/Richards', 237923, 7742984, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2672, N'Paint It Black', 216, 1, 1, N'Jagger/Richards', 226063, 7442888, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2673, N'Under My Thumb', 216, 1, 1, N'Jagger/Richards', 221387, 7371799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2674, N'Ruby Tuesday', 216, 1, 1, N'Jagger/Richards', 197459, 6433467, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2675, N'Let''s Spend The Night Together', 216, 1, 1, N'Jagger/Richards', 217495, 7137048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2676, N'Intro', 217, 1, 1, N'Jagger/Richards', 49737, 1618591, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2677, N'You Got Me Rocking', 217, 1, 1, N'Jagger/Richards', 205766, 6734385, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2678, N'Gimmie Shelters', 217, 1, 1, N'Jagger/Richards', 382119, 12528764, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2679, N'Flip The Switch', 217, 1, 1, N'Jagger/Richards', 252421, 8336591, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2680, N'Memory Motel', 217, 1, 1, N'Jagger/Richards', 365844, 11982431, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2681, N'Corinna', 217, 1, 1, N'Jesse Ed Davis III/Taj Mahal', 257488, 8449471, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2682, N'Saint Of Me', 217, 1, 1, N'Jagger/Richards', 325694, 10725160, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2683, N'Wainting On A Friend', 217, 1, 1, N'Jagger/Richards', 302497, 9978046, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2684, N'Sister Morphine', 217, 1, 1, N'Faithfull/Jagger/Richards', 376215, 12345289, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2685, N'Live With Me', 217, 1, 1, N'Jagger/Richards', 234893, 7709006, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2686, N'Respectable', 217, 1, 1, N'Jagger/Richards', 215693, 7099669, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2687, N'Thief In The Night', 217, 1, 1, N'De Beauport/Jagger/Richards', 337266, 10952756, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2688, N'The Last Time', 217, 1, 1, N'Jagger/Richards', 287294, 9498758, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2689, N'Out Of Control', 217, 1, 1, N'Jagger/Richards', 479242, 15749289, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2690, N'Love Is Strong', 218, 1, 1, N'Jagger/Richards', 230896, 7639774, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2691, N'You Got Me Rocking', 218, 1, 1, N'Jagger/Richards', 215928, 7162159, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2692, N'Sparks Will Fly', 218, 1, 1, N'Jagger/Richards', 196466, 6492847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2693, N'The Worst', 218, 1, 1, N'Jagger/Richards', 144613, 4750094, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2694, N'New Faces', 218, 1, 1, N'Jagger/Richards', 172146, 5689122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2695, N'Moon Is Up', 218, 1, 1, N'Jagger/Richards', 222119, 7366316, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2696, N'Out Of Tears', 218, 1, 1, N'Jagger/Richards', 327418, 10677236, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2697, N'I Go Wild', 218, 1, 1, N'Jagger/Richards', 264019, 8630833, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2698, N'Brand New Car', 218, 1, 1, N'Jagger/Richards', 256052, 8459344, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2699, N'Sweethearts Together', 218, 1, 1, N'Jagger/Richards', 285492, 9550459, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2700, N'Suck On The Jugular', 218, 1, 1, N'Jagger/Richards', 268225, 8920566, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2701, N'Blinded By Rainbows', 218, 1, 1, N'Jagger/Richards', 273946, 8971343, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2702, N'Baby Break It Down', 218, 1, 1, N'Jagger/Richards', 249417, 8197309, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2703, N'Thru And Thru', 218, 1, 1, N'Jagger/Richards', 375092, 12175406, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2704, N'Mean Disposition', 218, 1, 1, N'Jagger/Richards', 249155, 8273602, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2705, N'Walking Wounded', 219, 1, 4, N'The Tea Party', 277968, 9184345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2706, N'Temptation', 219, 1, 4, N'The Tea Party', 205087, 6711943, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2707, N'The Messenger', 219, 1, 4, N'Daniel Lanois', 212062, 6975437, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2708, N'Psychopomp', 219, 1, 4, N'The Tea Party', 315559, 10295199, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2709, N'Sister Awake', 219, 1, 4, N'The Tea Party', 343875, 11299407, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2710, N'The Bazaar', 219, 1, 4, N'The Tea Party', 222458, 7245691, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2711, N'Save Me (Remix)', 219, 1, 4, N'The Tea Party', 396303, 13053839, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2712, N'Fire In The Head', 219, 1, 4, N'The Tea Party', 306337, 10005675, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2713, N'Release', 219, 1, 4, N'The Tea Party', 244114, 8014606, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2714, N'Heaven Coming Down', 219, 1, 4, N'The Tea Party', 241867, 7846459, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2715, N'The River (Remix)', 219, 1, 4, N'The Tea Party', 343170, 11193268, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2716, N'Babylon', 219, 1, 4, N'The Tea Party', 169795, 5568808, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2717, N'Waiting On A Sign', 219, 1, 4, N'The Tea Party', 261903, 8558590, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2718, N'Life Line', 219, 1, 4, N'The Tea Party', 277786, 9082773, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2719, N'Paint It Black', 219, 1, 4, N'Keith Richards/Mick Jagger', 214752, 7101572, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2720, N'Temptation', 220, 1, 4, N'The Tea Party', 205244, 6719465, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2721, N'Army Ants', 220, 1, 4, N'The Tea Party', 215405, 7075838, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2722, N'Psychopomp', 220, 1, 4, N'The Tea Party', 317231, 10351778, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2723, N'Gyroscope', 220, 1, 4, N'The Tea Party', 177711, 5810323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2724, N'Alarum', 220, 1, 4, N'The Tea Party', 298187, 9712545, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2725, N'Release', 220, 1, 4, N'The Tea Party', 266292, 8725824, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2726, N'Transmission', 220, 1, 4, N'The Tea Party', 317257, 10351152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2727, N'Babylon', 220, 1, 4, N'The Tea Party', 292466, 9601786, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2728, N'Pulse', 220, 1, 4, N'The Tea Party', 250253, 8183872, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2729, N'Emerald', 220, 1, 4, N'The Tea Party', 289750, 9543789, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2730, N'Aftermath', 220, 1, 4, N'The Tea Party', 343745, 11085607, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2731, N'I Can''t Explain', 221, 1, 1, N'Pete Townshend', 125152, 4082896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2732, N'Anyway, Anyhow, Anywhere', 221, 1, 1, N'Pete Townshend, Roger Daltrey', 161253, 5234173, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2733, N'My Generation', 221, 1, 1, N'John Entwistle/Pete Townshend', 197825, 6446634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2734, N'Substitute', 221, 1, 1, N'Pete Townshend', 228022, 7409995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2735, N'I''m A Boy', 221, 1, 1, N'Pete Townshend', 157126, 5120605, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2736, N'Boris The Spider', 221, 1, 1, N'John Entwistle', 149472, 4835202, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2737, N'Happy Jack', 221, 1, 1, N'Pete Townshend', 132310, 4353063, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2738, N'Pictures Of Lily', 221, 1, 1, N'Pete Townshend', 164414, 5329751, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2739, N'I Can See For Miles', 221, 1, 1, N'Pete Townshend', 262791, 8604989, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2740, N'Magic Bus', 221, 1, 1, N'Pete Townshend', 197224, 6452700, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2741, N'Pinball Wizard', 221, 1, 1, N'John Entwistle/Pete Townshend', 181890, 6055580, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2742, N'The Seeker', 221, 1, 1, N'Pete Townshend', 204643, 6736866, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2743, N'Baba O''Riley', 221, 1, 1, N'John Entwistle/Pete Townshend', 309472, 10141660, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2744, N'Won''t Get Fooled Again (Full Length Version)', 221, 1, 1, N'John Entwistle/Pete Townshend', 513750, 16855521, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2745, N'Let''s See Action', 221, 1, 1, N'Pete Townshend', 243513, 8078418, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2746, N'5.15', 221, 1, 1, N'Pete Townshend', 289619, 9458549, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2747, N'Join Together', 221, 1, 1, N'Pete Townshend', 262556, 8602485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2748, N'Squeeze Box', 221, 1, 1, N'Pete Townshend', 161280, 5256508, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2749, N'Who Are You (Single Edit Version)', 221, 1, 1, N'John Entwistle/Pete Townshend', 299232, 9900469, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2750, N'You Better You Bet', 221, 1, 1, N'Pete Townshend', 338520, 11160877, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2751, N'Primavera', 222, 1, 7, N'Genival Cassiano/Silvio Rochael', 126615, 4152604, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2752, N'Chocolate', 222, 1, 7, N'Tim Maia', 194690, 6411587, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2753, N'Azul Da Cor Do Mar', 222, 1, 7, N'Tim Maia', 197955, 6475007, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2754, N'O Descobridor Dos Sete Mares', 222, 1, 7, N'Gilson Mendonça/Michel', 262974, 8749583, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2755, N'Até Que Enfim Encontrei Você', 222, 1, 7, N'Tim Maia', 105064, 3477751, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2756, N'Coroné Antonio Bento', 222, 1, 7, N'Do Vale, João/Luiz Wanderley', 131317, 4340326, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2757, N'New Love', 222, 1, 7, N'Tim Maia', 237897, 7786824, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2758, N'Não Vou Ficar', 222, 1, 7, N'Tim Maia', 172068, 5642919, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2759, N'Música No Ar', 222, 1, 7, N'Tim Maia', 158511, 5184891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2760, N'Salve Nossa Senhora', 222, 1, 7, N'Carlos Imperial/Edardo Araújo', 115461, 3827629, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2761, N'Você Fugiu', 222, 1, 7, N'Genival Cassiano', 238367, 7971147, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2762, N'Cristina Nº 2', 222, 1, 7, N'Carlos Imperial/Tim Maia', 90148, 2978589, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2763, N'Compadre', 222, 1, 7, N'Tim Maia', 171389, 5631446, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2764, N'Over Again', 222, 1, 7, N'Tim Maia', 200489, 6612634, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2765, N'Réu Confesso', 222, 1, 7, N'Tim Maia', 217391, 7189874, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2766, N'O Que Me Importa', 223, 1, 7, 153155, 4977852, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2767, N'Gostava Tanto De Você', 223, 1, 7, 253805, 8380077, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2768, N'Você', 223, 1, 7, 242599, 7911702, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2769, N'Não Quero Dinheiro', 223, 1, 7, 152607, 5031797, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2770, N'Eu Amo Você', 223, 1, 7, 242782, 7914628, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2771, N'A Festa Do Santo Reis', 223, 1, 7, 159791, 5204995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2772, N'I Don''t Know What To Do With Myself', 223, 1, 7, 221387, 7251478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2773, N'Padre Cícero', 223, 1, 7, 139598, 4581685, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2774, N'Nosso Adeus', 223, 1, 7, 206471, 6793270, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2775, N'Canário Do Reino', 223, 1, 7, 139337, 4552858, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2776, N'Preciso Ser Amado', 223, 1, 7, 174001, 5618895, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2777, N'Balanço', 223, 1, 7, 209737, 6890327, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2778, N'Preciso Aprender A Ser Só', 223, 1, 7, 162220, 5213894, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2779, N'Esta É A Canção', 223, 1, 7, 184450, 6069933, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2780, N'Formigueiro', 223, 1, 7, 252943, 8455132, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2781, N'Comida', 224, 1, 4, N'Titãs', 322612, 10786578, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2782, N'Go Back', 224, 1, 4, N'Titãs', 230504, 7668899, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2783, N'Prá Dizer Adeus', 224, 1, 4, N'Titãs', 222484, 7382048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2784, N'Família', 224, 1, 4, N'Titãs', 218331, 7267458, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2785, N'Os Cegos Do Castelo', 224, 1, 4, N'Titãs', 296829, 9868187, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2786, N'O Pulso', 224, 1, 4, N'Titãs', 199131, 6566998, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2787, N'Marvin', 224, 1, 4, N'Titãs', 264359, 8741444, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2788, N'Nem 5 Minutos Guardados', 224, 1, 4, N'Titãs', 245995, 8143797, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2789, N'Flores', 224, 1, 4, N'Titãs', 215510, 7148017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2790, N'Palavras', 224, 1, 4, N'Titãs', 158458, 5285715, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2791, N'Hereditário', 224, 1, 4, N'Titãs', 151693, 5020547, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2792, N'A Melhor Forma', 224, 1, 4, N'Titãs', 191503, 6349938, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2793, N'Cabeça Dinossauro', 224, 1, 4, N'Titãs', 37120, 1220930, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2794, N'32 Dentes', 224, 1, 4, N'Titãs', 184946, 6157904, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2795, N'Bichos Escrotos (Vinheta)', 224, 1, 4, N'Titãs', 104986, 3503755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2796, N'Não Vou Lutar', 224, 1, 4, N'Titãs', 189988, 6308613, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2797, N'Homem Primata (Vinheta)', 224, 1, 4, N'Titãs', 34168, 1124909, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2798, N'Homem Primata', 224, 1, 4, N'Titãs', 195500, 6486470, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2799, N'Polícia (Vinheta)', 224, 1, 4, N'Titãs', 56111, 1824213, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2800, N'Querem Meu Sangue', 224, 1, 4, N'Titãs', 212401, 7069773, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2801, N'Diversão', 224, 1, 4, N'Titãs', 285936, 9531268, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2802, N'Televisão', 224, 1, 4, N'Titãs', 293668, 9776548, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2803, N'Sonifera Ilha', 225, 1, 4, N'Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto', 170684, 5678290, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2804, N'Lugar Nenhum', 225, 1, 4, N'Arnaldo Antunes/Charles Gavin/Marcelo Fromer/Sérgio Britto/Toni Bellotto', 195840, 6472780, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2805, N'Sua Impossivel Chance', 225, 1, 4, N'Nando Reis', 246622, 8073248, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2806, N'Desordem', 225, 1, 4, N'Charles Gavin/Marcelo Fromer/Sérgio Britto', 213289, 7067340, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2807, N'Não Vou Me Adaptar', 225, 1, 4, N'Arnaldo Antunes', 221831, 7304656, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2808, N'Domingo', 225, 1, 4, N'Sérgio Britto/Toni Bellotto', 208613, 6883180, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2809, N'Amanhã Não Se Sabe', 225, 1, 4, N'Sérgio Britto', 189440, 6243967, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2810, N'Caras Como Eu', 225, 1, 4, N'Toni Bellotto', 183092, 5999048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2811, N'Senhora E Senhor', 225, 1, 4, N'Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos', 203702, 6733733, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2812, N'Era Uma Vez', 225, 1, 4, N'Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto', 224261, 7453156, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2813, N'Miséria', 225, 1, 4, N'Arnaldo Antunes/Britto, SergioMiklos, Paulo', 262191, 8727645, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2814, N'Insensível', 225, 1, 4, N'Sérgio Britto', 207830, 6893664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2815, N'Eu E Ela', 225, 1, 4, N'Nando Reis', 276035, 9138846, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2816, N'Toda Cor', 225, 1, 4, N'Ciro Pressoa/Marcelo Fromer', 209084, 6939176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2817, N'É Preciso Saber Viver', 225, 1, 4, N'Erasmo Carlos/Roberto Carlos', 251115, 8271418, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2818, N'Senhor Delegado/Eu Não Aguento', 225, 1, 4, N'Antonio Lopes', 156656, 5277983, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2819, N'Battlestar Galactica: The Story So Far', 226, 3, 18, 2622250, 490750393, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2820, N'Occupation / Precipice', 227, 3, 19, 5286953, 1054423946, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2821, N'Exodus, Pt. 1', 227, 3, 19, 2621708, 475079441, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2822, N'Exodus, Pt. 2', 227, 3, 19, 2618000, 466820021, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2823, N'Collaborators', 227, 3, 19, 2626626, 483484911, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2824, N'Torn', 227, 3, 19, 2631291, 495262585, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2825, N'A Measure of Salvation', 227, 3, 18, 2563938, 489715554, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2826, N'Hero', 227, 3, 18, 2713755, 506896959, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2827, N'Unfinished Business', 227, 3, 18, 2622038, 528499160, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2828, N'The Passage', 227, 3, 18, 2623875, 490375760, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2829, N'The Eye of Jupiter', 227, 3, 18, 2618750, 517909587, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2830, N'Rapture', 227, 3, 18, 2624541, 508406153, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2831, N'Taking a Break from All Your Worries', 227, 3, 18, 2624207, 492700163, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2832, N'The Woman King', 227, 3, 18, 2626376, 552893447, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2833, N'A Day In the Life', 227, 3, 18, 2620245, 462818231, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2834, N'Dirty Hands', 227, 3, 18, 2627961, 537648614, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2835, N'Maelstrom', 227, 3, 18, 2622372, 514154275, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2836, N'The Son Also Rises', 227, 3, 18, 2621830, 499258498, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2837, N'Crossroads, Pt. 1', 227, 3, 20, 2622622, 486233524, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2838, N'Crossroads, Pt. 2', 227, 3, 20, 2869953, 497335706, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2839, N'Genesis', 228, 3, 19, 2611986, 515671080, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2840, N'Don''t Look Back', 228, 3, 21, 2571154, 493628775, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2841, N'One Giant Leap', 228, 3, 21, 2607649, 521616246, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2842, N'Collision', 228, 3, 21, 2605480, 526182322, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2843, N'Hiros', 228, 3, 21, 2533575, 488835454, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2844, N'Better Halves', 228, 3, 21, 2573031, 549353481, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2845, N'Nothing to Hide', 228, 3, 19, 2605647, 510058181, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2846, N'Seven Minutes to Midnight', 228, 3, 21, 2613988, 515590682, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2847, N'Homecoming', 228, 3, 21, 2601351, 516015339, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2848, N'Six Months Ago', 228, 3, 19, 2602852, 505133869, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2849, N'Fallout', 228, 3, 21, 2594761, 501145440, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2850, N'The Fix', 228, 3, 21, 2600266, 507026323, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2851, N'Distractions', 228, 3, 21, 2590382, 537111289, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2852, N'Run!', 228, 3, 21, 2602602, 542936677, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2853, N'Unexpected', 228, 3, 21, 2598139, 511777758, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2854, N'Company Man', 228, 3, 21, 2601226, 493168135, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2855, N'Company Man', 228, 3, 21, 2601101, 503786316, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2856, N'Parasite', 228, 3, 21, 2602727, 487461520, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2857, N'A Tale of Two Cities', 229, 3, 19, 2636970, 513691652, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2858, N'Lost (Pilot, Part 1) [Premiere]', 230, 3, 19, 2548875, 217124866, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2859, N'Man of Science, Man of Faith (Premiere)', 231, 3, 19, 2612250, 543342028, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2860, N'Adrift', 231, 3, 19, 2564958, 502663995, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2861, N'Lost (Pilot, Part 2)', 230, 3, 19, 2436583, 204995876, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2862, N'The Glass Ballerina', 229, 3, 21, 2637458, 535729216, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2863, N'Further Instructions', 229, 3, 19, 2563980, 502041019, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2864, N'Orientation', 231, 3, 19, 2609083, 500600434, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2865, N'Tabula Rasa', 230, 3, 19, 2627105, 210526410, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2866, N'Every Man for Himself', 229, 3, 21, 2637387, 513803546, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2867, N'Everybody Hates Hugo', 231, 3, 19, 2609192, 498163145, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2868, N'Walkabout', 230, 3, 19, 2587370, 207748198, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2869, N'...And Found', 231, 3, 19, 2563833, 500330548, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2870, N'The Cost of Living', 229, 3, 19, 2637500, 505647192, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2871, N'White Rabbit', 230, 3, 19, 2571965, 201654606, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2872, N'Abandoned', 231, 3, 19, 2587041, 537348711, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2873, N'House of the Rising Sun', 230, 3, 19, 2590032, 210379525, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2874, N'I Do', 229, 3, 19, 2627791, 504676825, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2875, N'Not In Portland', 229, 3, 21, 2637303, 499061234, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2876, N'Not In Portland', 229, 3, 21, 2637345, 510546847, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2877, N'The Moth', 230, 3, 19, 2631327, 228896396, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2878, N'The Other 48 Days', 231, 3, 19, 2610625, 535256753, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2879, N'Collision', 231, 3, 19, 2564916, 475656544, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2880, N'Confidence Man', 230, 3, 19, 2615244, 223756475, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2881, N'Flashes Before Your Eyes', 229, 3, 21, 2636636, 537760755, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2882, N'Lost Survival Guide', 229, 3, 21, 2632590, 486675063, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2883, N'Solitary', 230, 3, 19, 2612894, 207045178, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2884, N'What Kate Did', 231, 3, 19, 2610250, 484583988, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2885, N'Raised By Another', 230, 3, 19, 2590459, 223623810, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2886, N'Stranger In a Strange Land', 229, 3, 21, 2636428, 505056021, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2887, N'The 23rd Psalm', 231, 3, 19, 2610416, 487401604, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2888, N'All the Best Cowboys Have Daddy Issues', 230, 3, 19, 2555492, 211743651, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2889, N'The Hunting Party', 231, 3, 21, 2611333, 520350364, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2890, N'Tricia Tanaka Is Dead', 229, 3, 21, 2635010, 548197162, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2891, N'Enter 77', 229, 3, 21, 2629796, 517521422, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2892, N'Fire + Water', 231, 3, 21, 2600333, 488458695, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2893, N'Whatever the Case May Be', 230, 3, 19, 2616410, 183867185, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2894, N'Hearts and Minds', 230, 3, 19, 2619462, 207607466, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2895, N'Par Avion', 229, 3, 21, 2629879, 517079642, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2896, N'The Long Con', 231, 3, 19, 2679583, 518376636, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2897, N'One of Them', 231, 3, 21, 2698791, 542332389, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2898, N'Special', 230, 3, 19, 2618530, 219961967, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2899, N'The Man from Tallahassee', 229, 3, 21, 2637637, 550893556, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2900, N'Exposé', 229, 3, 21, 2593760, 511338017, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2901, N'Homecoming', 230, 3, 19, 2515882, 210675221, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2902, N'Maternity Leave', 231, 3, 21, 2780416, 555244214, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2903, N'Left Behind', 229, 3, 21, 2635343, 538491964, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2904, N'Outlaws', 230, 3, 19, 2619887, 206500939, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2905, N'The Whole Truth', 231, 3, 21, 2610125, 495487014, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2906, N'...In Translation', 230, 3, 19, 2604575, 215441983, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2907, N'Lockdown', 231, 3, 21, 2610250, 543886056, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2908, N'One of Us', 229, 3, 21, 2638096, 502387276, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2909, N'Catch-22', 229, 3, 21, 2561394, 489773399, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2910, N'Dave', 231, 3, 19, 2825166, 574325829, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2911, N'Numbers', 230, 3, 19, 2609772, 214709143, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2912, N'D.O.C.', 229, 3, 21, 2616032, 518556641, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2913, N'Deus Ex Machina', 230, 3, 19, 2582009, 214996732, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2914, N'S.O.S.', 231, 3, 19, 2639541, 517979269, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2915, N'Do No Harm', 230, 3, 19, 2618487, 212039309, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2916, N'Two for the Road', 231, 3, 21, 2610958, 502404558, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2917, N'The Greater Good', 230, 3, 19, 2617784, 214130273, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2918, N'"?"', 231, 3, 19, 2782333, 528227089, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2919, N'Born to Run', 230, 3, 19, 2618619, 213772057, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2920, N'Three Minutes', 231, 3, 19, 2763666, 531556853, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2921, N'Exodus (Part 1)', 230, 3, 19, 2620747, 213107744, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2922, N'Live Together, Die Alone, Pt. 1', 231, 3, 21, 2478041, 457364940, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2923, N'Exodus (Part 2) [Season Finale]', 230, 3, 19, 2605557, 208667059, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2924, N'Live Together, Die Alone, Pt. 2', 231, 3, 19, 2656531, 503619265, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2925, N'Exodus (Part 3) [Season Finale]', 230, 3, 19, 2619869, 197937785, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2926, N'Zoo Station', 232, 1, 1, N'U2', 276349, 9056902, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2927, N'Even Better Than The Real Thing', 232, 1, 1, N'U2', 221361, 7279392, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2928, N'One', 232, 1, 1, N'U2', 276192, 9158892, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2929, N'Until The End Of The World', 232, 1, 1, N'U2', 278700, 9132485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2930, N'Who''s Gonna Ride Your Wild Horses', 232, 1, 1, N'U2', 316551, 10304369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2931, N'So Cruel', 232, 1, 1, N'U2', 349492, 11527614, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2932, N'The Fly', 232, 1, 1, N'U2', 268982, 8825399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2933, N'Mysterious Ways', 232, 1, 1, N'U2', 243826, 8062057, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2934, N'Tryin'' To Throw Your Arms Around The World', 232, 1, 1, N'U2', 232463, 7612124, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2935, N'Ultraviolet (Light My Way)', 232, 1, 1, N'U2', 330788, 10754631, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2936, N'Acrobat', 232, 1, 1, N'U2', 270288, 8824723, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2937, N'Love Is Blindness', 232, 1, 1, N'U2', 263497, 8531766, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2938, N'Beautiful Day', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 248163, 8056723, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2939, N'Stuck In A Moment You Can''t Get Out Of', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 272378, 8997366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2940, N'Elevation', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 227552, 7479414, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2941, N'Walk On', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 296280, 9800861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2942, N'Kite', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 266893, 8765761, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2943, N'In A Little While', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 219271, 7189647, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2944, N'Wild Honey', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 226768, 7466069, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2945, N'Peace On Earth', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 288496, 9476171, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2946, N'When I Look At The World', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 257776, 8500491, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2947, N'New York', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 330370, 10862323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2948, N'Grace', 233, 1, 1, N'Adam Clayton, Bono, Larry Mullen, The Edge', 330657, 10877148, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2949, N'The Three Sunrises', 234, 1, 1, N'U2', 234788, 7717990, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2950, N'Spanish Eyes', 234, 1, 1, N'U2', 196702, 6392710, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2951, N'Sweetest Thing', 234, 1, 1, N'U2', 185103, 6154896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2952, N'Love Comes Tumbling', 234, 1, 1, N'U2', 282671, 9328802, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2953, N'Bass Trap', 234, 1, 1, N'U2', 213289, 6834107, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2954, N'Dancing Barefoot', 234, 1, 1, N'Ivan Kral/Patti Smith', 287895, 9488294, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2955, N'Everlasting Love', 234, 1, 1, N'Buzz Cason/Mac Gayden', 202631, 6708932, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2956, N'Unchained Melody', 234, 1, 1, N'Alex North/Hy Zaret', 294164, 9597568, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2957, N'Walk To The Water', 234, 1, 1, N'U2', 289253, 9523336, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2958, N'Luminous Times (Hold On To Love)', 234, 1, 1, N'Brian Eno/U2', 277760, 9015513, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2959, N'Hallelujah Here She Comes', 234, 1, 1, N'U2', 242364, 8027028, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2960, N'Silver And Gold', 234, 1, 1, N'Bono', 279875, 9199746, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2961, N'Endless Deep', 234, 1, 1, N'U2', 179879, 5899070, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2962, N'A Room At The Heartbreak Hotel', 234, 1, 1, N'U2', 274546, 9015416, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2963, N'Trash, Trampoline And The Party Girl', 234, 1, 1, N'U2', 153965, 5083523, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2964, N'Vertigo', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 194612, 6329502, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2965, N'Miracle Drug', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 239124, 7760916, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2966, N'Sometimes You Can''t Make It On Your Own', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 308976, 10112863, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2967, N'Love And Peace Or Else', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 290690, 9476723, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2968, N'City Of Blinding Lights', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 347951, 11432026, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2969, N'All Because Of You', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 219141, 7198014, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2970, N'A Man And A Woman', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 270132, 8938285, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2971, N'Crumbs From Your Table', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 303568, 9892349, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2972, N'One Step Closer', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 231680, 7512912, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2973, N'Original Of The Species', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 281443, 9230041, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2974, N'Yahweh', 235, 1, 1, N'Adam Clayton, Bono, Larry Mullen & The Edge', 262034, 8636998, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2975, N'Discotheque', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 319582, 10442206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2976, N'Do You Feel Loved', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 307539, 10122694, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2977, N'Mofo', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 349178, 11583042, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2978, N'If God Will Send His Angels', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 322533, 10563329, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2979, N'Staring At The Sun', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 276924, 9082838, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2980, N'Last Night On Earth', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 285753, 9401017, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2981, N'Gone', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 266866, 8746301, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2982, N'Miami', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 293041, 9741603, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2983, N'The Playboy Mansion', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 280555, 9274144, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2984, N'If You Wear That Velvet Dress', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 315167, 10227333, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2985, N'Please', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 302602, 9909484, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2986, N'Wake Up Dead Man', 236, 1, 1, N'Bono, The Edge, Adam Clayton, and Larry Mullen', 292832, 9515903, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2987, N'Helter Skelter', 237, 1, 1, N'Lennon, John/McCartney, Paul', 187350, 6097636, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2988, N'Van Diemen''s Land', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 186044, 5990280, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2989, N'Desire', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 179226, 5874535, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2990, N'Hawkmoon 269', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 382458, 12494987, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2991, N'All Along The Watchtower', 237, 1, 1, N'Dylan, Bob', 264568, 8623572, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2992, N'I Still Haven''t Found What I''m Looking for', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 353567, 11542247, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2993, N'Freedom For My People', 237, 1, 1, N'Mabins, Macie/Magee, Sterling/Robinson, Bobby', 38164, 1249764, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2994, N'Silver And Gold', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 349831, 11450194, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2995, N'Pride (In The Name Of Love)', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 267807, 8806361, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2996, N'Angel Of Harlem', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 229276, 7498022, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2997, N'Love Rescue Me', 237, 1, 1, N'Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge', 384522, 12508716, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2998, N'When Love Comes To Town', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 255869, 8340954, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (2999, N'Heartland', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 303360, 9867748, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3000, N'God Part II', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 195604, 6497570, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3001, N'The Star Spangled Banner', 237, 1, 1, N'Hendrix, Jimi', 43232, 1385810, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3002, N'Bullet The Blue Sky', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 337005, 10993607, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3003, N'All I Want Is You', 237, 1, 1, N'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 390243, 12729820, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3004, N'Pride (In The Name Of Love)', 238, 1, 1, N'U2', 230243, 7549085, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3005, N'New Year''s Day', 238, 1, 1, N'U2', 258925, 8491818, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3006, N'With Or Without You', 238, 1, 1, N'U2', 299023, 9765188, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3007, N'I Still Haven''t Found What I''m Looking For', 238, 1, 1, N'U2', 280764, 9306737, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3008, N'Sunday Bloody Sunday', 238, 1, 1, N'U2', 282174, 9269668, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3009, N'Bad', 238, 1, 1, N'U2', 351817, 11628058, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3010, N'Where The Streets Have No Name', 238, 1, 1, N'U2', 276218, 9042305, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3011, N'I Will Follow', 238, 1, 1, N'U2', 218253, 7184825, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3012, N'The Unforgettable Fire', 238, 1, 1, N'U2', 295183, 9684664, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3013, N'Sweetest Thing', 238, 1, 1, N'U2 & Daragh O''Toole', 183066, 6071385, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3014, N'Desire', 238, 1, 1, N'U2', 179853, 5893206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3015, N'When Love Comes To Town', 238, 1, 1, N'U2', 258194, 8479525, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3016, N'Angel Of Harlem', 238, 1, 1, N'U2', 230217, 7527339, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3017, N'All I Want Is You', 238, 1, 1, N'U2 & Van Dyke Parks', 591986, 19202252, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3018, N'Sunday Bloody Sunday', 239, 1, 1, N'U2', 278204, 9140849, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3019, N'Seconds', 239, 1, 1, N'U2', 191582, 6352121, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3020, N'New Year''s Day', 239, 1, 1, N'U2', 336274, 11054732, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3021, N'Like A Song...', 239, 1, 1, N'U2', 287294, 9365379, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3022, N'Drowning Man', 239, 1, 1, N'U2', 254458, 8457066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3023, N'The Refugee', 239, 1, 1, N'U2', 221283, 7374043, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3024, N'Two Hearts Beat As One', 239, 1, 1, N'U2', 243487, 7998323, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3025, N'Red Light', 239, 1, 1, N'U2', 225854, 7453704, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3026, N'Surrender', 239, 1, 1, N'U2', 333505, 11221406, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3027, N'"40"', 239, 1, 1, N'U2', 157962, 5251767, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3028, N'Zooropa', 240, 1, 1, N'U2; Bono', 392359, 12807979, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3029, N'Babyface', 240, 1, 1, N'U2; Bono', 241998, 7942573, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3030, N'Numb', 240, 1, 1, N'U2; Edge, The', 260284, 8577861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3031, N'Lemon', 240, 1, 1, N'U2; Bono', 418324, 13988878, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3032, N'Stay (Faraway, So Close!)', 240, 1, 1, N'U2; Bono', 298475, 9785480, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3033, N'Daddy''s Gonna Pay For Your Crashed Car', 240, 1, 1, N'U2; Bono', 320287, 10609581, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3034, N'Some Days Are Better Than Others', 240, 1, 1, N'U2; Bono', 257436, 8417690, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3035, N'The First Time', 240, 1, 1, N'U2; Bono', 225697, 7247651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3036, N'Dirty Day', 240, 1, 1, N'U2; Bono & Edge, The', 324440, 10652877, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3037, N'The Wanderer', 240, 1, 1, N'U2; Bono', 283951, 9258717, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3038, N'Breakfast In Bed', 241, 1, 8, 196179, 6513325, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3039, N'Where Did I Go Wrong', 241, 1, 8, 226742, 7485054, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3040, N'I Would Do For You', 241, 1, 8, 334524, 11193602, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3041, N'Homely Girl', 241, 1, 8, 203833, 6790788, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3042, N'Here I Am (Come And Take Me)', 241, 1, 8, 242102, 8106249, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3043, N'Kingston Town', 241, 1, 8, 226951, 7638236, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3044, N'Wear You To The Ball', 241, 1, 8, 213342, 7159527, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3045, N'(I Can''t Help) Falling In Love With You', 241, 1, 8, 207568, 6905623, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3046, N'Higher Ground', 241, 1, 8, 260179, 8665244, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3047, N'Bring Me Your Cup', 241, 1, 8, 341498, 11346114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3048, N'C''est La Vie', 241, 1, 8, 270053, 9031661, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3049, N'Reggae Music', 241, 1, 8, 245106, 8203931, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3050, N'Superstition', 241, 1, 8, 319582, 10728099, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3051, N'Until My Dying Day', 241, 1, 8, 235807, 7886195, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3052, N'Where Have All The Good Times Gone?', 242, 1, 1, N'Ray Davies', 186723, 6063937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3053, N'Hang ''Em High', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 210259, 6872314, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3054, N'Cathedral', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 82860, 2650998, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3055, N'Secrets', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 206968, 6803255, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3056, N'Intruder', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 100153, 3282142, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3057, N'(Oh) Pretty Woman', 242, 1, 1, N'Bill Dees/Roy Orbison', 174680, 5665828, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3058, N'Dancing In The Street', 242, 1, 1, N'Ivy Jo Hunter/Marvin Gaye/William Stevenson', 225985, 7461499, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3059, N'Little Guitars (Intro)', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 42240, 1439530, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3060, N'Little Guitars', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 228806, 7453043, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3061, N'Big Bad Bill (Is Sweet William Now)', 242, 1, 1, N'Jack Yellen/Milton Ager', 165146, 5489609, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3062, N'The Full Bug', 242, 1, 1, N'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 201116, 6551013, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3063, N'Happy Trails', 242, 1, 1, N'Dale Evans', 65488, 2111141, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3064, N'Eruption', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 102164, 3272891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3065, N'Ain''t Talkin'' ''bout Love', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 228336, 7569506, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3066, N'Runnin'' With The Devil', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 215902, 7061901, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3067, N'Dance the Night Away', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 185965, 6087433, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3068, N'And the Cradle Will Rock...', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 213968, 7011402, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3069, N'Unchained', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 208953, 6777078, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3070, N'Jump', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth', 241711, 7911090, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3071, N'Panama', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, David Lee Roth', 211853, 6921784, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3072, N'Why Can''t This Be Love', 243, 1, 1, N'Van Halen', 227761, 7457655, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3073, N'Dreams', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 291813, 9504119, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3074, N'When It''s Love', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 338991, 11049966, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3075, N'Poundcake', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 321854, 10366978, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3076, N'Right Now', 243, 1, 1, N'Van Halen', 321828, 10503352, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3077, N'Can''t Stop Loving You', 243, 1, 1, N'Van Halen', 248502, 8107896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3078, N'Humans Being', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 308950, 10014683, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3079, N'Can''t Get This Stuff No More', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 315376, 10355753, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3080, N'Me Wise Magic', 243, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 366053, 12013467, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3081, N'Runnin'' With The Devil', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 216032, 7056863, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3082, N'Eruption', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 102556, 3286026, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3083, N'You Really Got Me', 244, 1, 1, N'Ray Davies', 158589, 5194092, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3084, N'Ain''t Talkin'' ''Bout Love', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 230060, 7617284, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3085, N'I''m The One', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 226507, 7373922, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3086, N'Jamie''s Cryin''', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 210546, 6946086, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3087, N'Atomic Punk', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 182073, 5908861, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3088, N'Feel Your Love Tonight', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 222850, 7293608, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3089, N'Little Dreamer', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 203258, 6648122, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3090, N'Ice Cream Man', 244, 1, 1, N'John Brim', 200306, 6573145, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3091, N'On Fire', 244, 1, 1, N'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 180636, 5879235, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3092, N'Neworld', 245, 1, 1, N'Van Halen', 105639, 3495897, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3093, N'Without You', 245, 1, 1, N'Van Halen', 390295, 12619558, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3094, N'One I Want', 245, 1, 1, N'Van Halen', 330788, 10743970, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3095, N'From Afar', 245, 1, 1, N'Van Halen', 324414, 10524554, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3096, N'Dirty Water Dog', 245, 1, 1, N'Van Halen', 327392, 10709202, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3097, N'Once', 245, 1, 1, N'Van Halen', 462837, 15378082, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3098, N'Fire in the Hole', 245, 1, 1, N'Van Halen', 331728, 10846768, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3099, N'Josephina', 245, 1, 1, N'Van Halen', 342491, 11161521, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3100, N'Year to the Day', 245, 1, 1, N'Van Halen', 514612, 16621333, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3101, N'Primary', 245, 1, 1, N'Van Halen', 86987, 2812555, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3102, N'Ballot or the Bullet', 245, 1, 1, N'Van Halen', 342282, 11212955, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3103, N'How Many Say I', 245, 1, 1, N'Van Halen', 363937, 11716855, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3104, N'Sucker Train Blues', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 267859, 8738780, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3105, N'Do It For The Kids', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 235911, 7693331, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3106, N'Big Machine', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 265613, 8673442, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3107, N'Illegal I Song', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 257750, 8483347, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3108, N'Spectacle', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 221701, 7252876, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3109, N'Fall To Pieces', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 270889, 8823096, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3110, N'Headspace', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 223033, 7237986, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3111, N'Superhuman', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 255921, 8365328, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3112, N'Set Me Free', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 247954, 8053388, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3113, N'You Got No Right', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 335412, 10991094, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3114, N'Slither', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 248398, 8118785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3115, N'Dirty Little Thing', 246, 1, 1, N'Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash', 237844, 7732982, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3116, N'Loving The Alien', 246, 1, 1, N'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 348786, 11412762, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3117, N'Pela Luz Dos Olhos Teus', 247, 1, 7, 119196, 3905715, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3118, N'A Bencao E Outros', 247, 1, 7, 421093, 14234427, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3119, N'Tudo Na Mais Santa Paz', 247, 1, 7, 222406, 7426757, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3120, N'O Velho E Aflor', 247, 1, 7, 275121, 9126828, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3121, N'Cotidiano N 2', 247, 1, 7, 55902, 1805797, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3122, N'Adeus', 247, 1, 7, 221884, 7259351, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3123, N'Samba Pra Endrigo', 247, 1, 7, 259265, 8823551, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3124, N'So Por Amor', 247, 1, 7, 236591, 7745764, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3125, N'Meu Pranto Rolou', 247, 1, 7, 181760, 6003345, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3126, N'Mulher Carioca', 247, 1, 7, 191686, 6395048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3127, N'Um Homem Chamado Alfredo', 247, 1, 7, 151640, 4976227, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3128, N'Samba Do Jato', 247, 1, 7, 220813, 7357840, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3129, N'Oi, La', 247, 1, 7, 167053, 5562700, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3130, N'Vinicius, Poeta Do Encontro', 247, 1, 7, 336431, 10858776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3131, N'Soneto Da Separacao', 247, 1, 7, 193880, 6277511, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3132, N'Still Of The Night', 141, 1, 3, N'Sykes', 398210, 13043817, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3133, N'Here I Go Again', 141, 1, 3, N'Marsden', 233874, 7652473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3134, N'Is This Love', 141, 1, 3, N'Sykes', 283924, 9262360, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3135, N'Love Ain''t No Stranger', 141, 1, 3, N'Galley', 259395, 8490428, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3136, N'Looking For Love', 141, 1, 3, N'Sykes', 391941, 12769847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3137, N'Now You''re Gone', 141, 1, 3, N'Vandenberg', 251141, 8162193, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3138, N'Slide It In', 141, 1, 3, N'Coverdale', 202475, 6615152, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3139, N'Slow An'' Easy', 141, 1, 3, N'Moody', 367255, 11961332, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3140, N'Judgement Day', 141, 1, 3, N'Vandenberg', 317074, 10326997, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3141, N'You''re Gonna Break My Hart Again', 141, 1, 3, N'Sykes', 250853, 8176847, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3142, N'The Deeper The Love', 141, 1, 3, N'Vandenberg', 262791, 8606504, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3143, N'Crying In The Rain', 141, 1, 3, N'Coverdale', 337005, 10931921, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3144, N'Fool For Your Loving', 141, 1, 3, N'Marsden/Moody', 250801, 8129820, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3145, N'Sweet Lady Luck', 141, 1, 3, N'Vandenberg', 273737, 8919163, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3146, N'Faixa Amarela', 248, 1, 7, N'Beto Gogo/Jessé Pai/Luiz Carlos/Zeca Pagodinho', 240692, 8082036, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3147, N'Posso Até Me Apaixonar', 248, 1, 7, N'Dudu Nobre', 200698, 6735526, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3148, N'Não Sou Mais Disso', 248, 1, 7, N'Jorge Aragão/Zeca Pagodinho', 225985, 7613817, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3149, N'Vivo Isolado Do Mundo', 248, 1, 7, N'Alcides Dias Lopes', 180035, 6073995, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3150, N'Coração Em Desalinho', 248, 1, 7, N'Mauro Diniz/Ratino Sigem', 185208, 6225948, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3151, N'Seu Balancê', 248, 1, 7, N'Paulinho Rezende/Toninho Geraes', 219454, 7311219, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3152, N'Vai Adiar', 248, 1, 7, N'Alcino Corrêa/Monarco', 270393, 9134882, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3153, N'Rugas', 248, 1, 7, N'Augusto Garcez/Nelson Cavaquinho', 140930, 4703182, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3154, N'Feirinha da Pavuna/Luz do Repente/Bagaço da Laranja', 248, 1, 7, N'Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina Pérolo/Zeca Pagodinho', 107206, 3593684, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3155, N'Sem Essa de Malandro Agulha', 248, 1, 7, N'Aldir Blanc/Jayme Vignoli', 158484, 5332668, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3156, N'Chico Não Vai na Corimba', 248, 1, 7, N'Dudu Nobre/Zeca Pagodinho', 269374, 9122188, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3157, N'Papel Principal', 248, 1, 7, N'Almir Guineto/Dedé Paraiso/Luverci Ernesto', 217495, 7325302, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3158, N'Saudade Louca', 248, 1, 7, N'Acyr Marques/Arlindo Cruz/Franco', 243591, 8136475, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3159, N'Camarão que Dorme e Onda Leva', 248, 1, 7, N'Acyi Marques/Arlindo Bruz/Braço, Beto Sem/Zeca Pagodinho', 299102, 10012231, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3160, N'Sapopemba e Maxambomba', 248, 1, 7, N'Nei Lopes/Wilson Moreira', 245394, 8268712, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3161, N'Minha Fé', 248, 1, 7, N'Murilão', 206994, 6981474, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3162, N'Lua de Ogum', 248, 1, 7, N'Ratinho/Zeca Pagodinho', 168463, 5719129, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3163, N'Samba pras moças', 248, 1, 7, N'Grazielle/Roque Ferreira', 152816, 5121366, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3164, N'Verdade', 248, 1, 7, N'Carlinhos Santana/Nelson Rufino', 332826, 11120708, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3165, N'The Brig', 229, 3, 21, 2617325, 488919543, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3166, N'.07%', 228, 3, 21, 2585794, 541715199, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3167, N'Five Years Gone', 228, 3, 21, 2587712, 530551890, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3168, N'The Hard Part', 228, 3, 21, 2601017, 475996611, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3169, N'The Man Behind the Curtain', 229, 3, 21, 2615990, 493951081, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3170, N'Greatest Hits', 229, 3, 21, 2617117, 522102916, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3171, N'Landslide', 228, 3, 21, 2600725, 518677861, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3172, N'The Office: An American Workplace (Pilot)', 249, 3, 19, 1380833, 290482361, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3173, N'Diversity Day', 249, 3, 19, 1306416, 257879716, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3174, N'Health Care', 249, 3, 19, 1321791, 260493577, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3175, N'The Alliance', 249, 3, 19, 1317125, 266203162, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3176, N'Basketball', 249, 3, 19, 1323541, 267464180, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3177, N'Hot Girl', 249, 3, 19, 1325458, 267836576, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3178, N'The Dundies', 250, 3, 19, 1253541, 246845576, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3179, N'Sexual Harassment', 250, 3, 19, 1294541, 273069146, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3180, N'Office Olympics', 250, 3, 19, 1290458, 256247623, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3181, N'The Fire', 250, 3, 19, 1288166, 266856017, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3182, N'Halloween', 250, 3, 19, 1315333, 249205209, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3183, N'The Fight', 250, 3, 19, 1320028, 277149457, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3184, N'The Client', 250, 3, 19, 1299341, 253836788, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3185, N'Performance Review', 250, 3, 19, 1292458, 256143822, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3186, N'Email Surveillance', 250, 3, 19, 1328870, 265101113, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3187, N'Christmas Party', 250, 3, 19, 1282115, 260891300, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3188, N'Booze Cruise', 250, 3, 19, 1267958, 252518021, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3189, N'The Injury', 250, 3, 19, 1275275, 253912762, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3190, N'The Secret', 250, 3, 19, 1264875, 253143200, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3191, N'The Carpet', 250, 3, 19, 1264375, 256477011, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3192, N'Boys and Girls', 250, 3, 19, 1278333, 255245729, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3193, N'Valentine''s Day', 250, 3, 19, 1270375, 253552710, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3194, N'Dwight''s Speech', 250, 3, 19, 1278041, 255001728, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3195, N'Take Your Daughter to Work Day', 250, 3, 19, 1268333, 253451012, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3196, N'Michael''s Birthday', 250, 3, 19, 1237791, 247238398, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3197, N'Drug Testing', 250, 3, 19, 1278625, 244626927, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3198, N'Conflict Resolution', 250, 3, 19, 1274583, 253808658, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3199, N'Casino Night - Season Finale', 250, 3, 19, 1712791, 327642458, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3200, N'Gay Witch Hunt', 251, 3, 19, 1326534, 276942637, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3201, N'The Convention', 251, 3, 19, 1297213, 255117055, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3202, N'The Coup', 251, 3, 19, 1276526, 267205501, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3203, N'Grief Counseling', 251, 3, 19, 1282615, 256912833, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3204, N'The Initiation', 251, 3, 19, 1280113, 251728257, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3205, N'Diwali', 251, 3, 19, 1279904, 252726644, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3206, N'Branch Closing', 251, 3, 19, 1822781, 358761786, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3207, N'The Merger', 251, 3, 19, 1801926, 345960631, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3208, N'The Convict', 251, 3, 22, 1273064, 248863427, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3209, N'A Benihana Christmas, Pts. 1 & 2', 251, 3, 22, 2519436, 515301752, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3210, N'Back from Vacation', 251, 3, 22, 1271688, 245378749, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3211, N'Traveling Salesmen', 251, 3, 22, 1289039, 250822697, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3212, N'Producer''s Cut: The Return', 251, 3, 22, 1700241, 337219980, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3213, N'Ben Franklin', 251, 3, 22, 1271938, 264168080, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3214, N'Phyllis''s Wedding', 251, 3, 22, 1271521, 258561054, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3215, N'Business School', 251, 3, 22, 1302093, 254402605, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3216, N'Cocktails', 251, 3, 22, 1272522, 259011909, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3217, N'The Negotiation', 251, 3, 22, 1767851, 371663719, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3218, N'Safety Training', 251, 3, 22, 1271229, 253054534, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3219, N'Product Recall', 251, 3, 22, 1268268, 251208610, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3220, N'Women''s Appreciation', 251, 3, 22, 1732649, 338778844, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3221, N'Beach Games', 251, 3, 22, 1676134, 333671149, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3222, N'The Job', 251, 3, 22, 2541875, 501060138, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3223, N'How to Stop an Exploding Man', 228, 3, 21, 2687103, 487881159, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3224, N'Through a Looking Glass', 229, 3, 21, 5088838, 1059546140, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3225, N'Your Time Is Gonna Come', 252, 2, 1, N'Page, Jones', 310774, 5126563, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3226, N'Battlestar Galactica, Pt. 1', 253, 3, 20, 2952702, 541359437, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3227, N'Battlestar Galactica, Pt. 2', 253, 3, 20, 2956081, 521387924, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3228, N'Battlestar Galactica, Pt. 3', 253, 3, 20, 2927802, 554509033, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3229, N'Lost Planet of the Gods, Pt. 1', 253, 3, 20, 2922547, 537812711, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3230, N'Lost Planet of the Gods, Pt. 2', 253, 3, 20, 2914664, 534343985, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3231, N'The Lost Warrior', 253, 3, 20, 2920045, 558872190, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3232, N'The Long Patrol', 253, 3, 20, 2925008, 513122217, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3233, N'The Gun On Ice Planet Zero, Pt. 1', 253, 3, 20, 2907615, 540980196, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3234, N'The Gun On Ice Planet Zero, Pt. 2', 253, 3, 20, 2924341, 546542281, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3235, N'The Magnificent Warriors', 253, 3, 20, 2924716, 570152232, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3236, N'The Young Lords', 253, 3, 20, 2863571, 587051735, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3237, N'The Living Legend, Pt. 1', 253, 3, 20, 2924507, 503641007, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3238, N'The Living Legend, Pt. 2', 253, 3, 20, 2923298, 515632754, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3239, N'Fire In Space', 253, 3, 20, 2926593, 536784757, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3240, N'War of the Gods, Pt. 1', 253, 3, 20, 2922630, 505761343, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3241, N'War of the Gods, Pt. 2', 253, 3, 20, 2923381, 487899692, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3242, N'The Man With Nine Lives', 253, 3, 20, 2956998, 577829804, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3243, N'Murder On the Rising Star', 253, 3, 20, 2935894, 551759986, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3244, N'Greetings from Earth, Pt. 1', 253, 3, 20, 2960293, 536824558, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3245, N'Greetings from Earth, Pt. 2', 253, 3, 20, 2903778, 527842860, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3246, N'Baltar''s Escape', 253, 3, 20, 2922088, 525564224, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3247, N'Experiment In Terra', 253, 3, 20, 2923548, 547982556, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3248, N'Take the Celestra', 253, 3, 20, 2927677, 512381289, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3249, N'The Hand of God', 253, 3, 20, 2924007, 536583079, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3250, N'Pilot', 254, 3, 19, 2484567, 492670102, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3251, N'Through the Looking Glass, Pt. 2', 229, 3, 21, 2617117, 550943353, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3252, N'Through the Looking Glass, Pt. 1', 229, 3, 21, 2610860, 493211809, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3253, N'Instant Karma', 255, 2, 9, 193188, 3150090, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3254, N'#9 Dream', 255, 2, 9, 278312, 4506425, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3255, N'Mother', 255, 2, 9, 287740, 4656660, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3256, N'Give Peace a Chance', 255, 2, 9, 274644, 4448025, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3257, N'Cold Turkey', 255, 2, 9, 281424, 4556003, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3258, N'Whatever Gets You Thru the Night', 255, 2, 9, 215084, 3499018, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3259, N'I''m Losing You', 255, 2, 9, 240719, 3907467, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3260, N'Gimme Some Truth', 255, 2, 9, 232778, 3780807, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3261, N'Oh, My Love', 255, 2, 9, 159473, 2612788, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3262, N'Imagine', 255, 2, 9, 192329, 3136271, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3263, N'Nobody Told Me', 255, 2, 9, 210348, 3423395, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3264, N'Jealous Guy', 255, 2, 9, 239094, 3881620, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3265, N'Working Class Hero', 255, 2, 9, 265449, 4301430, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3266, N'Power to the People', 255, 2, 9, 213018, 3466029, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3267, N'Imagine', 255, 2, 9, 219078, 3562542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3268, N'Beautiful Boy', 255, 2, 9, 227995, 3704642, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3269, N'Isolation', 255, 2, 9, 156059, 2558399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3270, N'Watching the Wheels', 255, 2, 9, 198645, 3237063, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3271, N'Grow Old With Me', 255, 2, 9, 149093, 2447453, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3272, N'Gimme Some Truth', 255, 2, 9, 187546, 3060083, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3273, N'[Just Like] Starting Over', 255, 2, 9, 215549, 3506308, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3274, N'God', 255, 2, 9, 260410, 4221135, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3275, N'Real Love', 255, 2, 9, 236911, 3846658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3276, N'Sympton of the Universe', 256, 2, 1, 340890, 5489313, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3277, N'Snowblind', 256, 2, 1, 295960, 4773171, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3278, N'Black Sabbath', 256, 2, 1, 364180, 5860455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3279, N'Fairies Wear Boots', 256, 2, 1, 392764, 6315916, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3280, N'War Pigs', 256, 2, 1, 515435, 8270194, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3281, N'The Wizard', 256, 2, 1, 282678, 4561796, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3282, N'N.I.B.', 256, 2, 1, 335248, 5399456, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3283, N'Sweet Leaf', 256, 2, 1, 354706, 5709700, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3284, N'Never Say Die', 256, 2, 1, 258343, 4173799, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3285, N'Sabbath, Bloody Sabbath', 256, 2, 1, 333622, 5373633, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3286, N'Iron Man/Children of the Grave', 256, 2, 1, 552308, 8858616, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3287, N'Paranoid', 256, 2, 1, 189171, 3071042, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3288, N'Rock You Like a Hurricane', 257, 2, 1, 255766, 4300973, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3289, N'No One Like You', 257, 2, 1, 240325, 4050259, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3290, N'The Zoo', 257, 2, 1, 332740, 5550779, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3291, N'Loving You Sunday Morning', 257, 2, 1, 339125, 5654493, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3292, N'Still Loving You', 257, 2, 1, 390674, 6491444, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3293, N'Big City Nights', 257, 2, 1, 251865, 4237651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3294, N'Believe in Love', 257, 2, 1, 325774, 5437651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3295, N'Rhythm of Love', 257, 2, 1, 231246, 3902834, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3296, N'I Can''t Explain', 257, 2, 1, 205332, 3482099, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3297, N'Tease Me Please Me', 257, 2, 1, 287229, 4811894, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3298, N'Wind of Change', 257, 2, 1, 315325, 5268002, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3299, N'Send Me an Angel', 257, 2, 1, 273041, 4581492, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3300, N'Jump Around', 258, 1, 17, N'E. Schrody/L. Muggerud', 217835, 8715653, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3301, N'Salutations', 258, 1, 17, N'E. Schrody/L. Dimant', 69120, 2767047, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3302, N'Put Your Head Out', 258, 1, 17, N'E. Schrody/L. Freese/L. Muggerud', 182230, 7291473, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3303, N'Top O'' The Morning To Ya', 258, 1, 17, N'E. Schrody/L. Dimant', 216633, 8667599, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3304, N'Commercial 1', 258, 1, 17, N'L. Muggerud', 7941, 319888, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3305, N'House And The Rising Sun', 258, 1, 17, N'E. Schrody/J. Vasquez/L. Dimant', 219402, 8778369, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3306, N'Shamrocks And Shenanigans', 258, 1, 17, N'E. Schrody/L. Dimant', 218331, 8735518, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3307, N'House Of Pain Anthem', 258, 1, 17, N'E. Schrody/L. Dimant', 155611, 6226713, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3308, N'Danny Boy, Danny Boy', 258, 1, 17, N'E. Schrody/L. Muggerud', 114520, 4583091, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3309, N'Guess Who''s Back', 258, 1, 17, N'E. Schrody/L. Muggerud', 238393, 9537994, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3310, N'Commercial 2', 258, 1, 17, N'L. Muggerud', 21211, 850698, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3311, N'Put On Your Shit Kickers', 258, 1, 17, N'E. Schrody/L. Muggerud', 190432, 7619569, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3312, N'Come And Get Some Of This', 258, 1, 17, N'E. Schrody/L. Muggerud/R. Medrano', 170475, 6821279, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3313, N'Life Goes On', 258, 1, 17, N'E. Schrody/R. Medrano', 163030, 6523458, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3314, N'One For The Road', 258, 1, 17, N'E. Schrody/L. Dimant/L. Muggerud', 170213, 6810820, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3315, N'Feel It', 258, 1, 17, N'E. Schrody/R. Medrano', 239908, 9598588, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3316, N'All My Love', 258, 1, 17, N'E. Schrody/L. Dimant', 200620, 8027065, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3317, N'Jump Around (Pete Rock Remix)', 258, 1, 17, N'E. Schrody/L. Muggerud', 236120, 9447101, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3318, N'Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)', 258, 1, 17, N'E. Schrody/L. Dimant', 237035, 9483705, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3319, N'Instinto Colectivo', 259, 1, 15, 300564, 12024875, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3320, N'Chapa o Coco', 259, 1, 15, 143830, 5755478, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3321, N'Prostituta', 259, 1, 15, 359000, 14362307, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3322, N'Eu So Queria Sumir', 259, 1, 15, 269740, 10791921, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3323, N'Tres Reis', 259, 1, 15, 304143, 12168015, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3324, N'Um Lugar ao Sol', 259, 1, 15, 212323, 8495217, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3325, N'Batalha Naval', 259, 1, 15, 285727, 11431382, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3326, N'Todo o Carnaval tem seu Fim', 259, 1, 15, 237426, 9499371, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3327, N'O Misterio do Samba', 259, 1, 15, 226142, 9047970, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3328, N'Armadura', 259, 1, 15, 232881, 9317533, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3329, N'Na Ladeira', 259, 1, 15, 221570, 8865099, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3330, N'Carimbo', 259, 1, 15, 328751, 13152314, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3331, N'Catimbo', 259, 1, 15, 254484, 10181692, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3332, N'Funk de Bamba', 259, 1, 15, 237322, 9495184, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3333, N'Chega no Suingue', 259, 1, 15, 221805, 8874509, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3334, N'Mun-Ra', 259, 1, 15, 274651, 10988338, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3335, N'Freestyle Love', 259, 1, 15, 318484, 12741680, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3336, N'War Pigs', 260, 4, 23, 234013, 8052374, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3337, N'Past, Present, and Future', 261, 3, 21, 2492867, 490796184, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3338, N'The Beginning of the End', 261, 3, 21, 2611903, 526865050, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3339, N'LOST Season 4 Trailer', 261, 3, 21, 112712, 20831818, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3340, N'LOST In 8:15', 261, 3, 21, 497163, 98460675, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3341, N'Confirmed Dead', 261, 3, 21, 2611986, 512168460, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3342, N'The Economist', 261, 3, 21, 2609025, 516934914, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3343, N'Eggtown', 261, 3, 19, 2608817, 501061240, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3344, N'The Constant', 261, 3, 21, 2611569, 520209363, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3345, N'The Other Woman', 261, 3, 21, 2605021, 513246663, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3346, N'Ji Yeon', 261, 3, 19, 2588797, 506458858, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3347, N'Meet Kevin Johnson', 261, 3, 19, 2612028, 504132981, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3348, N'The Shape of Things to Come', 261, 3, 21, 2591299, 502284266, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3349, N'Amanda', 262, 5, 2, N'Luca Gusella', 246503, 4011615, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3350, N'Despertar', 262, 5, 2, N'Andrea Dulbecco', 307385, 4821485, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3351, N'Din Din Wo (Little Child)', 263, 5, 16, N'Habib Koité', 285837, 4615841, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3352, N'Distance', 264, 5, 15, N'Karsh Kale/Vishal Vaid', 327122, 5327463, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3353, N'I Guess You''re Right', 265, 5, 1, N'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 212044, 3453849, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3354, N'I Ka Barra (Your Work)', 263, 5, 16, N'Habib Koité', 300605, 4855457, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3355, N'Love Comes', 265, 5, 1, N'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 199923, 3240609, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3356, N'Muita Bobeira', 266, 5, 7, N'Luciana Souza', 172710, 2775071, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3357, N'OAM''s Blues', 267, 5, 2, N'Aaron Goldberg', 266936, 4292028, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3358, N'One Step Beyond', 264, 5, 15, N'Karsh Kale', 366085, 6034098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3359, N'Symphony No. 3 in E-flat major, Op. 55, "Eroica" - Scherzo: Allegro Vivace', 268, 5, 24, N'Ludwig van Beethoven', 356426, 5817216, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3360, N'Something Nice Back Home', 261, 3, 21, 2612779, 484711353, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3361, N'Cabin Fever', 261, 3, 21, 2612028, 477733942, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3362, N'There''s No Place Like Home, Pt. 1', 261, 3, 21, 2609526, 522919189, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3363, N'There''s No Place Like Home, Pt. 2', 261, 3, 21, 2497956, 523748920, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3364, N'There''s No Place Like Home, Pt. 3', 261, 3, 21, 2582957, 486161766, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3365, N'Say Hello 2 Heaven', 269, 2, 23, 384497, 6477217, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3366, N'Reach Down', 269, 2, 23, 672773, 11157785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3367, N'Hunger Strike', 269, 2, 23, 246292, 4233212, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3368, N'Pushin Forward Back', 269, 2, 23, 225278, 3892066, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3369, N'Call Me a Dog', 269, 2, 23, 304458, 5177612, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3370, N'Times of Trouble', 269, 2, 23, 342539, 5795951, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3371, N'Wooden Jesus', 269, 2, 23, 250565, 4302603, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3372, N'Your Savior', 269, 2, 23, 244226, 4199626, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3373, N'Four Walled World', 269, 2, 23, 414474, 6964048, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3374, N'All Night Thing', 269, 2, 23, 231803, 3997982, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3375, N'No Such Thing', 270, 2, 23, N'Chris Cornell', 224837, 3691272, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3376, N'Poison Eye', 270, 2, 23, N'Chris Cornell', 237120, 3890037, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3377, N'Arms Around Your Love', 270, 2, 23, N'Chris Cornell', 214016, 3516224, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3378, N'Safe and Sound', 270, 2, 23, N'Chris Cornell', 256764, 4207769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3379, N'She''ll Never Be Your Man', 270, 2, 23, N'Chris Cornell', 204078, 3355715, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3380, N'Ghosts', 270, 2, 23, N'Chris Cornell', 231547, 3799745, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3381, N'Killing Birds', 270, 2, 23, N'Chris Cornell', 218498, 3588776, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3382, N'Billie Jean', 270, 2, 23, N'Michael Jackson', 281401, 4606408, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3383, N'Scar On the Sky', 270, 2, 23, N'Chris Cornell', 220193, 3616618, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3384, N'Your Soul Today', 270, 2, 23, N'Chris Cornell', 205959, 3385722, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3385, N'Finally Forever', 270, 2, 23, N'Chris Cornell', 217035, 3565098, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3386, N'Silence the Voices', 270, 2, 23, N'Chris Cornell', 267376, 4379597, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3387, N'Disappearing Act', 270, 2, 23, N'Chris Cornell', 273320, 4476203, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3388, N'You Know My Name', 270, 2, 23, N'Chris Cornell', 240255, 3940651, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3389, N'Revelations', 271, 2, 23, 252376, 4111051, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3390, N'One and the Same', 271, 2, 23, 217732, 3559040, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3391, N'Sound of a Gun', 271, 2, 23, 260154, 4234990, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3392, N'Until We Fall', 271, 2, 23, 230758, 3766605, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3393, N'Original Fire', 271, 2, 23, 218916, 3577821, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3394, N'Broken City', 271, 2, 23, 228366, 3728955, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3395, N'Somedays', 271, 2, 23, 213831, 3497176, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3396, N'Shape of Things to Come', 271, 2, 23, 274597, 4465399, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3397, N'Jewel of the Summertime', 271, 2, 23, 233242, 3806103, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3398, N'Wide Awake', 271, 2, 23, 266308, 4333050, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3399, N'Nothing Left to Say But Goodbye', 271, 2, 23, 213041, 3484335, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3400, N'Moth', 271, 2, 23, 298049, 4838884, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3401, N'Show Me How to Live (Live at the Quart Festival)', 271, 2, 23, 301974, 4901540, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3402, N'Band Members Discuss Tracks from "Revelations"', 271, 3, 23, 294294, 61118891, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3403, N'Intoitus: Adorate Deum', 272, 2, 24, N'Anonymous', 245317, 4123531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3404, N'Miserere mei, Deus', 273, 2, 24, N'Gregorio Allegri', 501503, 8285941, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3405, N'Canon and Gigue in D Major: I. Canon', 274, 2, 24, N'Johann Pachelbel', 271788, 4438393, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3406, N'Concerto No. 1 in E Major, RV 269 "Spring": I. Allegro', 275, 2, 24, N'Antonio Vivaldi', 199086, 3347810, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3407, N'Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace', 276, 2, 24, N'Johann Sebastian Bach', 193722, 3192890, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3408, N'Aria Mit 30 Veränderungen, BWV 988 "Goldberg Variations": Aria', 277, 2, 24, N'Johann Sebastian Bach', 120463, 2081895, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3409, N'Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Prélude', 278, 2, 24, N'Johann Sebastian Bach', 143288, 2315495, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3410, N'The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound', 279, 2, 24, N'George Frideric Handel', 582029, 9553140, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3411, N'Solomon HWV 67: The Arrival of the Queen of Sheba', 280, 2, 24, N'George Frideric Handel', 197135, 3247914, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3412, N'"Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro', 281, 2, 24, N'Wolfgang Amadeus Mozart', 348971, 5760129, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3413, N'Concerto for Clarinet in A Major, K. 622: II. Adagio', 282, 2, 24, N'Wolfgang Amadeus Mozart', 394482, 6474980, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3414, N'Symphony No. 104 in D Major "London": IV. Finale: Spiritoso', 283, 4, 24, N'Franz Joseph Haydn', 306687, 10085867, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3415, N'Symphony No.5 in C Minor: I. Allegro con brio', 284, 2, 24, N'Ludwig van Beethoven', 392462, 6419730, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3416, N'Ave Maria', 285, 2, 24, N'Franz Schubert', 338243, 5605648, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3417, N'Nabucco: Chorus, "Va, Pensiero, Sull''ali Dorate"', 286, 2, 24, N'Giuseppe Verdi', 274504, 4498583, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3418, N'Die Walküre: The Ride of the Valkyries', 287, 2, 24, N'Richard Wagner', 189008, 3114209, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3419, N'Requiem, Op.48: 4. Pie Jesu', 288, 2, 24, N'Gabriel Fauré', 258924, 4314850, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3420, N'The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy', 289, 2, 24, N'Peter Ilyich Tchaikovsky', 304226, 5184289, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3421, N'Nimrod (Adagio) from Variations On an Original Theme, Op. 36 "Enigma"', 290, 2, 24, N'Edward Elgar', 250031, 4124707, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3422, N'Madama Butterfly: Un Bel Dì Vedremo', 291, 2, 24, N'Giacomo Puccini', 277639, 4588197, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3423, N'Jupiter, the Bringer of Jollity', 292, 2, 24, N'Gustav Holst', 522099, 8547876, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3424, N'Turandot, Act III, Nessun dorma!', 293, 2, 24, N'Giacomo Puccini', 176911, 2920890, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3425, N'Adagio for Strings from the String Quartet, Op. 11', 294, 2, 24, N'Samuel Barber', 596519, 9585597, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3426, N'Carmina Burana: O Fortuna', 295, 2, 24, N'Carl Orff', 156710, 2630293, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3427, N'Fanfare for the Common Man', 296, 2, 24, N'Aaron Copland', 198064, 3211245, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3428, N'Branch Closing', 251, 3, 22, 1814855, 360331351, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3429, N'The Return', 251, 3, 22, 1705080, 343877320, 1.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3430, N'Toccata and Fugue in D Minor, BWV 565: I. Toccata', 297, 2, 24, N'Johann Sebastian Bach', 153901, 2649938, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3431, N'Symphony No.1 in D Major, Op.25 "Classical", Allegro Con Brio', 298, 2, 24, N'Sergei Prokofiev', 254001, 4195542, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3432, N'Scheherazade, Op. 35: I. The Sea and Sindbad''s Ship', 299, 2, 24, N'Nikolai Rimsky-Korsakov', 545203, 8916313, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3433, N'Concerto No.2 in F Major, BWV1047, I. Allegro', 300, 2, 24, N'Johann Sebastian Bach', 307244, 5064553, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3434, N'Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto', 301, 2, 24, N'Frédéric Chopin', 560342, 9160082, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3435, N'Cavalleria Rusticana \ Act \ Intermezzo Sinfonico', 302, 2, 24, N'Pietro Mascagni', 243436, 4001276, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3436, N'Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)', 303, 2, 24, N'Jean Sibelius', 406000, 5908455, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3437, N'Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, "Moonlight": I. Adagio sostenuto', 304, 2, 24, N'Ludwig van Beethoven', 391000, 6318740, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3438, N'Fantasia On Greensleeves', 280, 2, 24, N'Ralph Vaughan Williams', 268066, 4513190, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3439, N'Das Lied Von Der Erde, Von Der Jugend', 305, 2, 24, N'Gustav Mahler', 223583, 3700206, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3440, N'Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato', 306, 2, 24, N'Edward Elgar', 483133, 7865479, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3441, N'Two Fanfares for Orchestra: II. Short Ride in a Fast Machine', 307, 2, 24, N'John Adams', 254930, 4310896, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3442, N'Wellington''s Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph', 308, 2, 24, N'Ludwig van Beethoven', 412000, 6965201, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3443, N'Missa Papae Marcelli: Kyrie', 309, 2, 24, N'Giovanni Pierluigi da Palestrina', 240666, 4244149, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3444, N'Romeo et Juliette: No. 11 - Danse des Chevaliers', 310, 2, 24, 275015, 4519239, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3445, N'On the Beautiful Blue Danube', 311, 2, 24, N'Johann Strauss II', 526696, 8610225, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3446, N'Symphonie Fantastique, Op. 14: V. Songe d''une nuit du sabbat', 312, 2, 24, N'Hector Berlioz', 561967, 9173344, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3447, N'Carmen: Overture', 313, 2, 24, N'Georges Bizet', 132932, 2189002, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3448, N'Lamentations of Jeremiah, First Set \ Incipit Lamentatio', 314, 2, 24, N'Thomas Tallis', 69194, 1208080, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3449, N'Music for the Royal Fireworks, HWV351 (1749): La Réjouissance', 315, 2, 24, N'George Frideric Handel', 120000, 2193734, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3450, N'Peer Gynt Suite No.1, Op.46: 1. Morning Mood', 316, 2, 24, N'Edvard Grieg', 253422, 4298769, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3451, N'Die Zauberflöte, K.620: "Der Hölle Rache Kocht in Meinem Herze"', 317, 2, 25, N'Wolfgang Amadeus Mozart', 174813, 2861468, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3452, N'SCRIABIN: Prelude in B Major, Op. 11, No. 11', 318, 4, 24, 101293, 3819535, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3453, N'Pavan, Lachrimae Antiquae', 319, 2, 24, N'John Dowland', 253281, 4211495, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3454, N'Symphony No. 41 in C Major, K. 551, "Jupiter": IV. Molto allegro', 320, 2, 24, N'Wolfgang Amadeus Mozart', 362933, 6173269, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3455, N'Rehab', 321, 2, 14, 213240, 3416878, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3456, N'You Know I''m No Good', 321, 2, 14, 256946, 4133694, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3457, N'Me & Mr. Jones', 321, 2, 14, 151706, 2449438, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3458, N'Just Friends', 321, 2, 14, 191933, 3098906, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3459, N'Back to Black', 321, 2, 14, N'Mark Ronson', 240320, 3852953, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3460, N'Love Is a Losing Game', 321, 2, 14, 154386, 2509409, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3461, N'Tears Dry On Their Own', 321, 2, 14, N'Nickolas Ashford & Valerie Simpson', 185293, 2996598, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3462, N'Wake Up Alone', 321, 2, 14, N'Paul O''duffy', 221413, 3576773, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3463, N'Some Unholy War', 321, 2, 14, 141520, 2304465, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3464, N'He Can Only Hold Her', 321, 2, 14, N'Richard Poindexter & Robert Poindexter', 166680, 2666531, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3465, N'You Know I''m No Good (feat. Ghostface Killah)', 321, 2, 14, 202320, 3260658, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3466, N'Rehab (Hot Chip Remix)', 321, 2, 14, 418293, 6670600, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3467, N'Intro / Stronger Than Me', 322, 2, 9, 234200, 3832165, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3468, N'You Sent Me Flying / Cherry', 322, 2, 9, 409906, 6657517, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3469, N'F**k Me Pumps', 322, 2, 9, N'Salaam Remi', 200253, 3324343, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3470, N'I Heard Love Is Blind', 322, 2, 9, 129666, 2190831, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3471, N'(There Is) No Greater Love (Teo Licks)', 322, 2, 9, N'Isham Jones & Marty Symes', 167933, 2773507, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3472, N'In My Bed', 322, 2, 9, N'Salaam Remi', 315960, 5211774, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3473, N'Take the Box', 322, 2, 9, N'Luke Smith', 199160, 3281526, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3474, N'October Song', 322, 2, 9, N'Matt Rowe & Stefan Skarbek', 204846, 3358125, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3475, N'What Is It About Men', 322, 2, 9, N'Delroy "Chris" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole', 209573, 3426106, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3476, N'Help Yourself', 322, 2, 9, N'Freddy James, Jimmy hogarth & Larry Stock', 300884, 5029266, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3477, N'Amy Amy Amy (Outro)', 322, 2, 9, N'Astor Campbell, Delroy "Chris" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek', 663426, 10564704, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3478, N'Slowness', 323, 2, 23, 215386, 3644793, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3479, N'Prometheus Overture, Op. 43', 324, 4, 24, N'Ludwig van Beethoven', 339567, 10887931, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3480, N'Sonata for Solo Violin: IV: Presto', 325, 4, 24, N'Béla Bartók', 299350, 9785346, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3481, N'A Midsummer Night''s Dream, Op.61 Incidental Music: No.7 Notturno', 326, 2, 24, 387826, 6497867, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3482, N'Suite No. 3 in D, BWV 1068: III. Gavotte I & II', 327, 2, 24, N'Johann Sebastian Bach', 225933, 3847164, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3483, N'Concert pour 4 Parties de V**les, H. 545: I. Prelude', 328, 2, 24, N'Marc-Antoine Charpentier', 110266, 1973559, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3484, N'Adios nonino', 329, 2, 24, N'Astor Piazzolla', 289388, 4781384, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3485, N'Symphony No. 3 Op. 36 for Orchestra and Soprano "Symfonia Piesni Zalosnych" \ Lento E Largo - Tranquillissimo', 330, 2, 24, N'Henryk Górecki', 567494, 9273123, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3486, N'Act IV, Symphony', 331, 2, 24, N'Henry Purcell', 364296, 5987695, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3487, N'3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux', 332, 2, 24, N'Erik Satie', 385506, 6458501, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3488, N'Music for the Funeral of Queen Mary: VI. "Thou Knowest, Lord, the Secrets of Our Hearts"', 333, 2, 24, N'Henry Purcell', 142081, 2365930, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3489, N'Symphony No. 2: III. Allegro vivace', 334, 2, 24, N'Kurt Weill', 376510, 6129146, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3490, N'Partita in E Major, BWV 1006A: I. Prelude', 335, 2, 24, N'Johann Sebastian Bach', 285673, 4744929, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3491, N'Le Sacre Du Printemps: I.iv. Spring Rounds', 336, 2, 24, N'Igor Stravinsky', 234746, 4072205, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3492, N'Sing Joyfully', 314, 2, 24, N'William Byrd', 133768, 2256484, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3493, N'Metopes, Op. 29: Calypso', 337, 2, 24, N'Karol Szymanowski', 333669, 5548755, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3494, N'Symphony No. 2, Op. 16 - "The Four Temperaments": II. Allegro Comodo e Flemmatico', 338, 2, 24, N'Carl Nielsen', 286998, 4834785, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3495, N'24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor', 339, 2, 24, N'Niccolò Paganini', 265541, 4371533, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3496, N'Étude 1, In C Major - Preludio (Presto) - Liszt', 340, 4, 24, 51780, 2229617, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3497, N'Erlkonig, D.328', 341, 2, 24, 261849, 4307907, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3498, N'Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro', 342, 4, 24, N'Pietro Antonio Locatelli', 493573, 16454937, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3499, N'Pini Di Roma (Pinien Von Rom) \ I Pini Della Via Appia', 343, 2, 24, 286741, 4718950, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3500, N'String Quartet No. 12 in C Minor, D. 703 "Quartettsatz": II. Andante - Allegro assai', 344, 2, 24, N'Franz Schubert', 139200, 2283131, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3501, N'L''orfeo, Act 3, Sinfonia (Orchestra)', 345, 2, 24, N'Claudio Monteverdi', 66639, 1189062, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3502, N'Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro', 346, 2, 24, N'Wolfgang Amadeus Mozart', 221331, 3665114, 0.99); INSERT INTO [dbo].[Track] ([TrackId], [Name], [AlbumId], [MediaTypeId], [GenreId], [Composer], [Milliseconds], [Bytes], [UnitPrice]) VALUES (3503, N'Koyaanisqatsi', 347, 2, 10, N'Philip Glass', 206005, 3305164, 0.99); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (1, N'Adams', N'Andrew', N'General Manager', '1962/2/18', '2002/8/14', N'11120 Jasper Ave NW', N'Edmonton', N'AB', N'Canada', N'T5K 2N1', N'+1 (780) 428-9482', N'+1 (780) 428-3457', N'andrew@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (2, N'Edwards', N'Nancy', N'Sales Manager', 1, '1958/12/8', '2002/5/1', N'825 8 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 2T3', N'+1 (403) 262-3443', N'+1 (403) 262-3322', N'nancy@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (3, N'Peacock', N'Jane', N'Sales Support Agent', 2, '1973/8/29', '2002/4/1', N'1111 6 Ave SW', N'Calgary', N'AB', N'Canada', N'T2P 5M5', N'+1 (403) 262-3443', N'+1 (403) 262-6712', N'jane@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (4, N'Park', N'Margaret', N'Sales Support Agent', 2, '1947/9/19', '2003/5/3', N'683 10 Street SW', N'Calgary', N'AB', N'Canada', N'T2P 5G3', N'+1 (403) 263-4423', N'+1 (403) 263-4289', N'margaret@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (5, N'Johnson', N'Steve', N'Sales Support Agent', 2, '1965/3/3', '2003/10/17', N'7727B 41 Ave', N'Calgary', N'AB', N'Canada', N'T3B 1Y7', N'1 (780) 836-9987', N'1 (780) 836-9543', N'steve@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (6, N'Mitchell', N'Michael', N'IT Manager', 1, '1973/7/1', '2003/10/17', N'5827 Bowness Road NW', N'Calgary', N'AB', N'Canada', N'T3B 0C5', N'+1 (403) 246-9887', N'+1 (403) 246-9899', N'michael@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (7, N'King', N'Robert', N'IT Staff', 6, '1970/5/29', '2004/1/2', N'590 Columbia Boulevard West', N'Lethbridge', N'AB', N'Canada', N'T1K 5N8', N'+1 (403) 456-9986', N'+1 (403) 456-8485', N'robert@chinookcorp.com'); INSERT INTO [dbo].[Employee] ([EmployeeId], [LastName], [FirstName], [Title], [ReportsTo], [BirthDate], [HireDate], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email]) VALUES (8, N'Callahan', N'Laura', N'IT Staff', 6, '1968/1/9', '2004/3/4', N'923 7 ST NW', N'Lethbridge', N'AB', N'Canada', N'T1H 1Y8', N'+1 (403) 467-3351', N'+1 (403) 467-8772', N'laura@chinookcorp.com'); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (1, N'Luís', N'Gonçalves', N'Embraer - Empresa Brasileira de Aeronáutica S.A.', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', N'+55 (12) 3923-5555', N'+55 (12) 3923-5566', N'luisg@embraer.com.br', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (2, N'Leonie', N'Köhler', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', N'+49 0711 2842222', N'leonekohler@surfeu.de', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (3, N'François', N'Tremblay', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', N'+1 (514) 721-4711', N'ftremblay@gmail.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (4, N'Bjørn', N'Hansen', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', N'+47 22 44 22 22', N'bjorn.hansen@yahoo.no', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (5, N'František', N'Wichterlová', N'JetBrains s.r.o.', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', N'+420 2 4172 5555', N'+420 2 4172 5555', N'frantisekw@jetbrains.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (6, N'Helena', N'Holý', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', N'+420 2 4177 0449', N'hholy@gmail.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (7, N'Astrid', N'Gruber', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', N'+43 01 5134505', N'astrid.gruber@apple.at', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (8, N'Daan', N'Peeters', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', N'+32 02 219 03 03', N'daan_peeters@apple.be', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (9, N'Kara', N'Nielsen', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', N'+453 3331 9991', N'kara.nielsen@jubii.dk', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (10, N'Eduardo', N'Martins', N'Woodstock Discos', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', N'+55 (11) 3033-5446', N'+55 (11) 3033-4564', N'eduardo@woodstock.com.br', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (11, N'Alexandre', N'Rocha', N'Banco do Brasil S.A.', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', N'+55 (11) 3055-3278', N'+55 (11) 3055-8131', N'alero@uol.com.br', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (12, N'Roberto', N'Almeida', N'Riotur', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', N'+55 (21) 2271-7000', N'+55 (21) 2271-7070', N'roberto.almeida@riotur.gov.br', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (13, N'Fernanda', N'Ramos', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', N'+55 (61) 3363-5547', N'+55 (61) 3363-7855', N'fernadaramos4@uol.com.br', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (14, N'Mark', N'Philips', N'Telus', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', N'+1 (780) 434-4554', N'+1 (780) 434-5565', N'mphilips12@shaw.ca', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (15, N'Jennifer', N'Peterson', N'Rogers Canada', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', N'+1 (604) 688-2255', N'+1 (604) 688-8756', N'jenniferp@rogers.ca', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (16, N'Frank', N'Harris', N'Google Inc.', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', N'+1 (650) 253-0000', N'+1 (650) 253-0000', N'fharris@google.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (17, N'Jack', N'Smith', N'Microsoft Corporation', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', N'+1 (425) 882-8080', N'+1 (425) 882-8081', N'jacksmith@microsoft.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (18, N'Michelle', N'Brooks', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', N'+1 (212) 221-3546', N'+1 (212) 221-4679', N'michelleb@aol.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Company], [Address], [City], [State], [Country], [PostalCode], [Phone], [Fax], [Email], [SupportRepId]) VALUES (19, N'Tim', N'Goyer', N'Apple Inc.', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', N'+1 (408) 996-1010', N'+1 (408) 996-1011', N'tgoyer@apple.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (20, N'Dan', N'Miller', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', N'+1 (650) 644-3358', N'dmiller@comcast.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (21, N'Kathy', N'Chase', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', N'+1 (775) 223-7665', N'kachase@hotmail.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (22, N'Heather', N'Leacock', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', N'+1 (407) 999-7788', N'hleacock@gmail.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (23, N'John', N'Gordon', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', N'+1 (617) 522-1333', N'johngordon22@yahoo.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (24, N'Frank', N'Ralston', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', N'+1 (312) 332-3232', N'fralston@gmail.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (25, N'Victor', N'Stevens', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', N'+1 (608) 257-0597', N'vstevens@yahoo.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (26, N'Richard', N'Cunningham', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', N'+1 (817) 924-7272', N'ricunningham@hotmail.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (27, N'Patrick', N'Gray', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', N'+1 (520) 622-4200', N'patrick.gray@aol.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (28, N'Julia', N'Barnett', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', N'+1 (801) 531-7272', N'jubarnett@gmail.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (29, N'Robert', N'Brown', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', N'+1 (416) 363-8888', N'robbrown@shaw.ca', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (30, N'Edward', N'Francis', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', N'+1 (613) 234-3322', N'edfrancis@yachoo.ca', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (31, N'Martha', N'Silk', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', N'+1 (902) 450-0450', N'marthasilk@gmail.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (32, N'Aaron', N'Mitchell', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', N'+1 (204) 452-6452', N'aaronmitchell@yahoo.ca', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (33, N'Ellie', N'Sullivan', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', N'+1 (867) 920-2233', N'ellie.sullivan@shaw.ca', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [Phone], [Email], [SupportRepId]) VALUES (34, N'João', N'Fernandes', N'Rua da Assunção 53', N'Lisbon', N'Portugal', N'+351 (213) 466-111', N'jfernandes@yahoo.pt', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [Phone], [Email], [SupportRepId]) VALUES (35, N'Madalena', N'Sampaio', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', N'+351 (225) 022-448', N'masampaio@sapo.pt', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (36, N'Hannah', N'Schneider', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', N'+49 030 26550280', N'hannah.schneider@yahoo.de', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (37, N'Fynn', N'Zimmermann', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', N'+49 069 40598889', N'fzimmermann@yahoo.de', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (38, N'Niklas', N'Schröder', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', N'+49 030 2141444', N'nschroder@surfeu.de', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (39, N'Camille', N'Bernard', N'4, Rue Milton', N'Paris', N'France', N'75009', N'+33 01 49 70 65 65', N'camille.bernard@yahoo.fr', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (40, N'Dominique', N'Lefebvre', N'8, Rue Hanovre', N'Paris', N'France', N'75002', N'+33 01 47 42 71 71', N'dominiquelefebvre@gmail.com', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (41, N'Marc', N'Dubois', N'11, Place Bellecour', N'Lyon', N'France', N'69002', N'+33 04 78 30 30 30', N'marc.dubois@hotmail.com', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (42, N'Wyatt', N'Girard', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', N'+33 05 56 96 96 96', N'wyatt.girard@yahoo.fr', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (43, N'Isabelle', N'Mercier', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', N'+33 03 80 73 66 99', N'isabelle_mercier@apple.fr', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (44, N'Terhi', N'Hämäläinen', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', N'+358 09 870 2000', N'terhi.hamalainen@apple.fi', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Email], [SupportRepId]) VALUES (45, N'Ladislav', N'Kovács', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', N'ladislav_kovacs@apple.hu', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [Phone], [Email], [SupportRepId]) VALUES (46, N'Hugh', N'O''Reilly', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', N'+353 01 6792424', N'hughoreilly@apple.ie', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (47, N'Lucas', N'Mancini', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', N'+39 06 39733434', N'lucas.mancini@yahoo.it', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (48, N'Johannes', N'Van der Berg', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', N'+31 020 6223130', N'johavanderberg@yahoo.nl', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (49, N'Stanisław', N'Wójcik', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', N'+48 22 828 37 39', N'stanisław.wójcik@wp.pl', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (50, N'Enrique', N'Muñoz', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', N'+34 914 454 454', N'enrique_munoz@yahoo.es', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (51, N'Joakim', N'Johansson', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', N'+46 08-651 52 52', N'joakim.johansson@yahoo.se', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (52, N'Emma', N'Jones', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', N'+44 020 7707 0707', N'emma_jones@hotmail.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (53, N'Phil', N'Hughes', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', N'+44 020 7976 5722', N'phil.hughes@gmail.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (54, N'Steve', N'Murray', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', N'+44 0131 315 3300', N'steve.murray@yahoo.uk', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [State], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (55, N'Mark', N'Taylor', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', N'+61 (02) 9332 3633', N'mark.taylor@yahoo.au', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (56, N'Diego', N'Gutiérrez', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', N'+54 (0)11 4311 4333', N'diego.gutierrez@yahoo.ar', 4); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [Phone], [Email], [SupportRepId]) VALUES (57, N'Luis', N'Rojas', N'Calle Lira, 198', N'Santiago', N'Chile', N'+56 (0)2 635 4444', N'luisrojas@yahoo.cl', 5); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (58, N'Manoj', N'Pareek', N'12,Community Centre', N'Delhi', N'India', N'110017', N'+91 0124 39883988', N'manoj.pareek@rediff.com', 3); INSERT INTO [dbo].[Customer] ([CustomerId], [FirstName], [LastName], [Address], [City], [Country], [PostalCode], [Phone], [Email], [SupportRepId]) VALUES (59, N'Puja', N'Srivastava', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', N'+91 080 22289999', N'puja_srivastava@yahoo.in', 3); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (1, 2, '2009/1/1', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (2, 4, '2009/1/2', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (3, 8, '2009/1/3', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (4, 14, '2009/1/6', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (5, 23, '2009/1/11', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (6, 37, '2009/1/19', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (7, 38, '2009/2/1', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (8, 40, '2009/2/1', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (9, 42, '2009/2/2', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (10, 46, '2009/2/3', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (11, 52, '2009/2/6', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (12, 2, '2009/2/11', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (13, 16, '2009/2/19', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (14, 17, '2009/3/4', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (15, 19, '2009/3/4', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (16, 21, '2009/3/5', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (17, 25, '2009/3/6', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (18, 31, '2009/3/9', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (19, 40, '2009/3/14', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (20, 54, '2009/3/22', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (21, 55, '2009/4/4', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (22, 57, '2009/4/4', N'Calle Lira, 198', N'Santiago', N'Chile', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (23, 59, '2009/4/5', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (24, 4, '2009/4/6', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (25, 10, '2009/4/9', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (26, 19, '2009/4/14', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (27, 33, '2009/4/22', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (28, 34, '2009/5/5', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (29, 36, '2009/5/5', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (30, 38, '2009/5/6', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (31, 42, '2009/5/7', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (32, 48, '2009/5/10', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (33, 57, '2009/5/15', N'Calle Lira, 198', N'Santiago', N'Chile', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (34, 12, '2009/5/23', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (35, 13, '2009/6/5', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (36, 15, '2009/6/5', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (37, 17, '2009/6/6', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (38, 21, '2009/6/7', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (39, 27, '2009/6/10', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (40, 36, '2009/6/15', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (41, 50, '2009/6/23', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (42, 51, '2009/7/6', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (43, 53, '2009/7/6', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (44, 55, '2009/7/7', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (45, 59, '2009/7/8', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (46, 6, '2009/7/11', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (47, 15, '2009/7/16', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (48, 29, '2009/7/24', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (49, 30, '2009/8/6', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (50, 32, '2009/8/6', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (51, 34, '2009/8/7', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (52, 38, '2009/8/8', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (53, 44, '2009/8/11', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (54, 53, '2009/8/16', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (55, 8, '2009/8/24', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (56, 9, '2009/9/6', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (57, 11, '2009/9/6', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (58, 13, '2009/9/7', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (59, 17, '2009/9/8', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (60, 23, '2009/9/11', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (61, 32, '2009/9/16', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (62, 46, '2009/9/24', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (63, 47, '2009/10/7', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (64, 49, '2009/10/7', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (65, 51, '2009/10/8', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (66, 55, '2009/10/9', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (67, 2, '2009/10/12', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (68, 11, '2009/10/17', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (69, 25, '2009/10/25', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (70, 26, '2009/11/7', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (71, 28, '2009/11/7', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (72, 30, '2009/11/8', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (73, 34, '2009/11/9', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (74, 40, '2009/11/12', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (75, 49, '2009/11/17', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (76, 4, '2009/11/25', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (77, 5, '2009/12/8', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (78, 7, '2009/12/8', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (79, 9, '2009/12/9', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (80, 13, '2009/12/10', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (81, 19, '2009/12/13', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (82, 28, '2009/12/18', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (83, 42, '2009/12/26', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (84, 43, '2010/1/8', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (85, 45, '2010/1/8', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (86, 47, '2010/1/9', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (87, 51, '2010/1/10', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 6.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (88, 57, '2010/1/13', N'Calle Lira, 198', N'Santiago', N'Chile', 17.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (89, 7, '2010/1/18', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 18.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (90, 21, '2010/1/26', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (91, 22, '2010/2/8', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (92, 24, '2010/2/8', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (93, 26, '2010/2/9', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (94, 30, '2010/2/10', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (95, 36, '2010/2/13', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (96, 45, '2010/2/18', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 21.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (97, 59, '2010/2/26', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 1.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (98, 1, '2010/3/11', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 3.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (99, 3, '2010/3/11', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 3.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (100, 5, '2010/3/12', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (101, 9, '2010/3/13', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (102, 15, '2010/3/16', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 9.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (103, 24, '2010/3/21', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 15.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (104, 38, '2010/3/29', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (105, 39, '2010/4/11', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (106, 41, '2010/4/11', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (107, 43, '2010/4/12', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (108, 47, '2010/4/13', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (109, 53, '2010/4/16', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (110, 3, '2010/4/21', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (111, 17, '2010/4/29', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (112, 18, '2010/5/12', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (113, 20, '2010/5/12', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (114, 22, '2010/5/13', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (115, 26, '2010/5/14', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (116, 32, '2010/5/17', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (117, 41, '2010/5/22', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (118, 55, '2010/5/30', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (119, 56, '2010/6/12', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (120, 58, '2010/6/12', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (121, 1, '2010/6/13', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (122, 5, '2010/6/14', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (123, 11, '2010/6/17', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (124, 20, '2010/6/22', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (125, 34, '2010/6/30', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (126, 35, '2010/7/13', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (127, 37, '2010/7/13', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (128, 39, '2010/7/14', N'4, Rue Milton', N'Paris', N'France', N'75009', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (129, 43, '2010/7/15', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (130, 49, '2010/7/18', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (131, 58, '2010/7/23', N'12,Community Centre', N'Delhi', N'India', N'110017', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (132, 13, '2010/7/31', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (133, 14, '2010/8/13', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (134, 16, '2010/8/13', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (135, 18, '2010/8/14', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (136, 22, '2010/8/15', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (137, 28, '2010/8/18', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (138, 37, '2010/8/23', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (139, 51, '2010/8/31', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (140, 52, '2010/9/13', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (141, 54, '2010/9/13', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (142, 56, '2010/9/14', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (143, 1, '2010/9/15', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (144, 7, '2010/9/18', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (145, 16, '2010/9/23', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (146, 30, '2010/10/1', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (147, 31, '2010/10/14', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (148, 33, '2010/10/14', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (149, 35, '2010/10/15', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (150, 39, '2010/10/16', N'4, Rue Milton', N'Paris', N'France', N'75009', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (151, 45, '2010/10/19', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (152, 54, '2010/10/24', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (153, 9, '2010/11/1', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (154, 10, '2010/11/14', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (155, 12, '2010/11/14', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (156, 14, '2010/11/15', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (157, 18, '2010/11/16', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (158, 24, '2010/11/19', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (159, 33, '2010/11/24', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (160, 47, '2010/12/2', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (161, 48, '2010/12/15', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (162, 50, '2010/12/15', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (163, 52, '2010/12/16', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (164, 56, '2010/12/17', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (165, 3, '2010/12/20', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (166, 12, '2010/12/25', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (167, 26, '2011/1/2', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (168, 27, '2011/1/15', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (169, 29, '2011/1/15', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (170, 31, '2011/1/16', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (171, 35, '2011/1/17', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (172, 41, '2011/1/20', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (173, 50, '2011/1/25', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (174, 5, '2011/2/2', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (175, 6, '2011/2/15', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (176, 8, '2011/2/15', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (177, 10, '2011/2/16', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (178, 14, '2011/2/17', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (179, 20, '2011/2/20', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (180, 29, '2011/2/25', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (181, 43, '2011/3/5', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (182, 44, '2011/3/18', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (183, 46, '2011/3/18', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (184, 48, '2011/3/19', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (185, 52, '2011/3/20', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (186, 58, '2011/3/23', N'12,Community Centre', N'Delhi', N'India', N'110017', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (187, 8, '2011/3/28', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (188, 22, '2011/4/5', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (189, 23, '2011/4/18', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (190, 25, '2011/4/18', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (191, 27, '2011/4/19', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (192, 31, '2011/4/20', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (193, 37, '2011/4/23', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 14.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (194, 46, '2011/4/28', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 21.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (195, 1, '2011/5/6', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (196, 2, '2011/5/19', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (197, 4, '2011/5/19', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (198, 6, '2011/5/20', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (199, 10, '2011/5/21', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (200, 16, '2011/5/24', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (201, 25, '2011/5/29', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 18.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (202, 39, '2011/6/6', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (203, 40, '2011/6/19', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 2.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (204, 42, '2011/6/19', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 3.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (205, 44, '2011/6/20', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 7.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (206, 48, '2011/6/21', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 8.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (207, 54, '2011/6/24', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (208, 4, '2011/6/29', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 15.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (209, 18, '2011/7/7', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (210, 19, '2011/7/20', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (211, 21, '2011/7/20', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (212, 23, '2011/7/21', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (213, 27, '2011/7/22', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (214, 33, '2011/7/25', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (215, 42, '2011/7/30', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (216, 56, '2011/8/7', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (217, 57, '2011/8/20', N'Calle Lira, 198', N'Santiago', N'Chile', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (218, 59, '2011/8/20', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (219, 2, '2011/8/21', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (220, 6, '2011/8/22', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (221, 12, '2011/8/25', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (222, 21, '2011/8/30', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (223, 35, '2011/9/7', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (224, 36, '2011/9/20', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (225, 38, '2011/9/20', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (226, 40, '2011/9/21', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (227, 44, '2011/9/22', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (228, 50, '2011/9/25', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (229, 59, '2011/9/30', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (230, 14, '2011/10/8', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (231, 15, '2011/10/21', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (232, 17, '2011/10/21', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (233, 19, '2011/10/22', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (234, 23, '2011/10/23', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (235, 29, '2011/10/26', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (236, 38, '2011/10/31', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (237, 52, '2011/11/8', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (238, 53, '2011/11/21', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (239, 55, '2011/11/21', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (240, 57, '2011/11/22', N'Calle Lira, 198', N'Santiago', N'Chile', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (241, 2, '2011/11/23', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (242, 8, '2011/11/26', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (243, 17, '2011/12/1', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (244, 31, '2011/12/9', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (245, 32, '2011/12/22', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (246, 34, '2011/12/22', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (247, 36, '2011/12/23', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (248, 40, '2011/12/24', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (249, 46, '2011/12/27', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (250, 55, '2012/1/1', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (251, 10, '2012/1/9', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (252, 11, '2012/1/22', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (253, 13, '2012/1/22', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (254, 15, '2012/1/23', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (255, 19, '2012/1/24', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (256, 25, '2012/1/27', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (257, 34, '2012/2/1', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (258, 48, '2012/2/9', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (259, 49, '2012/2/22', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (260, 51, '2012/2/22', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (261, 53, '2012/2/23', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (262, 57, '2012/2/24', N'Calle Lira, 198', N'Santiago', N'Chile', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (263, 4, '2012/2/27', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (264, 13, '2012/3/3', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (265, 27, '2012/3/11', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (266, 28, '2012/3/24', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (267, 30, '2012/3/24', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (268, 32, '2012/3/25', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (269, 36, '2012/3/26', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (270, 42, '2012/3/29', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (271, 51, '2012/4/3', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (272, 6, '2012/4/11', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (273, 7, '2012/4/24', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (274, 9, '2012/4/24', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (275, 11, '2012/4/25', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (276, 15, '2012/4/26', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (277, 21, '2012/4/29', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (278, 30, '2012/5/4', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (279, 44, '2012/5/12', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (280, 45, '2012/5/25', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (281, 47, '2012/5/25', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (282, 49, '2012/5/26', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (283, 53, '2012/5/27', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (284, 59, '2012/5/30', N'3,Raj Bhavan Road', N'Bangalore', N'India', N'560001', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (285, 9, '2012/6/4', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (286, 23, '2012/6/12', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (287, 24, '2012/6/25', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (288, 26, '2012/6/25', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (289, 28, '2012/6/26', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (290, 32, '2012/6/27', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (291, 38, '2012/6/30', N'Barbarossastraße 19', N'Berlin', N'Germany', N'10779', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (292, 47, '2012/7/5', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (293, 2, '2012/7/13', N'Theodor-Heuss-Straße 34', N'Stuttgart', N'Germany', N'70174', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (294, 3, '2012/7/26', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (295, 5, '2012/7/26', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (296, 7, '2012/7/27', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (297, 11, '2012/7/28', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (298, 17, '2012/7/31', N'1 Microsoft Way', N'Redmond', N'WA', N'USA', N'98052-8300', 10.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (299, 26, '2012/8/5', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 23.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (300, 40, '2012/8/13', N'8, Rue Hanovre', N'Paris', N'France', N'75002', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (301, 41, '2012/8/26', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (302, 43, '2012/8/26', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (303, 45, '2012/8/27', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (304, 49, '2012/8/28', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (305, 55, '2012/8/31', N'421 Bourke Street', N'Sidney', N'NSW', N'Australia', N'2010', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (306, 5, '2012/9/5', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 16.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (307, 19, '2012/9/13', N'1 Infinite Loop', N'Cupertino', N'CA', N'USA', N'95014', 1.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (308, 20, '2012/9/26', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 3.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (309, 22, '2012/9/26', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 3.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (310, 24, '2012/9/27', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 7.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (311, 28, '2012/9/28', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 11.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (312, 34, '2012/10/1', N'Rua da Assunção 53', N'Lisbon', N'Portugal', 10.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (313, 43, '2012/10/6', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 16.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (314, 57, '2012/10/14', N'Calle Lira, 198', N'Santiago', N'Chile', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (315, 58, '2012/10/27', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (316, 1, '2012/10/27', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (317, 3, '2012/10/28', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (318, 7, '2012/10/29', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (319, 13, '2012/11/1', N'Qe 7 Bloco G', N'Brasília', N'DF', N'Brazil', N'71020-677', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (320, 22, '2012/11/6', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (321, 36, '2012/11/14', N'Tauentzienstraße 8', N'Berlin', N'Germany', N'10789', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (322, 37, '2012/11/27', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (323, 39, '2012/11/27', N'4, Rue Milton', N'Paris', N'France', N'75009', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (324, 41, '2012/11/28', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (325, 45, '2012/11/29', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (326, 51, '2012/12/2', N'Celsiusg. 9', N'Stockholm', N'Sweden', N'11230', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (327, 1, '2012/12/7', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (328, 15, '2012/12/15', N'700 W Pender Street', N'Vancouver', N'BC', N'Canada', N'V6C 1G8', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (329, 16, '2012/12/28', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (330, 18, '2012/12/28', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (331, 20, '2012/12/29', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (332, 24, '2012/12/30', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (333, 30, '2013/1/2', N'230 Elgin Street', N'Ottawa', N'ON', N'Canada', N'K2P 1L7', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (334, 39, '2013/1/7', N'4, Rue Milton', N'Paris', N'France', N'75009', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (335, 53, '2013/1/15', N'113 Lupus St', N'London', N'United Kingdom', N'SW1V 3EN', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (336, 54, '2013/1/28', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (337, 56, '2013/1/28', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (338, 58, '2013/1/29', N'12,Community Centre', N'Delhi', N'India', N'110017', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (339, 3, '2013/1/30', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (340, 9, '2013/2/2', N'Sønder Boulevard 51', N'Copenhagen', N'Denmark', N'1720', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (341, 18, '2013/2/7', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (342, 32, '2013/2/15', N'696 Osborne Street', N'Winnipeg', N'MB', N'Canada', N'R3L 2B9', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (343, 33, '2013/2/28', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (344, 35, '2013/2/28', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (345, 37, '2013/3/1', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (346, 41, '2013/3/2', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (347, 47, '2013/3/5', N'Via Degli Scipioni, 43', N'Rome', N'RM', N'Italy', N'00192', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (348, 56, '2013/3/10', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (349, 11, '2013/3/18', N'Av. Paulista, 2022', N'São Paulo', N'SP', N'Brazil', N'01310-200', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (350, 12, '2013/3/31', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (351, 14, '2013/3/31', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (352, 16, '2013/4/1', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (353, 20, '2013/4/2', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (354, 26, '2013/4/5', N'2211 W Berry Street', N'Fort Worth', N'TX', N'USA', N'76110', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (355, 35, '2013/4/10', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (356, 49, '2013/4/18', N'Ordynacka 10', N'Warsaw', N'Poland', N'00-358', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (357, 50, '2013/5/1', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (358, 52, '2013/5/1', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (359, 54, '2013/5/2', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (360, 58, '2013/5/3', N'12,Community Centre', N'Delhi', N'India', N'110017', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (361, 5, '2013/5/6', N'Klanova 9/506', N'Prague', N'Czech Republic', N'14700', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (362, 14, '2013/5/11', N'8210 111 ST NW', N'Edmonton', N'AB', N'Canada', N'T6G 2C7', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (363, 28, '2013/5/19', N'302 S 700 E', N'Salt Lake City', N'UT', N'USA', N'84102', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (364, 29, '2013/6/1', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (365, 31, '2013/6/1', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (366, 33, '2013/6/2', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (367, 37, '2013/6/3', N'Berger Straße 10', N'Frankfurt', N'Germany', N'60316', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (368, 43, '2013/6/6', N'68, Rue Jouvence', N'Dijon', N'France', N'21000', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (369, 52, '2013/6/11', N'202 Hoxton Street', N'London', N'United Kingdom', N'N1 5LH', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (370, 7, '2013/6/19', N'Rotenturmstraße 4, 1010 Innere Stadt', N'Vienne', N'Austria', N'1010', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (371, 8, '2013/7/2', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (372, 10, '2013/7/2', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (373, 12, '2013/7/3', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (374, 16, '2013/7/4', N'1600 Amphitheatre Parkway', N'Mountain View', N'CA', N'USA', N'94043-1351', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (375, 22, '2013/7/7', N'120 S Orange Ave', N'Orlando', N'FL', N'USA', N'32801', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (376, 31, '2013/7/12', N'194A Chain Lake Drive', N'Halifax', N'NS', N'Canada', N'B3S 1C5', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (377, 45, '2013/7/20', N'Erzsébet krt. 58.', N'Budapest', N'Hungary', N'H-1073', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (378, 46, '2013/8/2', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (379, 48, '2013/8/2', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (380, 50, '2013/8/3', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (381, 54, '2013/8/4', N'110 Raeburn Pl', N'Edinburgh ', N'United Kingdom', N'EH4 1HH', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (382, 1, '2013/8/7', N'Av. Brigadeiro Faria Lima, 2170', N'São José dos Campos', N'SP', N'Brazil', N'12227-000', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (383, 10, '2013/8/12', N'Rua Dr. Falcão Filho, 155', N'São Paulo', N'SP', N'Brazil', N'01007-010', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (384, 24, '2013/8/20', N'162 E Superior Street', N'Chicago', N'IL', N'USA', N'60611', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (385, 25, '2013/9/2', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (386, 27, '2013/9/2', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (387, 29, '2013/9/3', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (388, 33, '2013/9/4', N'5112 48 Street', N'Yellowknife', N'NT', N'Canada', N'X1A 1N6', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (389, 39, '2013/9/7', N'4, Rue Milton', N'Paris', N'France', N'75009', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (390, 48, '2013/9/12', N'Lijnbaansgracht 120bg', N'Amsterdam', N'VV', N'Netherlands', N'1016', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (391, 3, '2013/9/20', N'1498 rue Bélanger', N'Montréal', N'QC', N'Canada', N'H2G 1A7', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (392, 4, '2013/10/3', N'Ullevålsveien 14', N'Oslo', N'Norway', N'0171', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (393, 6, '2013/10/3', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (394, 8, '2013/10/4', N'Grétrystraat 63', N'Brussels', N'Belgium', N'1000', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (395, 12, '2013/10/5', N'Praça Pio X, 119', N'Rio de Janeiro', N'RJ', N'Brazil', N'20040-020', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (396, 18, '2013/10/8', N'627 Broadway', N'New York', N'NY', N'USA', N'10012-2612', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (397, 27, '2013/10/13', N'1033 N Park Ave', N'Tucson', N'AZ', N'USA', N'85719', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (398, 41, '2013/10/21', N'11, Place Bellecour', N'Lyon', N'France', N'69002', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (399, 42, '2013/11/3', N'9, Place Louis Barthou', N'Bordeaux', N'France', N'33000', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (400, 44, '2013/11/3', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [Total]) VALUES (401, 46, '2013/11/4', N'3 Chatham Street', N'Dublin', N'Dublin', N'Ireland', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (402, 50, '2013/11/5', N'C/ San Bernardo 85', N'Madrid', N'Spain', N'28015', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (403, 56, '2013/11/8', N'307 Macacha Güemes', N'Buenos Aires', N'Argentina', N'1106', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (404, 6, '2013/11/13', N'Rilská 3174/6', N'Prague', N'Czech Republic', N'14300', 25.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (405, 20, '2013/11/21', N'541 Del Medio Avenue', N'Mountain View', N'CA', N'USA', N'94040-111', 0.99); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (406, 21, '2013/12/4', N'801 W 4th Street', N'Reno', N'NV', N'USA', N'89503', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (407, 23, '2013/12/4', N'69 Salem Street', N'Boston', N'MA', N'USA', N'2113', 1.98); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (408, 25, '2013/12/5', N'319 N. Frances Street', N'Madison', N'WI', N'USA', N'53703', 3.96); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingState], [BillingCountry], [BillingPostalCode], [Total]) VALUES (409, 29, '2013/12/6', N'796 Dundas Street West', N'Toronto', N'ON', N'Canada', N'M6J 1V1', 5.94); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [Total]) VALUES (410, 35, '2013/12/9', N'Rua dos Campeões Europeus de Viena, 4350', N'Porto', N'Portugal', 8.91); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (411, 44, '2013/12/14', N'Porthaninkatu 9', N'Helsinki', N'Finland', N'00530', 13.86); INSERT INTO [dbo].[Invoice] ([InvoiceId], [CustomerId], [InvoiceDate], [BillingAddress], [BillingCity], [BillingCountry], [BillingPostalCode], [Total]) VALUES (412, 58, '2013/12/22', N'12,Community Centre', N'Delhi', N'India', N'110017', 1.99); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1, 1, 2, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2, 1, 4, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (3, 2, 6, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (4, 2, 8, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (5, 2, 10, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (6, 2, 12, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (7, 3, 16, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (8, 3, 20, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (9, 3, 24, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (10, 3, 28, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (11, 3, 32, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (12, 3, 36, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (13, 4, 42, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (14, 4, 48, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (15, 4, 54, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (16, 4, 60, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (17, 4, 66, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (18, 4, 72, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (19, 4, 78, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (20, 4, 84, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (21, 4, 90, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (22, 5, 99, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (23, 5, 108, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (24, 5, 117, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (25, 5, 126, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (26, 5, 135, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (27, 5, 144, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (28, 5, 153, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (29, 5, 162, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (30, 5, 171, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (31, 5, 180, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (32, 5, 189, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (33, 5, 198, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (34, 5, 207, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (35, 5, 216, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (36, 6, 230, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (37, 7, 231, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (38, 7, 232, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (39, 8, 234, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (40, 8, 236, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (41, 9, 238, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (42, 9, 240, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (43, 9, 242, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (44, 9, 244, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (45, 10, 248, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (46, 10, 252, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (47, 10, 256, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (48, 10, 260, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (49, 10, 264, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (50, 10, 268, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (51, 11, 274, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (52, 11, 280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (53, 11, 286, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (54, 11, 292, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (55, 11, 298, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (56, 11, 304, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (57, 11, 310, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (58, 11, 316, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (59, 11, 322, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (60, 12, 331, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (61, 12, 340, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (62, 12, 349, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (63, 12, 358, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (64, 12, 367, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (65, 12, 376, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (66, 12, 385, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (67, 12, 394, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (68, 12, 403, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (69, 12, 412, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (70, 12, 421, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (71, 12, 430, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (72, 12, 439, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (73, 12, 448, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (74, 13, 462, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (75, 14, 463, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (76, 14, 464, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (77, 15, 466, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (78, 15, 468, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (79, 16, 470, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (80, 16, 472, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (81, 16, 474, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (82, 16, 476, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (83, 17, 480, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (84, 17, 484, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (85, 17, 488, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (86, 17, 492, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (87, 17, 496, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (88, 17, 500, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (89, 18, 506, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (90, 18, 512, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (91, 18, 518, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (92, 18, 524, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (93, 18, 530, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (94, 18, 536, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (95, 18, 542, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (96, 18, 548, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (97, 18, 554, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (98, 19, 563, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (99, 19, 572, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (100, 19, 581, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (101, 19, 590, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (102, 19, 599, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (103, 19, 608, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (104, 19, 617, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (105, 19, 626, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (106, 19, 635, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (107, 19, 644, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (108, 19, 653, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (109, 19, 662, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (110, 19, 671, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (111, 19, 680, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (112, 20, 694, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (113, 21, 695, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (114, 21, 696, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (115, 22, 698, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (116, 22, 700, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (117, 23, 702, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (118, 23, 704, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (119, 23, 706, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (120, 23, 708, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (121, 24, 712, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (122, 24, 716, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (123, 24, 720, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (124, 24, 724, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (125, 24, 728, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (126, 24, 732, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (127, 25, 738, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (128, 25, 744, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (129, 25, 750, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (130, 25, 756, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (131, 25, 762, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (132, 25, 768, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (133, 25, 774, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (134, 25, 780, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (135, 25, 786, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (136, 26, 795, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (137, 26, 804, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (138, 26, 813, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (139, 26, 822, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (140, 26, 831, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (141, 26, 840, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (142, 26, 849, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (143, 26, 858, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (144, 26, 867, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (145, 26, 876, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (146, 26, 885, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (147, 26, 894, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (148, 26, 903, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (149, 26, 912, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (150, 27, 926, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (151, 28, 927, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (152, 28, 928, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (153, 29, 930, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (154, 29, 932, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (155, 30, 934, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (156, 30, 936, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (157, 30, 938, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (158, 30, 940, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (159, 31, 944, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (160, 31, 948, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (161, 31, 952, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (162, 31, 956, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (163, 31, 960, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (164, 31, 964, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (165, 32, 970, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (166, 32, 976, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (167, 32, 982, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (168, 32, 988, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (169, 32, 994, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (170, 32, 1000, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (171, 32, 1006, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (172, 32, 1012, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (173, 32, 1018, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (174, 33, 1027, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (175, 33, 1036, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (176, 33, 1045, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (177, 33, 1054, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (178, 33, 1063, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (179, 33, 1072, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (180, 33, 1081, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (181, 33, 1090, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (182, 33, 1099, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (183, 33, 1108, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (184, 33, 1117, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (185, 33, 1126, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (186, 33, 1135, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (187, 33, 1144, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (188, 34, 1158, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (189, 35, 1159, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (190, 35, 1160, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (191, 36, 1162, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (192, 36, 1164, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (193, 37, 1166, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (194, 37, 1168, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (195, 37, 1170, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (196, 37, 1172, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (197, 38, 1176, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (198, 38, 1180, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (199, 38, 1184, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (200, 38, 1188, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (201, 38, 1192, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (202, 38, 1196, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (203, 39, 1202, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (204, 39, 1208, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (205, 39, 1214, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (206, 39, 1220, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (207, 39, 1226, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (208, 39, 1232, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (209, 39, 1238, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (210, 39, 1244, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (211, 39, 1250, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (212, 40, 1259, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (213, 40, 1268, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (214, 40, 1277, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (215, 40, 1286, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (216, 40, 1295, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (217, 40, 1304, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (218, 40, 1313, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (219, 40, 1322, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (220, 40, 1331, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (221, 40, 1340, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (222, 40, 1349, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (223, 40, 1358, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (224, 40, 1367, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (225, 40, 1376, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (226, 41, 1390, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (227, 42, 1391, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (228, 42, 1392, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (229, 43, 1394, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (230, 43, 1396, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (231, 44, 1398, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (232, 44, 1400, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (233, 44, 1402, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (234, 44, 1404, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (235, 45, 1408, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (236, 45, 1412, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (237, 45, 1416, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (238, 45, 1420, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (239, 45, 1424, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (240, 45, 1428, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (241, 46, 1434, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (242, 46, 1440, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (243, 46, 1446, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (244, 46, 1452, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (245, 46, 1458, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (246, 46, 1464, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (247, 46, 1470, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (248, 46, 1476, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (249, 46, 1482, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (250, 47, 1491, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (251, 47, 1500, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (252, 47, 1509, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (253, 47, 1518, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (254, 47, 1527, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (255, 47, 1536, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (256, 47, 1545, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (257, 47, 1554, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (258, 47, 1563, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (259, 47, 1572, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (260, 47, 1581, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (261, 47, 1590, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (262, 47, 1599, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (263, 47, 1608, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (264, 48, 1622, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (265, 49, 1623, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (266, 49, 1624, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (267, 50, 1626, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (268, 50, 1628, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (269, 51, 1630, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (270, 51, 1632, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (271, 51, 1634, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (272, 51, 1636, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (273, 52, 1640, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (274, 52, 1644, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (275, 52, 1648, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (276, 52, 1652, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (277, 52, 1656, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (278, 52, 1660, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (279, 53, 1666, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (280, 53, 1672, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (281, 53, 1678, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (282, 53, 1684, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (283, 53, 1690, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (284, 53, 1696, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (285, 53, 1702, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (286, 53, 1708, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (287, 53, 1714, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (288, 54, 1723, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (289, 54, 1732, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (290, 54, 1741, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (291, 54, 1750, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (292, 54, 1759, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (293, 54, 1768, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (294, 54, 1777, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (295, 54, 1786, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (296, 54, 1795, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (297, 54, 1804, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (298, 54, 1813, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (299, 54, 1822, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (300, 54, 1831, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (301, 54, 1840, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (302, 55, 1854, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (303, 56, 1855, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (304, 56, 1856, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (305, 57, 1858, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (306, 57, 1860, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (307, 58, 1862, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (308, 58, 1864, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (309, 58, 1866, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (310, 58, 1868, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (311, 59, 1872, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (312, 59, 1876, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (313, 59, 1880, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (314, 59, 1884, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (315, 59, 1888, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (316, 59, 1892, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (317, 60, 1898, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (318, 60, 1904, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (319, 60, 1910, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (320, 60, 1916, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (321, 60, 1922, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (322, 60, 1928, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (323, 60, 1934, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (324, 60, 1940, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (325, 60, 1946, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (326, 61, 1955, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (327, 61, 1964, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (328, 61, 1973, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (329, 61, 1982, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (330, 61, 1991, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (331, 61, 2000, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (332, 61, 2009, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (333, 61, 2018, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (334, 61, 2027, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (335, 61, 2036, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (336, 61, 2045, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (337, 61, 2054, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (338, 61, 2063, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (339, 61, 2072, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (340, 62, 2086, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (341, 63, 2087, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (342, 63, 2088, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (343, 64, 2090, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (344, 64, 2092, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (345, 65, 2094, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (346, 65, 2096, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (347, 65, 2098, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (348, 65, 2100, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (349, 66, 2104, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (350, 66, 2108, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (351, 66, 2112, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (352, 66, 2116, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (353, 66, 2120, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (354, 66, 2124, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (355, 67, 2130, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (356, 67, 2136, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (357, 67, 2142, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (358, 67, 2148, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (359, 67, 2154, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (360, 67, 2160, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (361, 67, 2166, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (362, 67, 2172, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (363, 67, 2178, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (364, 68, 2187, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (365, 68, 2196, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (366, 68, 2205, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (367, 68, 2214, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (368, 68, 2223, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (369, 68, 2232, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (370, 68, 2241, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (371, 68, 2250, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (372, 68, 2259, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (373, 68, 2268, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (374, 68, 2277, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (375, 68, 2286, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (376, 68, 2295, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (377, 68, 2304, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (378, 69, 2318, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (379, 70, 2319, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (380, 70, 2320, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (381, 71, 2322, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (382, 71, 2324, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (383, 72, 2326, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (384, 72, 2328, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (385, 72, 2330, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (386, 72, 2332, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (387, 73, 2336, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (388, 73, 2340, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (389, 73, 2344, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (390, 73, 2348, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (391, 73, 2352, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (392, 73, 2356, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (393, 74, 2362, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (394, 74, 2368, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (395, 74, 2374, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (396, 74, 2380, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (397, 74, 2386, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (398, 74, 2392, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (399, 74, 2398, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (400, 74, 2404, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (401, 74, 2410, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (402, 75, 2419, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (403, 75, 2428, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (404, 75, 2437, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (405, 75, 2446, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (406, 75, 2455, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (407, 75, 2464, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (408, 75, 2473, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (409, 75, 2482, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (410, 75, 2491, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (411, 75, 2500, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (412, 75, 2509, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (413, 75, 2518, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (414, 75, 2527, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (415, 75, 2536, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (416, 76, 2550, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (417, 77, 2551, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (418, 77, 2552, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (419, 78, 2554, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (420, 78, 2556, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (421, 79, 2558, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (422, 79, 2560, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (423, 79, 2562, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (424, 79, 2564, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (425, 80, 2568, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (426, 80, 2572, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (427, 80, 2576, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (428, 80, 2580, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (429, 80, 2584, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (430, 80, 2588, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (431, 81, 2594, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (432, 81, 2600, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (433, 81, 2606, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (434, 81, 2612, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (435, 81, 2618, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (436, 81, 2624, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (437, 81, 2630, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (438, 81, 2636, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (439, 81, 2642, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (440, 82, 2651, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (441, 82, 2660, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (442, 82, 2669, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (443, 82, 2678, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (444, 82, 2687, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (445, 82, 2696, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (446, 82, 2705, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (447, 82, 2714, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (448, 82, 2723, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (449, 82, 2732, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (450, 82, 2741, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (451, 82, 2750, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (452, 82, 2759, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (453, 82, 2768, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (454, 83, 2782, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (455, 84, 2783, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (456, 84, 2784, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (457, 85, 2786, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (458, 85, 2788, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (459, 86, 2790, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (460, 86, 2792, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (461, 86, 2794, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (462, 86, 2796, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (463, 87, 2800, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (464, 87, 2804, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (465, 87, 2808, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (466, 87, 2812, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (467, 87, 2816, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (468, 87, 2820, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (469, 88, 2826, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (470, 88, 2832, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (471, 88, 2838, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (472, 88, 2844, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (473, 88, 2850, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (474, 88, 2856, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (475, 88, 2862, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (476, 88, 2868, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (477, 88, 2874, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (478, 89, 2883, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (479, 89, 2892, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (480, 89, 2901, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (481, 89, 2910, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (482, 89, 2919, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (483, 89, 2928, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (484, 89, 2937, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (485, 89, 2946, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (486, 89, 2955, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (487, 89, 2964, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (488, 89, 2973, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (489, 89, 2982, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (490, 89, 2991, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (491, 89, 3000, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (492, 90, 3014, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (493, 91, 3015, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (494, 91, 3016, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (495, 92, 3018, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (496, 92, 3020, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (497, 93, 3022, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (498, 93, 3024, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (499, 93, 3026, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (500, 93, 3028, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (501, 94, 3032, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (502, 94, 3036, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (503, 94, 3040, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (504, 94, 3044, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (505, 94, 3048, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (506, 94, 3052, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (507, 95, 3058, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (508, 95, 3064, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (509, 95, 3070, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (510, 95, 3076, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (511, 95, 3082, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (512, 95, 3088, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (513, 95, 3094, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (514, 95, 3100, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (515, 95, 3106, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (516, 96, 3115, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (517, 96, 3124, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (518, 96, 3133, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (519, 96, 3142, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (520, 96, 3151, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (521, 96, 3160, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (522, 96, 3169, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (523, 96, 3178, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (524, 96, 3187, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (525, 96, 3196, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (526, 96, 3205, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (527, 96, 3214, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (528, 96, 3223, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (529, 96, 3232, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (530, 97, 3246, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (531, 98, 3247, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (532, 98, 3248, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (533, 99, 3250, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (534, 99, 3252, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (535, 100, 3254, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (536, 100, 3256, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (537, 100, 3258, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (538, 100, 3260, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (539, 101, 3264, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (540, 101, 3268, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (541, 101, 3272, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (542, 101, 3276, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (543, 101, 3280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (544, 101, 3284, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (545, 102, 3290, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (546, 102, 3296, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (547, 102, 3302, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (548, 102, 3308, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (549, 102, 3314, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (550, 102, 3320, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (551, 102, 3326, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (552, 102, 3332, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (553, 102, 3338, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (554, 103, 3347, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (555, 103, 3356, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (556, 103, 3365, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (557, 103, 3374, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (558, 103, 3383, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (559, 103, 3392, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (560, 103, 3401, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (561, 103, 3410, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (562, 103, 3419, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (563, 103, 3428, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (564, 103, 3437, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (565, 103, 3446, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (566, 103, 3455, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (567, 103, 3464, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (568, 104, 3478, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (569, 105, 3479, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (570, 105, 3480, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (571, 106, 3482, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (572, 106, 3484, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (573, 107, 3486, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (574, 107, 3488, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (575, 107, 3490, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (576, 107, 3492, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (577, 108, 3496, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (578, 108, 3500, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (579, 108, 1, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (580, 108, 5, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (581, 108, 9, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (582, 108, 13, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (583, 109, 19, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (584, 109, 25, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (585, 109, 31, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (586, 109, 37, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (587, 109, 43, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (588, 109, 49, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (589, 109, 55, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (590, 109, 61, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (591, 109, 67, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (592, 110, 76, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (593, 110, 85, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (594, 110, 94, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (595, 110, 103, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (596, 110, 112, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (597, 110, 121, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (598, 110, 130, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (599, 110, 139, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (600, 110, 148, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (601, 110, 157, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (602, 110, 166, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (603, 110, 175, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (604, 110, 184, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (605, 110, 193, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (606, 111, 207, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (607, 112, 208, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (608, 112, 209, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (609, 113, 211, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (610, 113, 213, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (611, 114, 215, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (612, 114, 217, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (613, 114, 219, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (614, 114, 221, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (615, 115, 225, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (616, 115, 229, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (617, 115, 233, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (618, 115, 237, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (619, 115, 241, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (620, 115, 245, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (621, 116, 251, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (622, 116, 257, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (623, 116, 263, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (624, 116, 269, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (625, 116, 275, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (626, 116, 281, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (627, 116, 287, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (628, 116, 293, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (629, 116, 299, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (630, 117, 308, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (631, 117, 317, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (632, 117, 326, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (633, 117, 335, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (634, 117, 344, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (635, 117, 353, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (636, 117, 362, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (637, 117, 371, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (638, 117, 380, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (639, 117, 389, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (640, 117, 398, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (641, 117, 407, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (642, 117, 416, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (643, 117, 425, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (644, 118, 439, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (645, 119, 440, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (646, 119, 441, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (647, 120, 443, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (648, 120, 445, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (649, 121, 447, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (650, 121, 449, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (651, 121, 451, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (652, 121, 453, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (653, 122, 457, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (654, 122, 461, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (655, 122, 465, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (656, 122, 469, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (657, 122, 473, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (658, 122, 477, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (659, 123, 483, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (660, 123, 489, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (661, 123, 495, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (662, 123, 501, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (663, 123, 507, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (664, 123, 513, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (665, 123, 519, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (666, 123, 525, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (667, 123, 531, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (668, 124, 540, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (669, 124, 549, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (670, 124, 558, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (671, 124, 567, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (672, 124, 576, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (673, 124, 585, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (674, 124, 594, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (675, 124, 603, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (676, 124, 612, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (677, 124, 621, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (678, 124, 630, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (679, 124, 639, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (680, 124, 648, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (681, 124, 657, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (682, 125, 671, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (683, 126, 672, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (684, 126, 673, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (685, 127, 675, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (686, 127, 677, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (687, 128, 679, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (688, 128, 681, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (689, 128, 683, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (690, 128, 685, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (691, 129, 689, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (692, 129, 693, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (693, 129, 697, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (694, 129, 701, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (695, 129, 705, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (696, 129, 709, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (697, 130, 715, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (698, 130, 721, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (699, 130, 727, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (700, 130, 733, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (701, 130, 739, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (702, 130, 745, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (703, 130, 751, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (704, 130, 757, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (705, 130, 763, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (706, 131, 772, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (707, 131, 781, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (708, 131, 790, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (709, 131, 799, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (710, 131, 808, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (711, 131, 817, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (712, 131, 826, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (713, 131, 835, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (714, 131, 844, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (715, 131, 853, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (716, 131, 862, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (717, 131, 871, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (718, 131, 880, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (719, 131, 889, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (720, 132, 903, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (721, 133, 904, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (722, 133, 905, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (723, 134, 907, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (724, 134, 909, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (725, 135, 911, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (726, 135, 913, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (727, 135, 915, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (728, 135, 917, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (729, 136, 921, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (730, 136, 925, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (731, 136, 929, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (732, 136, 933, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (733, 136, 937, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (734, 136, 941, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (735, 137, 947, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (736, 137, 953, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (737, 137, 959, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (738, 137, 965, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (739, 137, 971, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (740, 137, 977, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (741, 137, 983, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (742, 137, 989, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (743, 137, 995, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (744, 138, 1004, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (745, 138, 1013, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (746, 138, 1022, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (747, 138, 1031, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (748, 138, 1040, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (749, 138, 1049, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (750, 138, 1058, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (751, 138, 1067, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (752, 138, 1076, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (753, 138, 1085, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (754, 138, 1094, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (755, 138, 1103, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (756, 138, 1112, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (757, 138, 1121, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (758, 139, 1135, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (759, 140, 1136, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (760, 140, 1137, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (761, 141, 1139, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (762, 141, 1141, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (763, 142, 1143, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (764, 142, 1145, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (765, 142, 1147, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (766, 142, 1149, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (767, 143, 1153, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (768, 143, 1157, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (769, 143, 1161, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (770, 143, 1165, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (771, 143, 1169, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (772, 143, 1173, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (773, 144, 1179, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (774, 144, 1185, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (775, 144, 1191, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (776, 144, 1197, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (777, 144, 1203, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (778, 144, 1209, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (779, 144, 1215, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (780, 144, 1221, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (781, 144, 1227, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (782, 145, 1236, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (783, 145, 1245, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (784, 145, 1254, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (785, 145, 1263, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (786, 145, 1272, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (787, 145, 1281, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (788, 145, 1290, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (789, 145, 1299, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (790, 145, 1308, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (791, 145, 1317, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (792, 145, 1326, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (793, 145, 1335, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (794, 145, 1344, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (795, 145, 1353, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (796, 146, 1367, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (797, 147, 1368, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (798, 147, 1369, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (799, 148, 1371, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (800, 148, 1373, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (801, 149, 1375, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (802, 149, 1377, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (803, 149, 1379, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (804, 149, 1381, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (805, 150, 1385, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (806, 150, 1389, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (807, 150, 1393, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (808, 150, 1397, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (809, 150, 1401, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (810, 150, 1405, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (811, 151, 1411, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (812, 151, 1417, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (813, 151, 1423, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (814, 151, 1429, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (815, 151, 1435, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (816, 151, 1441, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (817, 151, 1447, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (818, 151, 1453, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (819, 151, 1459, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (820, 152, 1468, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (821, 152, 1477, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (822, 152, 1486, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (823, 152, 1495, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (824, 152, 1504, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (825, 152, 1513, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (826, 152, 1522, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (827, 152, 1531, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (828, 152, 1540, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (829, 152, 1549, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (830, 152, 1558, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (831, 152, 1567, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (832, 152, 1576, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (833, 152, 1585, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (834, 153, 1599, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (835, 154, 1600, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (836, 154, 1601, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (837, 155, 1603, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (838, 155, 1605, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (839, 156, 1607, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (840, 156, 1609, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (841, 156, 1611, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (842, 156, 1613, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (843, 157, 1617, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (844, 157, 1621, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (845, 157, 1625, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (846, 157, 1629, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (847, 157, 1633, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (848, 157, 1637, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (849, 158, 1643, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (850, 158, 1649, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (851, 158, 1655, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (852, 158, 1661, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (853, 158, 1667, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (854, 158, 1673, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (855, 158, 1679, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (856, 158, 1685, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (857, 158, 1691, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (858, 159, 1700, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (859, 159, 1709, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (860, 159, 1718, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (861, 159, 1727, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (862, 159, 1736, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (863, 159, 1745, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (864, 159, 1754, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (865, 159, 1763, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (866, 159, 1772, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (867, 159, 1781, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (868, 159, 1790, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (869, 159, 1799, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (870, 159, 1808, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (871, 159, 1817, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (872, 160, 1831, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (873, 161, 1832, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (874, 161, 1833, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (875, 162, 1835, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (876, 162, 1837, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (877, 163, 1839, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (878, 163, 1841, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (879, 163, 1843, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (880, 163, 1845, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (881, 164, 1849, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (882, 164, 1853, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (883, 164, 1857, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (884, 164, 1861, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (885, 164, 1865, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (886, 164, 1869, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (887, 165, 1875, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (888, 165, 1881, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (889, 165, 1887, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (890, 165, 1893, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (891, 165, 1899, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (892, 165, 1905, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (893, 165, 1911, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (894, 165, 1917, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (895, 165, 1923, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (896, 166, 1932, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (897, 166, 1941, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (898, 166, 1950, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (899, 166, 1959, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (900, 166, 1968, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (901, 166, 1977, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (902, 166, 1986, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (903, 166, 1995, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (904, 166, 2004, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (905, 166, 2013, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (906, 166, 2022, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (907, 166, 2031, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (908, 166, 2040, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (909, 166, 2049, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (910, 167, 2063, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (911, 168, 2064, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (912, 168, 2065, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (913, 169, 2067, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (914, 169, 2069, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (915, 170, 2071, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (916, 170, 2073, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (917, 170, 2075, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (918, 170, 2077, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (919, 171, 2081, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (920, 171, 2085, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (921, 171, 2089, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (922, 171, 2093, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (923, 171, 2097, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (924, 171, 2101, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (925, 172, 2107, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (926, 172, 2113, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (927, 172, 2119, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (928, 172, 2125, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (929, 172, 2131, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (930, 172, 2137, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (931, 172, 2143, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (932, 172, 2149, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (933, 172, 2155, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (934, 173, 2164, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (935, 173, 2173, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (936, 173, 2182, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (937, 173, 2191, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (938, 173, 2200, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (939, 173, 2209, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (940, 173, 2218, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (941, 173, 2227, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (942, 173, 2236, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (943, 173, 2245, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (944, 173, 2254, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (945, 173, 2263, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (946, 173, 2272, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (947, 173, 2281, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (948, 174, 2295, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (949, 175, 2296, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (950, 175, 2297, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (951, 176, 2299, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (952, 176, 2301, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (953, 177, 2303, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (954, 177, 2305, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (955, 177, 2307, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (956, 177, 2309, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (957, 178, 2313, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (958, 178, 2317, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (959, 178, 2321, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (960, 178, 2325, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (961, 178, 2329, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (962, 178, 2333, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (963, 179, 2339, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (964, 179, 2345, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (965, 179, 2351, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (966, 179, 2357, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (967, 179, 2363, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (968, 179, 2369, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (969, 179, 2375, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (970, 179, 2381, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (971, 179, 2387, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (972, 180, 2396, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (973, 180, 2405, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (974, 180, 2414, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (975, 180, 2423, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (976, 180, 2432, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (977, 180, 2441, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (978, 180, 2450, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (979, 180, 2459, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (980, 180, 2468, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (981, 180, 2477, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (982, 180, 2486, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (983, 180, 2495, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (984, 180, 2504, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (985, 180, 2513, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (986, 181, 2527, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (987, 182, 2528, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (988, 182, 2529, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (989, 183, 2531, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (990, 183, 2533, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (991, 184, 2535, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (992, 184, 2537, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (993, 184, 2539, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (994, 184, 2541, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (995, 185, 2545, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (996, 185, 2549, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (997, 185, 2553, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (998, 185, 2557, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (999, 185, 2561, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1000, 185, 2565, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1001, 186, 2571, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1002, 186, 2577, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1003, 186, 2583, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1004, 186, 2589, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1005, 186, 2595, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1006, 186, 2601, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1007, 186, 2607, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1008, 186, 2613, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1009, 186, 2619, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1010, 187, 2628, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1011, 187, 2637, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1012, 187, 2646, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1013, 187, 2655, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1014, 187, 2664, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1015, 187, 2673, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1016, 187, 2682, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1017, 187, 2691, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1018, 187, 2700, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1019, 187, 2709, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1020, 187, 2718, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1021, 187, 2727, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1022, 187, 2736, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1023, 187, 2745, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1024, 188, 2759, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1025, 189, 2760, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1026, 189, 2761, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1027, 190, 2763, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1028, 190, 2765, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1029, 191, 2767, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1030, 191, 2769, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1031, 191, 2771, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1032, 191, 2773, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1033, 192, 2777, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1034, 192, 2781, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1035, 192, 2785, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1036, 192, 2789, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1037, 192, 2793, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1038, 192, 2797, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1039, 193, 2803, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1040, 193, 2809, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1041, 193, 2815, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1042, 193, 2821, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1043, 193, 2827, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1044, 193, 2833, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1045, 193, 2839, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1046, 193, 2845, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1047, 193, 2851, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1048, 194, 2860, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1049, 194, 2869, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1050, 194, 2878, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1051, 194, 2887, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1052, 194, 2896, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1053, 194, 2905, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1054, 194, 2914, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1055, 194, 2923, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1056, 194, 2932, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1057, 194, 2941, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1058, 194, 2950, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1059, 194, 2959, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1060, 194, 2968, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1061, 194, 2977, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1062, 195, 2991, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1063, 196, 2992, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1064, 196, 2993, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1065, 197, 2995, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1066, 197, 2997, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1067, 198, 2999, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1068, 198, 3001, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1069, 198, 3003, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1070, 198, 3005, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1071, 199, 3009, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1072, 199, 3013, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1073, 199, 3017, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1074, 199, 3021, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1075, 199, 3025, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1076, 199, 3029, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1077, 200, 3035, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1078, 200, 3041, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1079, 200, 3047, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1080, 200, 3053, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1081, 200, 3059, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1082, 200, 3065, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1083, 200, 3071, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1084, 200, 3077, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1085, 200, 3083, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1086, 201, 3092, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1087, 201, 3101, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1088, 201, 3110, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1089, 201, 3119, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1090, 201, 3128, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1091, 201, 3137, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1092, 201, 3146, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1093, 201, 3155, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1094, 201, 3164, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1095, 201, 3173, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1096, 201, 3182, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1097, 201, 3191, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1098, 201, 3200, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1099, 201, 3209, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1100, 202, 3223, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1101, 203, 3224, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1102, 203, 3225, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1103, 204, 3227, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1104, 204, 3229, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1105, 205, 3231, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1106, 205, 3233, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1107, 205, 3235, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1108, 205, 3237, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1109, 206, 3241, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1110, 206, 3245, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1111, 206, 3249, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1112, 206, 3253, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1113, 206, 3257, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1114, 206, 3261, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1115, 207, 3267, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1116, 207, 3273, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1117, 207, 3279, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1118, 207, 3285, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1119, 207, 3291, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1120, 207, 3297, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1121, 207, 3303, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1122, 207, 3309, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1123, 207, 3315, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1124, 208, 3324, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1125, 208, 3333, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1126, 208, 3342, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1127, 208, 3351, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1128, 208, 3360, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1129, 208, 3369, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1130, 208, 3378, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1131, 208, 3387, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1132, 208, 3396, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1133, 208, 3405, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1134, 208, 3414, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1135, 208, 3423, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1136, 208, 3432, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1137, 208, 3441, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1138, 209, 3455, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1139, 210, 3456, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1140, 210, 3457, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1141, 211, 3459, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1142, 211, 3461, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1143, 212, 3463, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1144, 212, 3465, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1145, 212, 3467, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1146, 212, 3469, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1147, 213, 3473, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1148, 213, 3477, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1149, 213, 3481, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1150, 213, 3485, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1151, 213, 3489, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1152, 213, 3493, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1153, 214, 3499, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1154, 214, 2, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1155, 214, 8, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1156, 214, 14, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1157, 214, 20, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1158, 214, 26, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1159, 214, 32, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1160, 214, 38, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1161, 214, 44, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1162, 215, 53, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1163, 215, 62, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1164, 215, 71, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1165, 215, 80, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1166, 215, 89, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1167, 215, 98, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1168, 215, 107, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1169, 215, 116, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1170, 215, 125, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1171, 215, 134, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1172, 215, 143, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1173, 215, 152, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1174, 215, 161, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1175, 215, 170, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1176, 216, 184, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1177, 217, 185, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1178, 217, 186, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1179, 218, 188, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1180, 218, 190, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1181, 219, 192, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1182, 219, 194, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1183, 219, 196, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1184, 219, 198, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1185, 220, 202, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1186, 220, 206, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1187, 220, 210, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1188, 220, 214, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1189, 220, 218, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1190, 220, 222, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1191, 221, 228, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1192, 221, 234, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1193, 221, 240, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1194, 221, 246, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1195, 221, 252, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1196, 221, 258, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1197, 221, 264, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1198, 221, 270, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1199, 221, 276, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1200, 222, 285, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1201, 222, 294, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1202, 222, 303, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1203, 222, 312, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1204, 222, 321, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1205, 222, 330, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1206, 222, 339, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1207, 222, 348, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1208, 222, 357, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1209, 222, 366, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1210, 222, 375, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1211, 222, 384, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1212, 222, 393, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1213, 222, 402, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1214, 223, 416, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1215, 224, 417, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1216, 224, 418, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1217, 225, 420, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1218, 225, 422, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1219, 226, 424, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1220, 226, 426, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1221, 226, 428, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1222, 226, 430, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1223, 227, 434, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1224, 227, 438, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1225, 227, 442, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1226, 227, 446, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1227, 227, 450, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1228, 227, 454, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1229, 228, 460, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1230, 228, 466, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1231, 228, 472, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1232, 228, 478, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1233, 228, 484, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1234, 228, 490, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1235, 228, 496, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1236, 228, 502, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1237, 228, 508, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1238, 229, 517, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1239, 229, 526, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1240, 229, 535, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1241, 229, 544, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1242, 229, 553, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1243, 229, 562, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1244, 229, 571, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1245, 229, 580, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1246, 229, 589, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1247, 229, 598, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1248, 229, 607, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1249, 229, 616, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1250, 229, 625, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1251, 229, 634, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1252, 230, 648, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1253, 231, 649, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1254, 231, 650, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1255, 232, 652, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1256, 232, 654, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1257, 233, 656, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1258, 233, 658, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1259, 233, 660, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1260, 233, 662, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1261, 234, 666, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1262, 234, 670, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1263, 234, 674, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1264, 234, 678, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1265, 234, 682, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1266, 234, 686, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1267, 235, 692, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1268, 235, 698, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1269, 235, 704, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1270, 235, 710, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1271, 235, 716, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1272, 235, 722, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1273, 235, 728, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1274, 235, 734, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1275, 235, 740, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1276, 236, 749, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1277, 236, 758, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1278, 236, 767, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1279, 236, 776, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1280, 236, 785, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1281, 236, 794, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1282, 236, 803, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1283, 236, 812, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1284, 236, 821, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1285, 236, 830, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1286, 236, 839, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1287, 236, 848, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1288, 236, 857, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1289, 236, 866, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1290, 237, 880, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1291, 238, 881, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1292, 238, 882, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1293, 239, 884, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1294, 239, 886, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1295, 240, 888, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1296, 240, 890, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1297, 240, 892, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1298, 240, 894, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1299, 241, 898, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1300, 241, 902, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1301, 241, 906, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1302, 241, 910, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1303, 241, 914, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1304, 241, 918, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1305, 242, 924, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1306, 242, 930, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1307, 242, 936, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1308, 242, 942, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1309, 242, 948, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1310, 242, 954, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1311, 242, 960, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1312, 242, 966, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1313, 242, 972, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1314, 243, 981, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1315, 243, 990, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1316, 243, 999, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1317, 243, 1008, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1318, 243, 1017, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1319, 243, 1026, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1320, 243, 1035, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1321, 243, 1044, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1322, 243, 1053, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1323, 243, 1062, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1324, 243, 1071, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1325, 243, 1080, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1326, 243, 1089, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1327, 243, 1098, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1328, 244, 1112, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1329, 245, 1113, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1330, 245, 1114, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1331, 246, 1116, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1332, 246, 1118, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1333, 247, 1120, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1334, 247, 1122, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1335, 247, 1124, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1336, 247, 1126, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1337, 248, 1130, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1338, 248, 1134, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1339, 248, 1138, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1340, 248, 1142, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1341, 248, 1146, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1342, 248, 1150, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1343, 249, 1156, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1344, 249, 1162, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1345, 249, 1168, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1346, 249, 1174, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1347, 249, 1180, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1348, 249, 1186, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1349, 249, 1192, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1350, 249, 1198, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1351, 249, 1204, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1352, 250, 1213, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1353, 250, 1222, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1354, 250, 1231, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1355, 250, 1240, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1356, 250, 1249, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1357, 250, 1258, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1358, 250, 1267, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1359, 250, 1276, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1360, 250, 1285, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1361, 250, 1294, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1362, 250, 1303, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1363, 250, 1312, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1364, 250, 1321, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1365, 250, 1330, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1366, 251, 1344, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1367, 252, 1345, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1368, 252, 1346, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1369, 253, 1348, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1370, 253, 1350, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1371, 254, 1352, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1372, 254, 1354, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1373, 254, 1356, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1374, 254, 1358, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1375, 255, 1362, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1376, 255, 1366, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1377, 255, 1370, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1378, 255, 1374, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1379, 255, 1378, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1380, 255, 1382, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1381, 256, 1388, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1382, 256, 1394, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1383, 256, 1400, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1384, 256, 1406, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1385, 256, 1412, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1386, 256, 1418, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1387, 256, 1424, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1388, 256, 1430, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1389, 256, 1436, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1390, 257, 1445, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1391, 257, 1454, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1392, 257, 1463, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1393, 257, 1472, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1394, 257, 1481, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1395, 257, 1490, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1396, 257, 1499, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1397, 257, 1508, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1398, 257, 1517, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1399, 257, 1526, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1400, 257, 1535, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1401, 257, 1544, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1402, 257, 1553, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1403, 257, 1562, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1404, 258, 1576, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1405, 259, 1577, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1406, 259, 1578, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1407, 260, 1580, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1408, 260, 1582, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1409, 261, 1584, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1410, 261, 1586, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1411, 261, 1588, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1412, 261, 1590, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1413, 262, 1594, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1414, 262, 1598, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1415, 262, 1602, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1416, 262, 1606, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1417, 262, 1610, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1418, 262, 1614, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1419, 263, 1620, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1420, 263, 1626, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1421, 263, 1632, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1422, 263, 1638, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1423, 263, 1644, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1424, 263, 1650, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1425, 263, 1656, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1426, 263, 1662, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1427, 263, 1668, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1428, 264, 1677, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1429, 264, 1686, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1430, 264, 1695, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1431, 264, 1704, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1432, 264, 1713, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1433, 264, 1722, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1434, 264, 1731, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1435, 264, 1740, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1436, 264, 1749, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1437, 264, 1758, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1438, 264, 1767, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1439, 264, 1776, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1440, 264, 1785, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1441, 264, 1794, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1442, 265, 1808, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1443, 266, 1809, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1444, 266, 1810, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1445, 267, 1812, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1446, 267, 1814, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1447, 268, 1816, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1448, 268, 1818, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1449, 268, 1820, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1450, 268, 1822, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1451, 269, 1826, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1452, 269, 1830, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1453, 269, 1834, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1454, 269, 1838, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1455, 269, 1842, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1456, 269, 1846, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1457, 270, 1852, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1458, 270, 1858, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1459, 270, 1864, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1460, 270, 1870, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1461, 270, 1876, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1462, 270, 1882, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1463, 270, 1888, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1464, 270, 1894, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1465, 270, 1900, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1466, 271, 1909, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1467, 271, 1918, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1468, 271, 1927, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1469, 271, 1936, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1470, 271, 1945, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1471, 271, 1954, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1472, 271, 1963, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1473, 271, 1972, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1474, 271, 1981, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1475, 271, 1990, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1476, 271, 1999, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1477, 271, 2008, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1478, 271, 2017, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1479, 271, 2026, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1480, 272, 2040, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1481, 273, 2041, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1482, 273, 2042, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1483, 274, 2044, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1484, 274, 2046, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1485, 275, 2048, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1486, 275, 2050, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1487, 275, 2052, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1488, 275, 2054, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1489, 276, 2058, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1490, 276, 2062, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1491, 276, 2066, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1492, 276, 2070, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1493, 276, 2074, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1494, 276, 2078, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1495, 277, 2084, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1496, 277, 2090, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1497, 277, 2096, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1498, 277, 2102, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1499, 277, 2108, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1500, 277, 2114, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1501, 277, 2120, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1502, 277, 2126, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1503, 277, 2132, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1504, 278, 2141, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1505, 278, 2150, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1506, 278, 2159, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1507, 278, 2168, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1508, 278, 2177, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1509, 278, 2186, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1510, 278, 2195, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1511, 278, 2204, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1512, 278, 2213, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1513, 278, 2222, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1514, 278, 2231, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1515, 278, 2240, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1516, 278, 2249, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1517, 278, 2258, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1518, 279, 2272, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1519, 280, 2273, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1520, 280, 2274, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1521, 281, 2276, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1522, 281, 2278, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1523, 282, 2280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1524, 282, 2282, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1525, 282, 2284, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1526, 282, 2286, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1527, 283, 2290, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1528, 283, 2294, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1529, 283, 2298, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1530, 283, 2302, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1531, 283, 2306, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1532, 283, 2310, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1533, 284, 2316, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1534, 284, 2322, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1535, 284, 2328, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1536, 284, 2334, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1537, 284, 2340, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1538, 284, 2346, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1539, 284, 2352, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1540, 284, 2358, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1541, 284, 2364, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1542, 285, 2373, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1543, 285, 2382, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1544, 285, 2391, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1545, 285, 2400, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1546, 285, 2409, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1547, 285, 2418, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1548, 285, 2427, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1549, 285, 2436, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1550, 285, 2445, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1551, 285, 2454, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1552, 285, 2463, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1553, 285, 2472, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1554, 285, 2481, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1555, 285, 2490, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1556, 286, 2504, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1557, 287, 2505, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1558, 287, 2506, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1559, 288, 2508, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1560, 288, 2510, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1561, 289, 2512, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1562, 289, 2514, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1563, 289, 2516, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1564, 289, 2518, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1565, 290, 2522, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1566, 290, 2526, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1567, 290, 2530, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1568, 290, 2534, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1569, 290, 2538, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1570, 290, 2542, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1571, 291, 2548, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1572, 291, 2554, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1573, 291, 2560, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1574, 291, 2566, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1575, 291, 2572, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1576, 291, 2578, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1577, 291, 2584, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1578, 291, 2590, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1579, 291, 2596, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1580, 292, 2605, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1581, 292, 2614, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1582, 292, 2623, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1583, 292, 2632, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1584, 292, 2641, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1585, 292, 2650, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1586, 292, 2659, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1587, 292, 2668, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1588, 292, 2677, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1589, 292, 2686, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1590, 292, 2695, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1591, 292, 2704, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1592, 292, 2713, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1593, 292, 2722, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1594, 293, 2736, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1595, 294, 2737, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1596, 294, 2738, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1597, 295, 2740, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1598, 295, 2742, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1599, 296, 2744, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1600, 296, 2746, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1601, 296, 2748, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1602, 296, 2750, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1603, 297, 2754, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1604, 297, 2758, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1605, 297, 2762, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1606, 297, 2766, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1607, 297, 2770, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1608, 297, 2774, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1609, 298, 2780, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1610, 298, 2786, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1611, 298, 2792, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1612, 298, 2798, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1613, 298, 2804, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1614, 298, 2810, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1615, 298, 2816, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1616, 298, 2822, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1617, 298, 2828, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1618, 299, 2837, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1619, 299, 2846, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1620, 299, 2855, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1621, 299, 2864, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1622, 299, 2873, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1623, 299, 2882, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1624, 299, 2891, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1625, 299, 2900, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1626, 299, 2909, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1627, 299, 2918, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1628, 299, 2927, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1629, 299, 2936, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1630, 299, 2945, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1631, 299, 2954, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1632, 300, 2968, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1633, 301, 2969, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1634, 301, 2970, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1635, 302, 2972, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1636, 302, 2974, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1637, 303, 2976, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1638, 303, 2978, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1639, 303, 2980, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1640, 303, 2982, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1641, 304, 2986, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1642, 304, 2990, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1643, 304, 2994, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1644, 304, 2998, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1645, 304, 3002, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1646, 304, 3006, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1647, 305, 3012, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1648, 305, 3018, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1649, 305, 3024, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1650, 305, 3030, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1651, 305, 3036, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1652, 305, 3042, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1653, 305, 3048, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1654, 305, 3054, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1655, 305, 3060, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1656, 306, 3069, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1657, 306, 3078, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1658, 306, 3087, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1659, 306, 3096, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1660, 306, 3105, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1661, 306, 3114, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1662, 306, 3123, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1663, 306, 3132, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1664, 306, 3141, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1665, 306, 3150, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1666, 306, 3159, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1667, 306, 3168, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1668, 306, 3177, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1669, 306, 3186, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1670, 307, 3200, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1671, 308, 3201, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1672, 308, 3202, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1673, 309, 3204, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1674, 309, 3206, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1675, 310, 3208, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1676, 310, 3210, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1677, 310, 3212, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1678, 310, 3214, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1679, 311, 3218, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1680, 311, 3222, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1681, 311, 3226, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1682, 311, 3230, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1683, 311, 3234, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1684, 311, 3238, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1685, 312, 3244, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1686, 312, 3250, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1687, 312, 3256, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1688, 312, 3262, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1689, 312, 3268, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1690, 312, 3274, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1691, 312, 3280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1692, 312, 3286, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1693, 312, 3292, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1694, 313, 3301, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1695, 313, 3310, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1696, 313, 3319, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1697, 313, 3328, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1698, 313, 3337, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1699, 313, 3346, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1700, 313, 3355, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1701, 313, 3364, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1702, 313, 3373, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1703, 313, 3382, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1704, 313, 3391, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1705, 313, 3400, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1706, 313, 3409, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1707, 313, 3418, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1708, 314, 3432, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1709, 315, 3433, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1710, 315, 3434, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1711, 316, 3436, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1712, 316, 3438, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1713, 317, 3440, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1714, 317, 3442, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1715, 317, 3444, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1716, 317, 3446, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1717, 318, 3450, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1718, 318, 3454, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1719, 318, 3458, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1720, 318, 3462, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1721, 318, 3466, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1722, 318, 3470, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1723, 319, 3476, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1724, 319, 3482, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1725, 319, 3488, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1726, 319, 3494, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1727, 319, 3500, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1728, 319, 3, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1729, 319, 9, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1730, 319, 15, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1731, 319, 21, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1732, 320, 30, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1733, 320, 39, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1734, 320, 48, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1735, 320, 57, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1736, 320, 66, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1737, 320, 75, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1738, 320, 84, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1739, 320, 93, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1740, 320, 102, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1741, 320, 111, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1742, 320, 120, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1743, 320, 129, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1744, 320, 138, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1745, 320, 147, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1746, 321, 161, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1747, 322, 162, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1748, 322, 163, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1749, 323, 165, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1750, 323, 167, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1751, 324, 169, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1752, 324, 171, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1753, 324, 173, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1754, 324, 175, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1755, 325, 179, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1756, 325, 183, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1757, 325, 187, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1758, 325, 191, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1759, 325, 195, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1760, 325, 199, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1761, 326, 205, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1762, 326, 211, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1763, 326, 217, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1764, 326, 223, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1765, 326, 229, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1766, 326, 235, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1767, 326, 241, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1768, 326, 247, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1769, 326, 253, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1770, 327, 262, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1771, 327, 271, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1772, 327, 280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1773, 327, 289, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1774, 327, 298, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1775, 327, 307, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1776, 327, 316, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1777, 327, 325, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1778, 327, 334, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1779, 327, 343, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1780, 327, 352, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1781, 327, 361, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1782, 327, 370, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1783, 327, 379, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1784, 328, 393, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1785, 329, 394, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1786, 329, 395, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1787, 330, 397, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1788, 330, 399, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1789, 331, 401, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1790, 331, 403, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1791, 331, 405, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1792, 331, 407, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1793, 332, 411, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1794, 332, 415, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1795, 332, 419, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1796, 332, 423, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1797, 332, 427, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1798, 332, 431, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1799, 333, 437, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1800, 333, 443, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1801, 333, 449, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1802, 333, 455, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1803, 333, 461, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1804, 333, 467, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1805, 333, 473, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1806, 333, 479, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1807, 333, 485, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1808, 334, 494, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1809, 334, 503, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1810, 334, 512, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1811, 334, 521, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1812, 334, 530, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1813, 334, 539, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1814, 334, 548, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1815, 334, 557, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1816, 334, 566, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1817, 334, 575, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1818, 334, 584, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1819, 334, 593, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1820, 334, 602, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1821, 334, 611, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1822, 335, 625, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1823, 336, 626, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1824, 336, 627, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1825, 337, 629, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1826, 337, 631, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1827, 338, 633, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1828, 338, 635, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1829, 338, 637, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1830, 338, 639, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1831, 339, 643, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1832, 339, 647, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1833, 339, 651, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1834, 339, 655, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1835, 339, 659, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1836, 339, 663, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1837, 340, 669, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1838, 340, 675, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1839, 340, 681, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1840, 340, 687, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1841, 340, 693, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1842, 340, 699, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1843, 340, 705, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1844, 340, 711, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1845, 340, 717, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1846, 341, 726, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1847, 341, 735, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1848, 341, 744, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1849, 341, 753, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1850, 341, 762, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1851, 341, 771, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1852, 341, 780, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1853, 341, 789, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1854, 341, 798, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1855, 341, 807, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1856, 341, 816, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1857, 341, 825, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1858, 341, 834, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1859, 341, 843, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1860, 342, 857, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1861, 343, 858, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1862, 343, 859, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1863, 344, 861, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1864, 344, 863, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1865, 345, 865, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1866, 345, 867, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1867, 345, 869, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1868, 345, 871, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1869, 346, 875, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1870, 346, 879, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1871, 346, 883, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1872, 346, 887, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1873, 346, 891, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1874, 346, 895, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1875, 347, 901, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1876, 347, 907, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1877, 347, 913, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1878, 347, 919, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1879, 347, 925, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1880, 347, 931, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1881, 347, 937, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1882, 347, 943, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1883, 347, 949, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1884, 348, 958, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1885, 348, 967, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1886, 348, 976, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1887, 348, 985, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1888, 348, 994, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1889, 348, 1003, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1890, 348, 1012, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1891, 348, 1021, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1892, 348, 1030, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1893, 348, 1039, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1894, 348, 1048, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1895, 348, 1057, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1896, 348, 1066, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1897, 348, 1075, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1898, 349, 1089, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1899, 350, 1090, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1900, 350, 1091, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1901, 351, 1093, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1902, 351, 1095, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1903, 352, 1097, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1904, 352, 1099, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1905, 352, 1101, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1906, 352, 1103, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1907, 353, 1107, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1908, 353, 1111, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1909, 353, 1115, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1910, 353, 1119, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1911, 353, 1123, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1912, 353, 1127, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1913, 354, 1133, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1914, 354, 1139, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1915, 354, 1145, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1916, 354, 1151, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1917, 354, 1157, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1918, 354, 1163, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1919, 354, 1169, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1920, 354, 1175, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1921, 354, 1181, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1922, 355, 1190, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1923, 355, 1199, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1924, 355, 1208, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1925, 355, 1217, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1926, 355, 1226, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1927, 355, 1235, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1928, 355, 1244, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1929, 355, 1253, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1930, 355, 1262, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1931, 355, 1271, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1932, 355, 1280, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1933, 355, 1289, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1934, 355, 1298, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1935, 355, 1307, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1936, 356, 1321, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1937, 357, 1322, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1938, 357, 1323, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1939, 358, 1325, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1940, 358, 1327, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1941, 359, 1329, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1942, 359, 1331, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1943, 359, 1333, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1944, 359, 1335, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1945, 360, 1339, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1946, 360, 1343, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1947, 360, 1347, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1948, 360, 1351, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1949, 360, 1355, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1950, 360, 1359, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1951, 361, 1365, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1952, 361, 1371, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1953, 361, 1377, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1954, 361, 1383, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1955, 361, 1389, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1956, 361, 1395, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1957, 361, 1401, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1958, 361, 1407, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1959, 361, 1413, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1960, 362, 1422, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1961, 362, 1431, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1962, 362, 1440, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1963, 362, 1449, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1964, 362, 1458, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1965, 362, 1467, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1966, 362, 1476, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1967, 362, 1485, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1968, 362, 1494, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1969, 362, 1503, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1970, 362, 1512, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1971, 362, 1521, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1972, 362, 1530, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1973, 362, 1539, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1974, 363, 1553, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1975, 364, 1554, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1976, 364, 1555, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1977, 365, 1557, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1978, 365, 1559, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1979, 366, 1561, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1980, 366, 1563, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1981, 366, 1565, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1982, 366, 1567, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1983, 367, 1571, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1984, 367, 1575, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1985, 367, 1579, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1986, 367, 1583, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1987, 367, 1587, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1988, 367, 1591, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1989, 368, 1597, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1990, 368, 1603, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1991, 368, 1609, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1992, 368, 1615, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1993, 368, 1621, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1994, 368, 1627, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1995, 368, 1633, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1996, 368, 1639, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1997, 368, 1645, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1998, 369, 1654, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (1999, 369, 1663, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2000, 369, 1672, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2001, 369, 1681, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2002, 369, 1690, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2003, 369, 1699, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2004, 369, 1708, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2005, 369, 1717, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2006, 369, 1726, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2007, 369, 1735, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2008, 369, 1744, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2009, 369, 1753, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2010, 369, 1762, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2011, 369, 1771, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2012, 370, 1785, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2013, 371, 1786, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2014, 371, 1787, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2015, 372, 1789, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2016, 372, 1791, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2017, 373, 1793, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2018, 373, 1795, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2019, 373, 1797, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2020, 373, 1799, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2021, 374, 1803, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2022, 374, 1807, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2023, 374, 1811, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2024, 374, 1815, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2025, 374, 1819, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2026, 374, 1823, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2027, 375, 1829, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2028, 375, 1835, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2029, 375, 1841, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2030, 375, 1847, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2031, 375, 1853, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2032, 375, 1859, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2033, 375, 1865, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2034, 375, 1871, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2035, 375, 1877, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2036, 376, 1886, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2037, 376, 1895, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2038, 376, 1904, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2039, 376, 1913, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2040, 376, 1922, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2041, 376, 1931, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2042, 376, 1940, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2043, 376, 1949, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2044, 376, 1958, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2045, 376, 1967, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2046, 376, 1976, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2047, 376, 1985, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2048, 376, 1994, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2049, 376, 2003, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2050, 377, 2017, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2051, 378, 2018, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2052, 378, 2019, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2053, 379, 2021, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2054, 379, 2023, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2055, 380, 2025, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2056, 380, 2027, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2057, 380, 2029, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2058, 380, 2031, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2059, 381, 2035, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2060, 381, 2039, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2061, 381, 2043, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2062, 381, 2047, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2063, 381, 2051, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2064, 381, 2055, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2065, 382, 2061, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2066, 382, 2067, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2067, 382, 2073, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2068, 382, 2079, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2069, 382, 2085, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2070, 382, 2091, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2071, 382, 2097, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2072, 382, 2103, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2073, 382, 2109, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2074, 383, 2118, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2075, 383, 2127, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2076, 383, 2136, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2077, 383, 2145, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2078, 383, 2154, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2079, 383, 2163, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2080, 383, 2172, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2081, 383, 2181, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2082, 383, 2190, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2083, 383, 2199, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2084, 383, 2208, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2085, 383, 2217, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2086, 383, 2226, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2087, 383, 2235, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2088, 384, 2249, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2089, 385, 2250, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2090, 385, 2251, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2091, 386, 2253, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2092, 386, 2255, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2093, 387, 2257, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2094, 387, 2259, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2095, 387, 2261, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2096, 387, 2263, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2097, 388, 2267, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2098, 388, 2271, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2099, 388, 2275, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2100, 388, 2279, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2101, 388, 2283, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2102, 388, 2287, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2103, 389, 2293, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2104, 389, 2299, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2105, 389, 2305, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2106, 389, 2311, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2107, 389, 2317, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2108, 389, 2323, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2109, 389, 2329, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2110, 389, 2335, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2111, 389, 2341, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2112, 390, 2350, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2113, 390, 2359, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2114, 390, 2368, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2115, 390, 2377, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2116, 390, 2386, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2117, 390, 2395, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2118, 390, 2404, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2119, 390, 2413, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2120, 390, 2422, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2121, 390, 2431, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2122, 390, 2440, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2123, 390, 2449, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2124, 390, 2458, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2125, 390, 2467, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2126, 391, 2481, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2127, 392, 2482, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2128, 392, 2483, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2129, 393, 2485, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2130, 393, 2487, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2131, 394, 2489, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2132, 394, 2491, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2133, 394, 2493, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2134, 394, 2495, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2135, 395, 2499, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2136, 395, 2503, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2137, 395, 2507, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2138, 395, 2511, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2139, 395, 2515, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2140, 395, 2519, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2141, 396, 2525, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2142, 396, 2531, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2143, 396, 2537, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2144, 396, 2543, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2145, 396, 2549, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2146, 396, 2555, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2147, 396, 2561, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2148, 396, 2567, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2149, 396, 2573, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2150, 397, 2582, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2151, 397, 2591, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2152, 397, 2600, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2153, 397, 2609, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2154, 397, 2618, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2155, 397, 2627, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2156, 397, 2636, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2157, 397, 2645, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2158, 397, 2654, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2159, 397, 2663, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2160, 397, 2672, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2161, 397, 2681, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2162, 397, 2690, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2163, 397, 2699, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2164, 398, 2713, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2165, 399, 2714, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2166, 399, 2715, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2167, 400, 2717, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2168, 400, 2719, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2169, 401, 2721, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2170, 401, 2723, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2171, 401, 2725, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2172, 401, 2727, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2173, 402, 2731, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2174, 402, 2735, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2175, 402, 2739, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2176, 402, 2743, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2177, 402, 2747, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2178, 402, 2751, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2179, 403, 2757, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2180, 403, 2763, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2181, 403, 2769, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2182, 403, 2775, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2183, 403, 2781, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2184, 403, 2787, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2185, 403, 2793, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2186, 403, 2799, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2187, 403, 2805, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2188, 404, 2814, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2189, 404, 2823, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2190, 404, 2832, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2191, 404, 2841, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2192, 404, 2850, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2193, 404, 2859, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2194, 404, 2868, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2195, 404, 2877, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2196, 404, 2886, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2197, 404, 2895, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2198, 404, 2904, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2199, 404, 2913, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2200, 404, 2922, 1.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2201, 404, 2931, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2202, 405, 2945, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2203, 406, 2946, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2204, 406, 2947, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2205, 407, 2949, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2206, 407, 2951, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2207, 408, 2953, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2208, 408, 2955, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2209, 408, 2957, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2210, 408, 2959, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2211, 409, 2963, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2212, 409, 2967, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2213, 409, 2971, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2214, 409, 2975, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2215, 409, 2979, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2216, 409, 2983, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2217, 410, 2989, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2218, 410, 2995, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2219, 410, 3001, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2220, 410, 3007, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2221, 410, 3013, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2222, 410, 3019, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2223, 410, 3025, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2224, 410, 3031, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2225, 410, 3037, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2226, 411, 3046, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2227, 411, 3055, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2228, 411, 3064, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2229, 411, 3073, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2230, 411, 3082, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2231, 411, 3091, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2232, 411, 3100, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2233, 411, 3109, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2234, 411, 3118, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2235, 411, 3127, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2236, 411, 3136, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2237, 411, 3145, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2238, 411, 3154, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2239, 411, 3163, 0.99, 1); INSERT INTO [dbo].[InvoiceLine] ([InvoiceLineId], [InvoiceId], [TrackId], [UnitPrice], [Quantity]) VALUES (2240, 412, 3177, 1.99, 1); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (1, N'Music'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (2, N'Movies'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (3, N'TV Shows'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (4, N'Audiobooks'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (5, N'90’s Music'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (6, N'Audiobooks'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (7, N'Movies'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (8, N'Music'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (9, N'Music Videos'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (10, N'TV Shows'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (11, N'Brazilian Music'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (12, N'Classical'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (13, N'Classical 101 - Deep Cuts'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (14, N'Classical 101 - Next Steps'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (15, N'Classical 101 - The Basics'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (16, N'Grunge'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (17, N'Heavy Metal Classic'); INSERT INTO [dbo].[Playlist] ([PlaylistId], [Name]) VALUES (18, N'On-The-Go 1'); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 99); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 63); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 64); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 65); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 66); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 67); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 68); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 69); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 70); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 71); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 72); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 73); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 74); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 75); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 76); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 77); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 78); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 79); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 80); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 81); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 82); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 83); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 84); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 6); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 7); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 8); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 9); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 10); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 11); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 12); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 13); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 14); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 15); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 16); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 17); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 18); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 19); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 20); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 21); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 22); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 4); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 5); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 23); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 24); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 25); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 26); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 27); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 28); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 29); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 30); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 31); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 32); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 33); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 34); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 35); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 36); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 37); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 38); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 39); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 40); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 41); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 42); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 43); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 44); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 45); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 46); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 47); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 48); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 49); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 50); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 51); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 52); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 53); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 54); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 55); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 56); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 57); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 58); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 59); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 60); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 61); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 62); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 85); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 86); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 87); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 88); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 89); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 90); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 91); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 92); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 93); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 94); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 95); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 96); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 97); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 98); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 2138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 3351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (1, 1968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 2912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (3, 3222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 51); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 52); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 53); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 54); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 55); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 56); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 57); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 58); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 59); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 60); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 61); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 62); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 23); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 24); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 25); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 26); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 27); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 28); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 29); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 30); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 31); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 32); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 33); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 34); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 35); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 36); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 37); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 4); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 5); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 38); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 39); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 40); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 41); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 42); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 43); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 44); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 45); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 46); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 47); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 48); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 49); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 50); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 77); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 78); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 79); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 80); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 81); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 82); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 83); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 84); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 1685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 2718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (5, 3503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 6); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 7); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 8); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 9); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 10); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 11); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 12); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 13); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 14); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 15); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 16); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 17); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 18); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 19); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 20); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 21); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 22); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 4); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 5); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 23); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 24); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 25); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 26); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 27); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 28); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 29); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 30); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 31); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 32); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 33); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 34); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 35); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 36); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 37); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 38); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 39); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 40); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 41); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 42); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 43); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 44); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 45); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 46); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 47); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 48); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 49); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 50); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 51); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 52); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 53); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 54); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 55); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 56); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 57); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 58); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 59); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 60); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 61); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 62); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 63); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 64); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 65); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 66); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 67); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 68); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 69); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 70); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 71); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 72); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 73); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 74); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 75); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 76); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 77); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 78); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 79); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 80); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 81); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 82); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 83); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 84); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 85); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 86); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 87); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 88); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 89); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 90); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 91); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 92); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 93); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 94); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 95); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 96); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 97); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 98); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 99); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1583); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1584); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1585); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1586); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1587); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1588); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1589); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1590); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1591); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1592); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1593); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1594); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1595); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1596); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1620); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1621); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1622); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1623); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1624); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1625); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1626); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1627); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1628); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1629); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1630); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1631); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1632); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1633); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1634); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1635); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1636); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1637); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1638); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1639); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1640); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1641); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1642); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1643); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1644); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1645); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 597); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 598); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 599); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 600); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 601); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 602); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 603); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 604); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 605); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 606); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 607); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 608); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 609); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 610); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 611); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 612); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 613); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 614); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 615); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 616); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 617); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 618); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 619); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 1999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2225); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2255); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2256); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2257); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2258); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2259); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2260); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2261); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2262); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2263); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2265); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2266); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2267); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2268); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2270); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2271); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2272); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2273); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2274); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2276); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2277); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2279); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2280); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2281); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2318); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2319); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2321); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2322); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2285); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2286); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2287); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3254); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2300); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2301); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2302); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2303); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2304); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2305); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2306); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2307); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2308); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2309); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2310); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2311); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2312); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2313); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2314); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2315); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2316); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2317); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2282); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2284); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2349); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2350); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2351); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2352); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2353); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2354); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2355); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2356); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2357); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2358); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2359); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2375); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2376); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2377); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2378); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2379); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2381); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2382); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2383); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2384); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2385); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2386); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2387); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2388); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2389); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2390); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2394); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2395); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2396); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2397); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2398); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2399); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2400); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3275); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2675); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2676); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2677); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2678); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2679); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2680); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2681); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2682); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2683); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2684); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2685); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2686); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2687); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2688); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2689); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2690); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2691); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2692); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2693); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2694); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2695); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2696); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2697); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2698); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2699); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2700); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2701); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2702); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2703); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2704); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 401); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 573); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 577); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 580); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 581); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 579); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 582); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 572); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 575); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 578); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 574); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 576); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3288); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3289); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3291); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3292); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3293); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3294); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3295); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3296); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3297); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3298); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3299); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2505); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3269); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2506); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2507); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2508); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2509); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2510); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2511); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2513); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2515); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2517); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2520); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2521); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2522); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2524); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2525); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2526); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2527); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2528); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2529); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2530); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2531); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2532); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2533); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2534); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2535); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2536); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2537); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2538); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2539); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2540); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2541); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2542); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2543); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2544); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2545); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2546); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2547); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2548); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2549); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2551); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2552); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2553); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2554); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2555); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2705); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2706); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2707); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2708); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2709); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2710); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2711); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2712); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2713); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2714); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2715); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2716); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2717); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2718); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2719); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2720); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2721); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2722); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2723); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2724); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2725); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2726); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2727); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2728); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2729); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3374); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2570); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2571); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2751); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2755); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2756); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2757); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2759); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2760); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2761); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2762); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2763); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2764); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2765); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2766); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2770); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2771); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2772); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2773); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2774); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2775); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2776); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2777); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2778); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2779); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2780); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2781); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2782); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2783); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2784); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2785); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2786); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2787); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2788); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2789); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2790); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2791); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2792); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2793); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2794); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2795); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2796); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2797); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2798); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2799); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2800); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2802); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2803); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2804); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2805); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2806); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2807); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2808); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2809); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2810); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2811); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2812); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2813); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2814); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2815); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2816); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2817); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2818); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 646); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 647); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 648); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 649); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 651); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 653); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 655); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 658); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2926); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2927); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2929); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2930); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2931); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2932); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2933); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2934); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2935); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2936); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2937); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2938); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2939); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2940); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2941); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2943); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2944); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2946); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2947); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2948); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2949); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2950); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2951); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2952); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2953); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2954); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2955); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2956); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2957); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2958); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2959); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2960); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2961); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2962); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2963); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3006); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3008); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3009); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3011); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3012); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3014); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3015); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3016); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3017); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2964); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2965); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2966); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2967); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2968); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2969); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2970); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2971); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2972); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2973); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2974); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3253); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2975); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2976); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2977); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2978); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2979); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2980); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2981); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2982); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2983); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2985); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2986); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2987); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2988); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2989); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2990); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2991); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2992); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2993); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2994); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2995); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2996); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2997); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2998); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2999); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3000); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3001); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3002); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3018); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3019); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3020); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3021); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3022); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3023); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3024); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3025); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3026); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3027); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3028); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3029); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3030); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3031); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3032); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3033); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3034); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3035); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3036); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3037); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3038); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3039); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3040); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3041); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3042); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3043); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3044); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3045); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3046); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3047); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3048); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3049); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3050); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3051); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3064); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3065); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3066); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3067); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3068); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3069); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3070); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3071); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3072); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3073); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3074); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3075); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3076); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3077); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3078); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3079); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3080); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3052); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3053); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3054); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3055); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3056); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3057); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3058); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3059); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3060); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3061); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3062); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3063); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3081); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3082); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3083); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3084); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3085); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3086); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3087); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3089); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3090); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3091); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3092); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3097); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3098); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3100); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3101); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3102); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3103); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 323); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 324); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 325); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 326); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 327); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 328); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 329); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 330); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 331); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 332); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 333); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 334); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 336); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 365); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 366); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 368); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 369); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 370); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 371); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 372); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 373); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 556); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 557); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 558); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 559); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 560); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 561); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 562); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 563); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 564); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 565); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 566); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 567); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 568); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 569); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 661); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 662); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 663); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 664); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 665); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 666); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 667); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 668); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 669); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 670); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 671); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 672); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 673); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 674); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3104); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3106); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3107); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3108); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3109); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3110); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3111); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3112); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3113); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3114); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3115); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3116); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3117); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3118); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3119); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3120); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3121); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3122); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3123); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3124); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3125); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3126); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3127); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3128); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3129); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3130); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3131); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 652); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 656); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 657); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 650); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 659); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 654); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 660); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3132); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3133); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3134); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3135); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3136); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3137); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3138); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3139); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3140); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3141); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3142); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3143); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3144); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3145); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2731); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2732); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2733); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2734); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2735); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2736); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2737); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2739); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2740); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2741); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2742); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2743); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2744); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2745); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2746); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2747); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2748); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2749); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 2750); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3320); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3264); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3146); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3147); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3148); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3149); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3150); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3151); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3153); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3154); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3155); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3156); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3157); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3158); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3159); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3161); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3162); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3163); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3164); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3455); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3456); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3457); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3458); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3459); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3460); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3461); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3462); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3463); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3464); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3465); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3466); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3467); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3468); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3469); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3470); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3471); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3472); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3473); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3474); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3475); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3476); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3477); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3478); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (8, 3484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (9, 3402); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3250); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2819); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2820); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2821); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2822); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2823); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2824); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2825); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2826); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2827); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2828); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2829); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2831); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2832); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2833); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2834); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2835); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2836); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2838); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3226); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3227); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3229); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3231); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3232); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3233); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3234); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3235); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3237); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3238); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3239); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3240); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3241); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3242); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3243); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3244); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3245); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3246); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3247); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3248); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3249); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2839); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2840); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2841); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2842); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2843); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2844); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2845); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2846); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2847); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2848); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2849); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2850); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2851); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2853); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2855); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2856); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3166); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3167); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3168); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3171); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3223); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2861); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2865); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2868); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2871); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2873); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2883); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2893); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2894); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2898); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2901); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2904); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2906); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2911); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2913); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2915); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2917); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2919); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2923); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2925); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2859); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2860); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2869); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2872); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2878); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2879); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2884); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2887); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2889); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2892); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2896); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2897); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2902); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2905); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2907); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2910); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2914); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2918); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2920); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2922); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2924); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2857); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2862); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2863); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2866); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2870); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2875); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2881); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2882); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2886); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2890); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2891); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2895); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2899); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2900); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2903); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2908); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2909); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 2912); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3165); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3169); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3170); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3252); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3224); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3251); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3340); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3339); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3338); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3337); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3341); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3342); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3346); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3343); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3347); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3344); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3348); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3360); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3361); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3362); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3363); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3364); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3172); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3173); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3174); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3175); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3176); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3177); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3178); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3179); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3180); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3181); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3182); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3183); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3184); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3185); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3186); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3187); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3188); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3189); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3190); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3191); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3192); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3193); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3196); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3197); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3199); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3200); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3201); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3202); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3203); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3204); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3205); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3207); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3208); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3209); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3210); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3211); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3212); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3213); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3214); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3216); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3217); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3218); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3221); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3222); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3428); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (10, 3429); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 391); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 523); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 219); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 220); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 215); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 730); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 738); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 228); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 230); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 236); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 852); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 858); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 864); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 867); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 874); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 877); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 885); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 888); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1088); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1093); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1099); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1105); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 504); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1518); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1519); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1514); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1916); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1928); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 1921); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2752); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2753); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2754); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2758); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2767); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2768); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 2769); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (11, 393); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (12, 3427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3479); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3480); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3481); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3482); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3483); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3484); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3485); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3486); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3487); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3488); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3489); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3490); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3491); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3492); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3493); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3494); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3495); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3496); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3497); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3498); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3499); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3500); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3501); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3502); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (13, 3503); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3430); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3431); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3432); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3433); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3434); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3435); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3436); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3437); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3438); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3439); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3440); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3441); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3442); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3443); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3444); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3445); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3446); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3447); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3448); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3449); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3450); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3451); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3452); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3453); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (14, 3454); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3403); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3404); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3405); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3406); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3407); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3408); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3409); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3410); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3411); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3412); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3413); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3414); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3415); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3416); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3417); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3418); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3419); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3420); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3421); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3422); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3423); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3424); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3425); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3426); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (15, 3427); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 3367); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 52); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2194); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2195); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2198); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2206); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2512); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2516); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2550); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2003); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2004); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2005); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2007); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2010); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (16, 2013); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 2); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 3); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 4); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 5); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 152); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 160); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1278); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1283); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1392); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1335); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1345); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1380); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1801); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1830); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1837); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1854); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1876); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1880); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1984); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1942); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 1945); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 2094); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 2095); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 2096); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (17, 3290); INSERT INTO [dbo].[PlaylistTrack] ([PlaylistId], [TrackId]) VALUES (18, 597);