Untitled
unknown
plain_text
5 months ago
514 kB
60
Indexable
1. Open your sql server 2. Create a database named "LibraryDB" 3. Click on the "New Query" in the menu bar of SQL server 4. Paste the code below 5. Click F5 on your keyboard to execute 6. Refresh the database "LibraryDB" to verify if the table has been created with the data in it. 7. For Practice purposes, answer the following problems below Practices questions. 1. Find the earliest published book in the dataset. 2. Retrieve the latest book purchased from the store. 3. List all books where the title starts with 'The'. 4. Find all books where the description ends with 'story'. 5. Retrieve books that contain 'adventure' in the description. 6. Find all books purchased between January 1, 2000, and December 31, 2020. 7. Get all books that are either 'Available' or 'Reserved'. 8. List the most expensive book and its details. 9. Retrieve the total price of all books published in 2023. 10. Display books where the price is between 100 and 500. 11. Find the cheapest book published before 2010. 12. List books that are not 'Available' and were purchased before 2015. 13. Display all books sorted by price in descending order. 14. Find all books where the title contains the word 'Guide'. 15. List the total number of books available by category. 16. Find the most recently published book that is still available. 17. Retrieve the cheapest 'Science' category book. 18. Find books where the title starts with 'The' and ends with 'Story'. 19. Display books where the price is either below 100 or above 1000. 20. Show books that were published after 2015 and purchased after 2020. //*****Start pasting the code below. Don't include from this line and above ******// USE [LibraryDB] GO /****** Object: Table [dbo].[tbl_Books] Script Date: 10/14/2024 8:14:04 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[tbl_Books]( [BookID] [int] IDENTITY(1,1) NOT NULL, [ISBN_Num] [varchar](100) NULL, [BookTitle] [varchar](5000) NULL, [BookDesc] [varchar](5000) NULL, [BookCat] [varchar](50) NULL, [DatePurchased] [datetime] NULL, [DatePublished] [datetime] NULL, [Availability] [varchar](20) NULL, [Price] [numeric](18, 0) NULL ) ON [PRIMARY] GO SET IDENTITY_INSERT [dbo].[tbl_Books] ON INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3814, N'5000458991', N'Down-sized background success', N'President tough myself technology. About food expect site student. Brother style memory deep open at. Party allow power beautiful not.', N'Non-Fiction', CAST(N'1988-03-23T00:00:00.000' AS DateTime), CAST(N'1981-07-05T00:00:00.000' AS DateTime), N'In Repair', CAST(973 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3815, N'3334664929', N'Enhanced dynamic solution', N'When also much school song. Role a set present. Interest black machine product seven fast view. What cut apply keep idea. Person defense oil notice short here. Deal choose stage yard network senior.', N'Biography', CAST(N'2015-08-22T00:00:00.000' AS DateTime), CAST(N'2010-01-26T00:00:00.000' AS DateTime), N'Available', CAST(479 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3816, N'5377419404', N'Future-proofed mission-critical contingency', N'Education class look character. Strategy free avoid law with. Development above administration capital. Perform center item. Home certain meeting.', N'History', CAST(N'1997-02-26T00:00:00.000' AS DateTime), CAST(N'1993-09-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(937 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3817, N'3920314227', N'Synergized heuristic throughput', N'Policy white maintain audience fact adult cup start. He available I key.', N'Fiction', CAST(N'2018-12-26T00:00:00.000' AS DateTime), CAST(N'1995-05-01T00:00:00.000' AS DateTime), N'Reserved', CAST(239 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3818, N'1575040937', N'Object-based scalable budgetary management', N'Former stock article one bank education. Need people remain break. List beyond finish occur. Specific act different economic live. Material radio last nation. Loss word first image well.', N'Non-Fiction', CAST(N'1996-01-10T00:00:00.000' AS DateTime), CAST(N'1991-09-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(535 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3819, N'7702037311', N'Innovative multi-state capability', N'Bill finish as defense speech which. Turn reflect pass natural drop. Or environment more power mention. Direction dog education your piece. Position act program agent.', N'Fiction', CAST(N'1985-12-10T00:00:00.000' AS DateTime), CAST(N'1981-09-12T00:00:00.000' AS DateTime), N'Reserved', CAST(782 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3820, N'1043188681', N'Optimized mobile workforce', N'Marriage remember until. Operation stay law her. Matter worry do tax available executive. Involve according avoid world. Try fact film sport thought. Stock head character.', N'Fiction', CAST(N'1985-07-15T00:00:00.000' AS DateTime), CAST(N'1980-05-18T00:00:00.000' AS DateTime), N'Reserved', CAST(778 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3821, N'1281957911', N'Exclusive discrete structure', N'Production true record. Speech data their site wear fund break. International quality hair particularly similar take north. Employee office firm know per only.', N'History', CAST(N'1997-03-29T00:00:00.000' AS DateTime), CAST(N'1995-02-11T00:00:00.000' AS DateTime), N'In Repair', CAST(209 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3822, N'6207441530', N'Synchronized interactive service-desk', N'Edge street hour network role. Laugh heart performance term bill only note. Which must bill ready find hospital science.', N'Biography', CAST(N'2007-12-18T00:00:00.000' AS DateTime), CAST(N'1983-07-21T00:00:00.000' AS DateTime), N'Checked Out', CAST(447 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3823, N'8182040633', N'Multi-channeled tertiary instruction set', N'Easy rather task choice with. Benefit anything administration sit. Product ground whose see manager hit in. Institution travel seem event.', N'Fiction', CAST(N'1993-02-05T00:00:00.000' AS DateTime), CAST(N'1986-03-27T00:00:00.000' AS DateTime), N'In Repair', CAST(403 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3824, N'7614837800', N'Future-proofed intangible forecast', N'Enough move edge child customer organization. Include season quickly past son case always market. Talk detail anything morning. Rock course recent traditional admit clearly.', N'Technology', CAST(N'2011-08-04T00:00:00.000' AS DateTime), CAST(N'2006-11-05T00:00:00.000' AS DateTime), N'In Repair', CAST(445 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3825, N'5147456839', N'Fully-configurable uniform forecast', N'Case body rather suffer ok. During and bill as add discuss. List watch wife them ten thank teacher that. Blue physical catch room realize door store.', N'Science', CAST(N'2015-12-04T00:00:00.000' AS DateTime), CAST(N'1991-12-19T00:00:00.000' AS DateTime), N'Reserved', CAST(644 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3826, N'6626047551', N'Triple-buffered non-volatile instruction set', N'Field success including type detail long. Commercial three bring bill policy chair recently. Do far feel join term. Do visit team. Individual people image different capital main.', N'Non-Fiction', CAST(N'2018-12-23T00:00:00.000' AS DateTime), CAST(N'2012-05-15T00:00:00.000' AS DateTime), N'Reserved', CAST(469 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3827, N'1913365575', N'Progressive demand-driven time-frame', N'Share important officer range since. Receive travel point. Speak value ball decide. Believe medical someone after information theory company. Indeed very support result.', N'Biography', CAST(N'2010-08-30T00:00:00.000' AS DateTime), CAST(N'1988-10-18T00:00:00.000' AS DateTime), N'In Repair', CAST(281 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3828, N'6202374136', N'Programmable composite capability', N'Clearly feeling high your. Himself production state person everything take. Side article short standard last discover. First research third ago.', N'Fiction', CAST(N'1996-02-13T00:00:00.000' AS DateTime), CAST(N'1987-12-25T00:00:00.000' AS DateTime), N'In Repair', CAST(982 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3829, N'4667290591', N'Inverse user-facing matrix', N'Speak her product difference cover. Kind interest important Democrat during actually almost. Perhaps school its issue public. Structure people at knowledge question field turn.', N'Science', CAST(N'2023-11-21T00:00:00.000' AS DateTime), CAST(N'1983-03-18T00:00:00.000' AS DateTime), N'Available', CAST(717 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3830, N'7266638371', N'De-engineered eco-centric data-warehouse', N'Move forward health have. Race officer impact. Very spend theory hand box court shake but. Act executive treatment environment.', N'Biography', CAST(N'1991-07-28T00:00:00.000' AS DateTime), CAST(N'1983-04-22T00:00:00.000' AS DateTime), N'In Repair', CAST(890 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3831, N'5087487246', N'User-centric maximized alliance', N'Line successful seat sound address high. Treatment above rich inside watch believe until. By around gun. Coach wide scientist cold.', N'History', CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2011-07-28T00:00:00.000' AS DateTime), N'Available', CAST(188 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3832, N'2385933936', N'Advanced homogeneous flexibility', N'Price answer wall free performance. Nice put race man. Many stop realize notice entire environment. Pass table real seven. Choose perhaps morning size. Ago member central share. Show sign loss.', N'Biography', CAST(N'2020-09-14T00:00:00.000' AS DateTime), CAST(N'1983-11-21T00:00:00.000' AS DateTime), N'Available', CAST(696 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3833, N'4968168193', N'Ergonomic didactic data-warehouse', N'Per common friend everyone. Book general dream three own with bank. Chair city approach wait let pretty. Quality nature tell both key above I. Year rest much mention together ground.', N'History', CAST(N'2012-12-24T00:00:00.000' AS DateTime), CAST(N'1986-10-24T00:00:00.000' AS DateTime), N'Available', CAST(315 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3834, N'6003627722', N'Managed system-worthy model', N'Someone sense less Democrat can really travel kind. Within large local light. Actually knowledge wish experience mother use point. Tonight its study hear participant then.', N'Science', CAST(N'2008-04-19T00:00:00.000' AS DateTime), CAST(N'1982-09-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(832 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3835, N'1428653717', N'User-friendly non-volatile hub', N'Cut reduce away they. Color case all receive section able. Method want continue social theory.', N'Biography', CAST(N'2008-10-03T00:00:00.000' AS DateTime), CAST(N'1991-03-05T00:00:00.000' AS DateTime), N'Available', CAST(346 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3836, N'2541922388', N'Reactive 24/7 info-mediaries', N'Imagine edge fact without single should world. Young firm build space memory send plan.', N'Fiction', CAST(N'1990-01-17T00:00:00.000' AS DateTime), CAST(N'1988-09-07T00:00:00.000' AS DateTime), N'Available', CAST(746 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3837, N'8106479275', N'Future-proofed 3rdgeneration software', N'Nor certain choice energy those. Great wait check service step key space. Democratic region accept serious great really.', N'Technology', CAST(N'1990-04-11T00:00:00.000' AS DateTime), CAST(N'1989-04-17T00:00:00.000' AS DateTime), N'Reserved', CAST(422 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3838, N'5289361000', N'Compatible fault-tolerant encoding', N'Base opportunity rather blue quite fear. Anything avoid condition agreement organization. Who course gun relate.', N'Non-Fiction', CAST(N'1982-12-19T00:00:00.000' AS DateTime), CAST(N'1980-11-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(74 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3839, N'5845462541', N'Progressive logistical flexibility', N'Response difference realize cause grow list happy. Upon interview door daughter. Watch good expect. Whose maintain red history choose support number. Instead leg weight move.', N'Fiction', CAST(N'2013-11-19T00:00:00.000' AS DateTime), CAST(N'1989-07-02T00:00:00.000' AS DateTime), N'Reserved', CAST(581 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3840, N'8679207593', N'Face-to-face interactive time-frame', N'So it do state. Lose represent value network along population card may.', N'Science', CAST(N'2008-07-09T00:00:00.000' AS DateTime), CAST(N'1989-12-03T00:00:00.000' AS DateTime), N'Reserved', CAST(773 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3841, N'9925244420', N'Organized mission-critical Internet solution', N'Heart same resource hand service prepare industry. Group space whether beautiful. Experience practice guy often. Quality often knowledge serious provide.', N'History', CAST(N'1992-03-21T00:00:00.000' AS DateTime), CAST(N'1987-08-20T00:00:00.000' AS DateTime), N'In Repair', CAST(959 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3842, N'6350669313', N'Customizable object-oriented parallelism', N'Paper successful day another loss market maybe. Strong month probably affect another billion. Answer center treat run whole. Late book perform huge anyone special school various.', N'Technology', CAST(N'2023-03-20T00:00:00.000' AS DateTime), CAST(N'2012-06-24T00:00:00.000' AS DateTime), N'Reserved', CAST(481 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3843, N'6187848367', N'Inverse well-modulated customer loyalty', N'Wear cost none. Simply today control always you. Reason rich report goal there police. Can understand role not size billion. Style perform table. Evidence less trade some. Speech eat every parent.', N'Fiction', CAST(N'2014-01-31T00:00:00.000' AS DateTime), CAST(N'1998-12-23T00:00:00.000' AS DateTime), N'In Repair', CAST(187 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3844, N'2476593823', N'Focused zero-defect toolset', N'Carry best appear particular wear body. At page over evidence next food case picture. Century training coach society you firm though. Consumer war science. Loss fall population clear modern.', N'Science', CAST(N'1995-06-07T00:00:00.000' AS DateTime), CAST(N'1980-07-04T00:00:00.000' AS DateTime), N'Available', CAST(531 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3845, N'9908707291', N'Down-sized client-server support', N'Home raise goal. Goal how decision teacher bank. Product election how. Where Mr cultural his process. Lose author century perform hard simple. Beautiful compare wife agency billion play own.', N'Biography', CAST(N'1995-02-15T00:00:00.000' AS DateTime), CAST(N'1989-11-18T00:00:00.000' AS DateTime), N'Reserved', CAST(751 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3846, N'3647834509', N'Universal methodical encoding', N'Know seem performance particularly if million son. Itself another like finally weight attention. Than long price information billion anything. Sea human head. President early among.', N'Technology', CAST(N'1997-03-06T00:00:00.000' AS DateTime), CAST(N'1981-08-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(66 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3847, N'1552952604', N'Face-to-face asynchronous strategy', N'Friend wish although carry term natural. Hundred property modern social car against. Play discussion identify such seem share.', N'Science', CAST(N'2017-06-17T00:00:00.000' AS DateTime), CAST(N'1983-09-05T00:00:00.000' AS DateTime), N'In Repair', CAST(369 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3848, N'6433608848', N'Visionary static analyzer', N'Almost fish detail speech others. Land exist light public coach situation only visit. Record can pick.', N'History', CAST(N'2011-10-19T00:00:00.000' AS DateTime), CAST(N'1981-03-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(648 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3849, N'2731752415', N'Assimilated executive secured line', N'Despite particularly above until along born another already. Easy front while college force wait although. Poor where be rest not. Republican life television. Anything dinner explain whether.', N'Fiction', CAST(N'2003-09-15T00:00:00.000' AS DateTime), CAST(N'2002-06-25T00:00:00.000' AS DateTime), N'Available', CAST(835 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3850, N'8920203499', N'Centralized intermediate superstructure', N'Think carry management newspaper. Travel by war establish family condition protect strong. Leader senior relationship act mean choice role.', N'Non-Fiction', CAST(N'2022-01-28T00:00:00.000' AS DateTime), CAST(N'2018-07-15T00:00:00.000' AS DateTime), N'Reserved', CAST(458 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3851, N'2772975950', N'Secured cohesive access', N'Stop value Mrs camera natural expect. Smile bill indicate practice near. Perform recent skin instead half front. Wide story just include which alone.', N'Science', CAST(N'2001-05-12T00:00:00.000' AS DateTime), CAST(N'1997-11-20T00:00:00.000' AS DateTime), N'Reserved', CAST(491 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3852, N'1285000378', N'Upgradable reciprocal superstructure', N'Small free better other. Issue say maybe senior suggest. Trade everything keep theory hand technology management.', N'Biography', CAST(N'2019-11-10T00:00:00.000' AS DateTime), CAST(N'1994-11-03T00:00:00.000' AS DateTime), N'Reserved', CAST(136 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3853, N'4456266466', N'Open-source cohesive installation', N'Fire effort manager management want anyone. Type wife thing send wait clear customer capital. Significant phone item consider whom.', N'History', CAST(N'1988-12-20T00:00:00.000' AS DateTime), CAST(N'1988-11-21T00:00:00.000' AS DateTime), N'Available', CAST(256 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3854, N'3338852176', N'Customizable motivating functionalities', N'Case in quickly old manager give security. Friend eight suffer address want entire role so. Group partner focus firm.', N'History', CAST(N'2001-03-09T00:00:00.000' AS DateTime), CAST(N'1999-01-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(110 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3855, N'2230180338', N'Implemented system-worthy productivity', N'Born value ago himself class push edge. Business marriage by others evening school society. A although treatment his mouth look.', N'Science', CAST(N'1986-10-05T00:00:00.000' AS DateTime), CAST(N'1983-02-18T00:00:00.000' AS DateTime), N'In Repair', CAST(153 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3856, N'7068698100', N'Reduced directional hardware', N'Sport top good group reflect main candidate. Message hit better if. Old style send improve report. Think when the past vote. Series point fast life world.', N'Non-Fiction', CAST(N'1989-07-03T00:00:00.000' AS DateTime), CAST(N'1983-08-22T00:00:00.000' AS DateTime), N'In Repair', CAST(409 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3857, N'9633052277', N'Integrated intermediate website', N'Style will discover station hold. Face soon red office nor blue song land. Part follow international especially pretty small natural.', N'Fiction', CAST(N'1986-10-21T00:00:00.000' AS DateTime), CAST(N'1981-04-11T00:00:00.000' AS DateTime), N'Available', CAST(179 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3858, N'5112930385', N'Optional interactive time-frame', N'Question man test oil vote. Long black discuss positive great father. Moment bag as career approach rock late consumer.', N'Biography', CAST(N'2003-04-14T00:00:00.000' AS DateTime), CAST(N'1998-06-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(783 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3859, N'3762970856', N'Phased analyzing flexibility', N'Glass outside position performance major along beautiful. Also or you more. Contain western know against camera country easy. Look call respond media.', N'Science', CAST(N'2016-01-09T00:00:00.000' AS DateTime), CAST(N'2015-07-30T00:00:00.000' AS DateTime), N'In Repair', CAST(770 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3860, N'1780637853', N'Adaptive system-worthy software', N'Possible walk guy your his time. Break voice nearly money decade good realize. Would test left generation. White skin herself financial.', N'History', CAST(N'2011-05-31T00:00:00.000' AS DateTime), CAST(N'1993-05-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(814 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3861, N'2574666262', N'Up-sized content-based moratorium', N'Girl surface third defense. Between body study whole tend name laugh. Collection century reason gun east other opportunity. Writer maintain more many knowledge. Keep stop seven also.', N'Fiction', CAST(N'2016-11-15T00:00:00.000' AS DateTime), CAST(N'1985-04-18T00:00:00.000' AS DateTime), N'Reserved', CAST(205 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3862, N'4830352321', N'Universal didactic support', N'Campaign as present consumer candidate value. Step animal marriage upon month he. Population speech assume raise. Should floor type number southern man.', N'Non-Fiction', CAST(N'1985-04-08T00:00:00.000' AS DateTime), CAST(N'1984-08-11T00:00:00.000' AS DateTime), N'In Repair', CAST(710 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3863, N'3201464907', N'Synergized mission-critical complexity', N'Drug well visit too Congress agent reach stage. Nor both one listen. Assume science increase thank. Skill model get reality wrong true.', N'Biography', CAST(N'1993-12-13T00:00:00.000' AS DateTime), CAST(N'1990-03-30T00:00:00.000' AS DateTime), N'In Repair', CAST(946 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3864, N'4719372289', N'Ergonomic dynamic emulation', N'Him play wrong least help break. Affect expert outside. Grow summer risk smile large eight. Spend energy degree approach meeting television almost.', N'Biography', CAST(N'2016-04-21T00:00:00.000' AS DateTime), CAST(N'1996-12-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(298 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3865, N'9826515193', N'Customer-focused responsive standardization', N'Year thousand him road case. Rise toward character truth.', N'History', CAST(N'1991-11-04T00:00:00.000' AS DateTime), CAST(N'1986-08-13T00:00:00.000' AS DateTime), N'Available', CAST(979 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3866, N'8048337752', N'Optimized 3rdgeneration software', N'True owner size anything her computer line else. Southern former bit. Do indeed clear fight power during rich. Build actually including future.', N'History', CAST(N'2011-07-12T00:00:00.000' AS DateTime), CAST(N'2011-03-06T00:00:00.000' AS DateTime), N'Reserved', CAST(884 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3867, N'6529114843', N'Stand-alone exuding forecast', N'Night customer morning there system go employee. As civil people again face. Level wife seek decision instead though. Garden mission serious. National structure job factor quickly company.', N'Science', CAST(N'2014-10-17T00:00:00.000' AS DateTime), CAST(N'2004-12-08T00:00:00.000' AS DateTime), N'Checked Out', CAST(695 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3868, N'9127305768', N'Fully-configurable 24/7 implementation', N'Long course party paper surface likely any. End position model I buy word trouble manager. Improve none season technology order ok.', N'Technology', CAST(N'1984-10-03T00:00:00.000' AS DateTime), CAST(N'1980-10-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(982 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3869, N'7599012002', N'Integrated client-driven encryption', N'Coach sound down black painting enjoy bed. Million from whatever establish. Thus painting push year experience. Standard listen several husband value.', N'Science', CAST(N'2020-03-28T00:00:00.000' AS DateTime), CAST(N'1990-05-13T00:00:00.000' AS DateTime), N'Available', CAST(879 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3870, N'1866954844', N'Cloned web-enabled product', N'Lot as project bank loss effect letter. Think kitchen woman trial concern open medical. Provide sit answer many resource throw.', N'Biography', CAST(N'2005-01-21T00:00:00.000' AS DateTime), CAST(N'1990-12-12T00:00:00.000' AS DateTime), N'Available', CAST(320 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3871, N'3211175823', N'Sharable motivating infrastructure', N'Fly door dinner fact. Election quite your. Method only authority perform nice chair important. Its marriage mind assume girl decade.', N'Science', CAST(N'1991-11-23T00:00:00.000' AS DateTime), CAST(N'1990-07-14T00:00:00.000' AS DateTime), N'Reserved', CAST(492 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3872, N'6770353316', N'Balanced asynchronous function', N'Provide individual together others clearly local certain. This table energy discussion. Even kitchen food get. Adult mother she miss board. Name learn organization bit card.', N'Biography', CAST(N'1997-10-18T00:00:00.000' AS DateTime), CAST(N'1980-08-30T00:00:00.000' AS DateTime), N'In Repair', CAST(777 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3873, N'9240885454', N'Secured responsive alliance', N'And tonight describe. Performance specific sense own base color despite. Already maybe better prove position.', N'History', CAST(N'1986-10-11T00:00:00.000' AS DateTime), CAST(N'1986-06-13T00:00:00.000' AS DateTime), N'Reserved', CAST(244 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3874, N'7883395167', N'Stand-alone full-range function', N'Name imagine public suggest focus Democrat. Just special quickly like hear attention why. Able behavior country detail list.', N'Fiction', CAST(N'1986-12-13T00:00:00.000' AS DateTime), CAST(N'1986-06-27T00:00:00.000' AS DateTime), N'Reserved', CAST(446 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3904, N'9123923333', N'Self-enabling local solution', N'Public argue than as. Fund want develop building site figure must unit. Fish produce people clearly plan thousand career. Stuff serious their. Three set some field standard.', N'Biography', CAST(N'2021-04-24T00:00:00.000' AS DateTime), CAST(N'2002-08-19T00:00:00.000' AS DateTime), N'In Repair', CAST(524 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3905, N'7625642418', N'Phased dynamic middleware', N'Job spring such election give special. Stage letter TV experience get foreign. Available onto design much budget goal. Also of party.', N'Biography', CAST(N'2024-04-01T00:00:00.000' AS DateTime), CAST(N'2012-03-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(566 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3906, N'3822373437', N'Optional exuding portal', N'Cost position world save. Whether book get sometimes thought force will. House check report administration. But physical should until wide summer.', N'Technology', CAST(N'1990-03-08T00:00:00.000' AS DateTime), CAST(N'1990-01-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(963 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3907, N'4477283831', N'Seamless discrete knowledgebase', N'Food political throughout experience could. Should clear civil let month consider seven perform. But red season actually while act.', N'Non-Fiction', CAST(N'2014-02-01T00:00:00.000' AS DateTime), CAST(N'2002-06-22T00:00:00.000' AS DateTime), N'Available', CAST(975 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3908, N'1421639107', N'Phased 24/7 alliance', N'Run part word smile. East general we open owner key. Provide sure almost company measure do reflect.', N'Biography', CAST(N'1995-04-02T00:00:00.000' AS DateTime), CAST(N'1994-01-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(179 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3909, N'9408528394', N'Integrated well-modulated collaboration', N'Actually article body appear want forget respond. Usually deal culture camera. Some talk unit important southern.', N'Technology', CAST(N'2012-08-06T00:00:00.000' AS DateTime), CAST(N'1984-12-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(275 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3910, N'7176541468', N'Digitized multi-state structure', N'Easy despite interesting suggest while design. Knowledge community participant day. Because skill particular Republican.', N'Science', CAST(N'2005-05-08T00:00:00.000' AS DateTime), CAST(N'1987-12-31T00:00:00.000' AS DateTime), N'Reserved', CAST(424 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3911, N'4033045279', N'Optimized maximized attitude', N'Issue red house way response enough. Smile dream bring nation time. Like whether office he suddenly however break plan.', N'Non-Fiction', CAST(N'2004-04-15T00:00:00.000' AS DateTime), CAST(N'1995-07-16T00:00:00.000' AS DateTime), N'Available', CAST(339 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3912, N'1855120033', N'Versatile upward-trending matrix', N'Line after board person responsibility southern. International attorney itself avoid. Music discover guess want sing stop. Seem what field culture we mean notice.', N'Technology', CAST(N'2023-08-28T00:00:00.000' AS DateTime), CAST(N'1980-04-15T00:00:00.000' AS DateTime), N'Reserved', CAST(682 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3913, N'8794944796', N'Synergistic asymmetric help-desk', N'Attention arrive event light. Poor about yet position standard police soldier. Near cup peace others. Officer price southern ahead maybe paper front. Claim old make evidence.', N'History', CAST(N'2015-07-07T00:00:00.000' AS DateTime), CAST(N'2011-11-26T00:00:00.000' AS DateTime), N'Available', CAST(793 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3914, N'7196207218', N'Seamless grid-enabled process improvement', N'Safe note boy build person. Report analysis your appear door very. Shoulder month per buy recently size. Next including future position.', N'Technology', CAST(N'2018-11-22T00:00:00.000' AS DateTime), CAST(N'1996-03-01T00:00:00.000' AS DateTime), N'Reserved', CAST(611 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3915, N'9330325029', N'Ergonomic composite structure', N'Especially field action strong. Subject property compare police. To provide might again. Need kitchen professor though actually drug. Agency yeah apply court morning pass.', N'Science', CAST(N'2005-09-10T00:00:00.000' AS DateTime), CAST(N'1980-05-20T00:00:00.000' AS DateTime), N'In Repair', CAST(415 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3916, N'7590074827', N'Diverse systemic matrices', N'Continue card should list. Plant describe must nothing. Source candidate network word case. Order enjoy similar glass while piece term up. Protect free seat gun.', N'Technology', CAST(N'1998-04-08T00:00:00.000' AS DateTime), CAST(N'1983-05-09T00:00:00.000' AS DateTime), N'Available', CAST(868 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3917, N'2193482414', N'Customer-focused full-range data-warehouse', N'Mention when fly onto whole cut. Pull country cell feel fall. Spring cost travel born.', N'Non-Fiction', CAST(N'2024-04-19T00:00:00.000' AS DateTime), CAST(N'1993-06-13T00:00:00.000' AS DateTime), N'In Repair', CAST(568 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3918, N'1902293260', N'Visionary bottom-line hardware', N'Force avoid live this money perform. Research mission energy turn. Drive write until strong success no. Charge as history star condition traditional. From visit case.', N'Science', CAST(N'2024-09-10T00:00:00.000' AS DateTime), CAST(N'2001-11-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(420 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3919, N'5057104524', N'Future-proofed neutral neural-net', N'Upon player before might better argue. His goal she arrive girl watch after state. Question process cost speech figure. Foreign throughout for by machine range language player.', N'Fiction', CAST(N'2002-05-03T00:00:00.000' AS DateTime), CAST(N'1996-10-26T00:00:00.000' AS DateTime), N'In Repair', CAST(394 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3920, N'6484020652', N'Implemented systemic functionalities', N'Player recent about wrong. Author eat small American vote. Student education thought dog political professional. While raise protect culture.', N'Biography', CAST(N'1985-08-07T00:00:00.000' AS DateTime), CAST(N'1980-03-15T00:00:00.000' AS DateTime), N'In Repair', CAST(366 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3921, N'7334620562', N'Programmable national artificial intelligence', N'Expert goal despite bring remain. Describe prevent five another.', N'Biography', CAST(N'1995-09-24T00:00:00.000' AS DateTime), CAST(N'1983-11-26T00:00:00.000' AS DateTime), N'Available', CAST(168 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3922, N'4038359021', N'Organic context-sensitive info-mediaries', N'Hear big cause eye. His what explain spring we turn. Trial item during really success sort. Defense method sport now manager. Prevent establish seven amount. American indeed detail.', N'Science', CAST(N'1993-11-07T00:00:00.000' AS DateTime), CAST(N'1988-10-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(745 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3923, N'3472027814', N'Synergized dedicated structure', N'Same cup professional ago. Lawyer alone at work scientist. Worry theory may about. Stage drug teacher such drive.', N'Technology', CAST(N'1989-08-08T00:00:00.000' AS DateTime), CAST(N'1989-06-16T00:00:00.000' AS DateTime), N'In Repair', CAST(494 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3924, N'6955658199', N'Optional local conglomeration', N'Know box exist. Article improve threat than daughter thought dream option. Hotel whole body guess. Yard establish until past somebody.', N'History', CAST(N'1990-10-02T00:00:00.000' AS DateTime), CAST(N'1984-10-08T00:00:00.000' AS DateTime), N'Reserved', CAST(289 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3925, N'4293076155', N'Multi-channeled systemic archive', N'Choice let major teacher fish building. Training else career animal different dog.', N'History', CAST(N'1999-03-21T00:00:00.000' AS DateTime), CAST(N'1998-06-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(141 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3926, N'5346481676', N'Switchable systemic forecast', N'Poor against garden born. When bill possible wall keep civil. I treatment myself interesting.', N'Technology', CAST(N'2020-01-28T00:00:00.000' AS DateTime), CAST(N'2013-03-24T00:00:00.000' AS DateTime), N'Reserved', CAST(571 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3927, N'8375185636', N'Open-architected real-time artificial intelligence', N'Assume huge down measure. Site note care theory. Market piece hotel art pull. Great huge themselves then western major. Simply much attorney center. Health range career.', N'Science', CAST(N'2007-08-28T00:00:00.000' AS DateTime), CAST(N'1989-04-07T00:00:00.000' AS DateTime), N'Reserved', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3928, N'5936968562', N'Multi-channeled cohesive protocol', N'Ten teacher believe be. Human game education final. Today theory west door specific room.', N'Technology', CAST(N'2012-04-17T00:00:00.000' AS DateTime), CAST(N'1997-04-22T00:00:00.000' AS DateTime), N'Available', CAST(871 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3929, N'8816811301', N'Automated 4thgeneration challenge', N'Bit expert shake boy hair. Spring any response loss effect day air. College office culture oil. Finally positive population hair hard. Heavy audience statement indeed. Report glass put even.', N'Technology', CAST(N'2007-03-01T00:00:00.000' AS DateTime), CAST(N'2006-06-19T00:00:00.000' AS DateTime), N'Available', CAST(67 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3930, N'6455245470', N'Open-source holistic definition', N'Serve age wife question sit television also. Participant audience class exist officer. Nice reality radio interest child together. Green place safe local.', N'Technology', CAST(N'2007-06-30T00:00:00.000' AS DateTime), CAST(N'1999-01-03T00:00:00.000' AS DateTime), N'Available', CAST(96 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3931, N'5022772360', N'Persistent holistic frame', N'Police let politics mention let century not. Him own church particularly. Color left raise beat.', N'Fiction', CAST(N'2014-05-09T00:00:00.000' AS DateTime), CAST(N'2005-09-07T00:00:00.000' AS DateTime), N'Available', CAST(984 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3932, N'3454055851', N'Expanded multi-tasking capacity', N'Board write author value. Lay question computer enjoy simply machine probably. Voice either respond effect agreement explain knowledge.', N'History', CAST(N'1988-01-10T00:00:00.000' AS DateTime), CAST(N'1981-08-14T00:00:00.000' AS DateTime), N'In Repair', CAST(308 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3933, N'6008939438', N'Realigned intangible hardware', N'Contain win play author prepare. Interesting leader explain guess order effort. Recent by environment indicate foot but we.', N'Fiction', CAST(N'2023-04-23T00:00:00.000' AS DateTime), CAST(N'2020-09-04T00:00:00.000' AS DateTime), N'Reserved', CAST(931 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3934, N'9177894125', N'Synergistic 24hour policy', N'Charge then painting wall soon majority staff. Agent face country effort notice. Compare prove choice street. Paper fish candidate effort impact. Fact foreign inside alone approach develop director.', N'Technology', CAST(N'1992-04-01T00:00:00.000' AS DateTime), CAST(N'1982-06-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(988 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3935, N'1424048631', N'Business-focused actuating concept', N'Stock thus analysis station always pattern subject. Eat focus whole raise lose treatment. Special role senior compare. Glass crime blood wind.', N'Fiction', CAST(N'1998-11-18T00:00:00.000' AS DateTime), CAST(N'1995-05-08T00:00:00.000' AS DateTime), N'Reserved', CAST(289 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3875, N'9949102770', N'Enhanced incremental Graphical User Interface', N'Television buy create science. Certain despite purpose candidate everybody them. Decide hotel behind light wear. Event bed thank within. Identify bill hard always picture society.', N'Fiction', CAST(N'2013-10-20T00:00:00.000' AS DateTime), CAST(N'2007-04-11T00:00:00.000' AS DateTime), N'In Repair', CAST(769 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3876, N'3494772216', N'De-engineered asymmetric workforce', N'Today amount Democrat understand military rather unit thank. Safe baby anyone. Strategy specific education race east. Industry animal happy huge natural during character middle.', N'Fiction', CAST(N'2017-07-27T00:00:00.000' AS DateTime), CAST(N'2009-09-06T00:00:00.000' AS DateTime), N'Reserved', CAST(353 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3877, N'3589604324', N'Customizable 24/7 service-desk', N'Same life civil western relate. Move herself old break same character support. Behind billion federal artist finally. Country six eight respond.', N'Technology', CAST(N'2022-06-02T00:00:00.000' AS DateTime), CAST(N'1984-07-25T00:00:00.000' AS DateTime), N'Reserved', CAST(82 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3878, N'1364801851', N'Synchronized object-oriented paradigm', N'Moment marriage study religious. Light occur lead response social finish certainly.', N'History', CAST(N'2001-09-17T00:00:00.000' AS DateTime), CAST(N'1999-03-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(246 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3879, N'2445205834', N'Cross-group methodical implementation', N'Way bill economic write woman material memory. Play sort across central. Him watch house friend. Professor door with office break issue fine. Instead defense window evidence.', N'Technology', CAST(N'2006-05-17T00:00:00.000' AS DateTime), CAST(N'2003-09-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(789 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3880, N'8447765213', N'Expanded leadingedge parallelism', N'Tell girl turn. Design similar kind. Add indeed way ok.', N'Science', CAST(N'2010-03-03T00:00:00.000' AS DateTime), CAST(N'1988-09-06T00:00:00.000' AS DateTime), N'Available', CAST(326 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3881, N'5094510639', N'Robust static forecast', N'Teach really cup couple. Interview across serve bad majority ground top. Candidate network great campaign environment or anything.', N'Fiction', CAST(N'1992-12-07T00:00:00.000' AS DateTime), CAST(N'1992-05-24T00:00:00.000' AS DateTime), N'In Repair', CAST(432 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3882, N'8902315540', N'Synergized incremental parallelism', N'Report present see write. Capital create another science save. Where down age tax everything often. How article practice morning response approach. Be also theory present least whom large.', N'Technology', CAST(N'1985-05-12T00:00:00.000' AS DateTime), CAST(N'1984-05-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(958 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3883, N'9763427967', N'Vision-oriented clear-thinking budgetary management', N'Several night risk parent mouth carry hope. Machine drop interesting leave. Send color forget of tree board. Time military agree soldier.', N'Technology', CAST(N'1986-10-16T00:00:00.000' AS DateTime), CAST(N'1981-11-11T00:00:00.000' AS DateTime), N'In Repair', CAST(265 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3884, N'7233474229', N'Innovative client-driven hub', N'Glass enjoy ago movement activity head political. International new seven free. Way cold go actually threat. Candidate mission job adult. Room defense own the sometimes. Never third miss short.', N'Non-Fiction', CAST(N'1999-07-28T00:00:00.000' AS DateTime), CAST(N'1998-03-25T00:00:00.000' AS DateTime), N'Reserved', CAST(483 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3885, N'4609897324', N'Total disintermediate policy', N'Religious send shake traditional friend. Tell kind last draw positive security. Significant remain firm person election summer. She new one central understand significant woman many.', N'Fiction', CAST(N'1984-08-24T00:00:00.000' AS DateTime), CAST(N'1983-01-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(828 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3886, N'8456718451', N'Implemented systematic website', N'Whose lot law look. Street hold course child decision catch. Body those toward hope even unit. Sit second protect that. Ball will position authority feel throw.', N'Non-Fiction', CAST(N'1998-12-10T00:00:00.000' AS DateTime), CAST(N'1994-02-09T00:00:00.000' AS DateTime), N'In Repair', CAST(764 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3887, N'2152274592', N'Team-oriented directional protocol', N'Move other ago during guy less. Meet though religious scientist. You provide bill stay wonder fear environment. Care range color.', N'Fiction', CAST(N'2014-07-22T00:00:00.000' AS DateTime), CAST(N'1981-02-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(861 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3888, N'4051580121', N'Universal content-based firmware', N'Teacher board term scene mention check. Student reach sign never all build. Increase wish green city. Third box pattern. Son room almost main.', N'Biography', CAST(N'1992-06-27T00:00:00.000' AS DateTime), CAST(N'1985-09-29T00:00:00.000' AS DateTime), N'Reserved', CAST(506 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3889, N'6870723186', N'Persevering homogeneous capacity', N'Standard rise effect. Wide series my lose. Suggest and during far anyone. Specific could eat receive. Risk continue manager. Under field well more open blue laugh.', N'Technology', CAST(N'1994-05-15T00:00:00.000' AS DateTime), CAST(N'1981-11-01T00:00:00.000' AS DateTime), N'Reserved', CAST(880 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3890, N'6948714326', N'Universal zero tolerance system engine', N'Although service then election degree avoid. Majority role scientist middle total trial. Mother political base each after interesting rather vote. Move site every protect expert.', N'Science', CAST(N'1989-01-03T00:00:00.000' AS DateTime), CAST(N'1985-06-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(437 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3891, N'2624738854', N'Enterprise-wide zero-defect alliance', N'Great expert sit behavior thought effect. Democratic growth pull decide theory. Strategy people skin paper agree. Risk four call few for. Degree pressure student name risk window conference.', N'Technology', CAST(N'2003-09-27T00:00:00.000' AS DateTime), CAST(N'1998-08-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(883 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3892, N'2011495576', N'Right-sized tertiary artificial intelligence', N'Individual old respond now. Might state beat where western American many everyone. Always budget life environmental test section. Season walk since trip media likely.', N'Science', CAST(N'2015-03-10T00:00:00.000' AS DateTime), CAST(N'1991-07-09T00:00:00.000' AS DateTime), N'In Repair', CAST(421 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3893, N'2827927128', N'Digitized motivating functionalities', N'Perhaps heart source. By quality whom especially grow about. Bag change hotel protect. Wife everything surface local human he room. Reduce interview modern condition candidate.', N'Technology', CAST(N'1998-11-19T00:00:00.000' AS DateTime), CAST(N'1995-09-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(530 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3894, N'9166574955', N'Universal local instruction set', N'Seek interview science. Industry imagine lose contain fine push success data. Price great charge lose. Nation born worker walk. Idea foot address skill cause character member ever.', N'History', CAST(N'2015-10-21T00:00:00.000' AS DateTime), CAST(N'1999-10-05T00:00:00.000' AS DateTime), N'In Repair', CAST(656 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3895, N'8740109368', N'Total system-worthy migration', N'Season hundred their. Force fly these return thing bad. Authority specific laugh mind hope maybe product. Little social player plant yeah above. Once skill at miss remember growth boy.', N'Science', CAST(N'2005-07-08T00:00:00.000' AS DateTime), CAST(N'1982-01-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(821 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3896, N'3403273728', N'Expanded logistical parallelism', N'Space two affect gas. Final bad maybe check city either. Small bag or. Kid heavy write operation analysis. Society again us charge such benefit fill.', N'Technology', CAST(N'1983-12-01T00:00:00.000' AS DateTime), CAST(N'1983-09-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(539 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3897, N'4396706632', N'Fully-configurable dynamic protocol', N'On use measure back country. Watch right agency interest use relationship point risk. Machine age party project there. Box car more. Perform century since over born school Congress.', N'Science', CAST(N'2018-04-08T00:00:00.000' AS DateTime), CAST(N'2002-12-29T00:00:00.000' AS DateTime), N'Available', CAST(956 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3898, N'8198869827', N'Networked non-volatile alliance', N'Without phone movement theory member red. Send everyone ever teach ago blue. Simple summer near push. Beautiful sit us write his treatment. News popular you. Save drug year some kid.', N'Non-Fiction', CAST(N'2009-09-05T00:00:00.000' AS DateTime), CAST(N'1983-09-12T00:00:00.000' AS DateTime), N'Available', CAST(729 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3899, N'6603988295', N'Enterprise-wide systemic encryption', N'Million ball civil affect manager partner. Day lay successful. About home beat century herself statement himself. Customer when cell respond trip night.', N'History', CAST(N'1991-07-06T00:00:00.000' AS DateTime), CAST(N'1988-02-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(587 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3900, N'5724773481', N'Right-sized zero-defect circuit', N'Low thing thank lawyer. Stop middle certain become find major author. Interesting occur campaign during above later. Report edge item responsibility. Yourself human like available.', N'Science', CAST(N'2002-05-17T00:00:00.000' AS DateTime), CAST(N'1985-02-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(533 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3901, N'5610865020', N'Grass-roots well-modulated firmware', N'Oil prove hour owner production occur law. Individual song size at value. Voice design hotel.', N'Biography', CAST(N'2013-06-13T00:00:00.000' AS DateTime), CAST(N'1985-11-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(683 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3902, N'5363813770', N'Multi-channeled clear-thinking product', N'Staff relate word drug late poor. Husband vote have effort on view. Worker business leader choose. Age successful score owner. Opportunity miss development turn country. Economy risk wonder.', N'History', CAST(N'2002-11-17T00:00:00.000' AS DateTime), CAST(N'1990-06-29T00:00:00.000' AS DateTime), N'In Repair', CAST(502 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3903, N'5279220626', N'Implemented 4thgeneration intranet', N'Think general commercial happy see entire. Represent surface material society course. Garden hundred raise interview hundred drop. Husband upon owner organization stand form leg.', N'Non-Fiction', CAST(N'1990-10-21T00:00:00.000' AS DateTime), CAST(N'1987-09-27T00:00:00.000' AS DateTime), N'Checked Out', CAST(451 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3936, N'6653318338', N'Configurable local access', N'Ground challenge enter think usually hope move. Top half back even improve. West per news industry.', N'History', CAST(N'1999-03-14T00:00:00.000' AS DateTime), CAST(N'1993-02-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(396 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3937, N'7267016836', N'Synergized homogeneous matrix', N'Explain just site enter son mouth buy. Away keep student seven.', N'Biography', CAST(N'2010-05-06T00:00:00.000' AS DateTime), CAST(N'2001-02-04T00:00:00.000' AS DateTime), N'Reserved', CAST(184 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3938, N'5739037831', N'Adaptive non-volatile alliance', N'System military head participant. Simple dog lose marriage. Support draw water herself. Understand machine force health option important audience. Have law institution.', N'Non-Fiction', CAST(N'2016-08-10T00:00:00.000' AS DateTime), CAST(N'1991-12-09T00:00:00.000' AS DateTime), N'In Repair', CAST(930 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3939, N'2263110896', N'Profit-focused hybrid artificial intelligence', N'Minute turn expert rest magazine. Model on tree message. Religious per enough certainly growth. Apply just everything action even friend. How wife let action north lawyer despite.', N'Technology', CAST(N'2001-11-17T00:00:00.000' AS DateTime), CAST(N'1998-02-21T00:00:00.000' AS DateTime), N'In Repair', CAST(112 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3940, N'4978678374', N'Object-based disintermediate superstructure', N'Ever difference drug ability same catch air. Gas office project voice. Trouble because both unit remain.', N'Technology', CAST(N'2012-11-01T00:00:00.000' AS DateTime), CAST(N'2009-10-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(429 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3941, N'7552441449', N'Centralized human-resource encryption', N'Since reason north water deal store play but. Popular south second commercial both sometimes open.', N'History', CAST(N'1980-04-09T00:00:00.000' AS DateTime), CAST(N'1980-01-06T00:00:00.000' AS DateTime), N'Available', CAST(749 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3942, N'2794058247', N'Distributed didactic concept', N'Write many one. Total second expect mission water or clearly. Follow actually attack view song read woman. Recognize become public focus. Defense area century arrive Republican spring return.', N'Science', CAST(N'1995-12-16T00:00:00.000' AS DateTime), CAST(N'1985-09-18T00:00:00.000' AS DateTime), N'Available', CAST(439 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3943, N'2958404262', N'Team-oriented regional orchestration', N'Bed world three rise worker yeah. Beat option process. Dinner quickly too level on finish street.', N'Non-Fiction', CAST(N'1992-12-21T00:00:00.000' AS DateTime), CAST(N'1981-11-03T00:00:00.000' AS DateTime), N'In Repair', CAST(514 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3944, N'9271936937', N'Focused analyzing firmware', N'Along stop involve yet. East kind decide baby a another. Service sell enter forward group head season task. His up pretty fund play true become. Recently majority case case paper party.', N'Non-Fiction', CAST(N'2014-09-08T00:00:00.000' AS DateTime), CAST(N'1993-03-27T00:00:00.000' AS DateTime), N'Checked Out', CAST(890 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3945, N'4012667186', N'Cloned multi-state throughput', N'Serve believe writer charge father list part. Beyond building short buy nice question crime. Agency anyone develop be point way agency.', N'Technology', CAST(N'2024-06-14T00:00:00.000' AS DateTime), CAST(N'2018-05-12T00:00:00.000' AS DateTime), N'Available', CAST(701 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3946, N'8691050625', N'Persevering system-worthy knowledge user', N'Discover race cold good thus. Half go blood interest watch. Through everyone agent car he family name account. Idea remain choose call soon.', N'Biography', CAST(N'1991-02-04T00:00:00.000' AS DateTime), CAST(N'1989-03-23T00:00:00.000' AS DateTime), N'In Repair', CAST(79 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3947, N'6060254212', N'Cross-platform transitional Internet solution', N'Outside enter simply dog car rather him. Nature family thing what lot floor. Enough stand anything fine young force since.', N'Fiction', CAST(N'2019-08-21T00:00:00.000' AS DateTime), CAST(N'2014-08-12T00:00:00.000' AS DateTime), N'Available', CAST(845 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3948, N'1960828509', N'Multi-channeled system-worthy hub', N'Reality behavior wind modern receive worker first. Prevent including behind memory appear participant. Boy baby worry seek debate pick political address. End matter half again party treatment.', N'History', CAST(N'1993-03-03T00:00:00.000' AS DateTime), CAST(N'1984-10-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(905 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3949, N'8961573729', N'Secured asymmetric implementation', N'Able administration call third size. Run us might notice kitchen serious report involve.', N'Fiction', CAST(N'1986-10-16T00:00:00.000' AS DateTime), CAST(N'1982-03-10T00:00:00.000' AS DateTime), N'Reserved', CAST(245 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3950, N'4707551407', N'Synchronized bottom-line conglomeration', N'Protect eat food treat group peace authority natural. Scene door might cell deep body street. Dream begin environmental approach public. Talk be must door region authority research.', N'Technology', CAST(N'1999-04-27T00:00:00.000' AS DateTime), CAST(N'1981-01-19T00:00:00.000' AS DateTime), N'Available', CAST(317 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3951, N'3158991140', N'Virtual heuristic open system', N'Carry human soldier fear poor successful much. Something describe soon protect fact. Police admit bring air. Figure true more daughter.', N'History', CAST(N'1983-09-15T00:00:00.000' AS DateTime), CAST(N'1982-06-15T00:00:00.000' AS DateTime), N'Available', CAST(454 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3952, N'2746716510', N'Progressive fresh-thinking time-frame', N'Use until account plant always. Occur agent establish. Put military bill something wait final pay. Everyone new message bill where. Responsibility analysis successful them. Mother tonight age serve.', N'Technology', CAST(N'2001-01-16T00:00:00.000' AS DateTime), CAST(N'1997-12-26T00:00:00.000' AS DateTime), N'In Repair', CAST(195 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3953, N'5579002634', N'Optional reciprocal matrix', N'Cup writer upon pay stand such. Compare whole check foreign man success. Race nation page reach contain. Billion those behind he win include election. Beautiful indicate child bad might.', N'Fiction', CAST(N'1999-11-09T00:00:00.000' AS DateTime), CAST(N'1989-02-19T00:00:00.000' AS DateTime), N'In Repair', CAST(975 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3954, N'7421816586', N'Exclusive cohesive migration', N'Most authority information record seem father money. Turn sit response. Government bank effort remain. Per away artist poor section will. Popular kid authority really realize security wide.', N'Biography', CAST(N'1998-07-19T00:00:00.000' AS DateTime), CAST(N'1992-01-27T00:00:00.000' AS DateTime), N'Checked Out', CAST(608 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3955, N'3974388301', N'Object-based disintermediate infrastructure', N'Always hour movie call keep. Candidate letter time home key attention require. Black building leader once.', N'Biography', CAST(N'2002-03-28T00:00:00.000' AS DateTime), CAST(N'1986-10-27T00:00:00.000' AS DateTime), N'Available', CAST(59 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3956, N'4471649572', N'Progressive maximized implementation', N'Certainly become end find. Very owner item out. Minute make early note while truth meeting. Anything catch less indicate child. Bank produce station. Another himself course majority his.', N'Technology', CAST(N'1985-07-04T00:00:00.000' AS DateTime), CAST(N'1984-11-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(790 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3957, N'6345554178', N'Devolved mobile synergy', N'Voice door season employee by wind type. Wall more evening serious than trade media manage. South which cup soon ask. Audience very skin. Bad local benefit Republican.', N'Fiction', CAST(N'2014-01-20T00:00:00.000' AS DateTime), CAST(N'1990-03-18T00:00:00.000' AS DateTime), N'In Repair', CAST(353 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3958, N'4769977895', N'Visionary reciprocal task-force', N'Affect drop democratic small road short. Skin civil anything yourself. Music outside group force southern. Gas choose sure company. Design determine half marriage both. History during form.', N'Science', CAST(N'1991-11-20T00:00:00.000' AS DateTime), CAST(N'1986-07-12T00:00:00.000' AS DateTime), N'In Repair', CAST(595 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3959, N'8175407532', N'User-centric demand-driven challenge', N'Professor night rise need challenge we open security. Admit sing laugh service us. Traditional soon though with lead check. You hand call from product recently. Social mission majority recently.', N'Technology', CAST(N'2003-01-06T00:00:00.000' AS DateTime), CAST(N'1988-10-28T00:00:00.000' AS DateTime), N'Reserved', CAST(952 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3960, N'6670892675', N'Persistent needs-based knowledge user', N'Power add really PM drug themselves know. Thus house enough improve situation. Only all tonight heart. As school customer current sound almost.', N'History', CAST(N'1991-07-02T00:00:00.000' AS DateTime), CAST(N'1982-03-20T00:00:00.000' AS DateTime), N'Reserved', CAST(711 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3961, N'1078780410', N'Cross-platform high-level collaboration', N'Win article bill call public down development relate. Reduce through level oil. Identify by land discussion skin myself. He consider of sometimes mission summer rich. Day month story.', N'Science', CAST(N'1994-12-28T00:00:00.000' AS DateTime), CAST(N'1988-03-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(918 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3962, N'1826329846', N'Fundamental static moderator', N'Listen loss fish. Kid with grow church. Pass common green. Condition quickly building rest. Education hair message pick call. Easy media or respond.', N'Non-Fiction', CAST(N'2024-03-14T00:00:00.000' AS DateTime), CAST(N'1993-03-11T00:00:00.000' AS DateTime), N'Available', CAST(346 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3963, N'7174387761', N'Synchronized content-based groupware', N'Right painting up student. See somebody need police reduce light. Eat happy after difficult song age once. Short police fire put Congress strong Mrs.', N'History', CAST(N'2000-05-27T00:00:00.000' AS DateTime), CAST(N'1985-04-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(888 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3964, N'5431548827', N'Visionary 3rdgeneration superstructure', N'Man carry student find certain rest. Science law city go agency. Cover red point material exactly. Myself than suddenly. Task agency miss. Western allow general discussion glass phone.', N'Fiction', CAST(N'2012-07-07T00:00:00.000' AS DateTime), CAST(N'1999-10-14T00:00:00.000' AS DateTime), N'In Repair', CAST(178 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3965, N'7970732970', N'Mandatory mobile knowledgebase', N'Sing rich myself determine place. Education doctor ahead audience choose individual. As reach continue. Arm political put hair be report key. None night Republican close institution.', N'History', CAST(N'1992-09-14T00:00:00.000' AS DateTime), CAST(N'1984-08-07T00:00:00.000' AS DateTime), N'Reserved', CAST(440 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3966, N'1210959393', N'User-friendly homogeneous architecture', N'Job my little public goal discover. Skill group trouble impact gas. Nothing raise third everything once save group. Perhaps watch admit move best.', N'Biography', CAST(N'1987-08-22T00:00:00.000' AS DateTime), CAST(N'1985-04-27T00:00:00.000' AS DateTime), N'Available', CAST(328 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3967, N'3971075892', N'Decentralized asymmetric knowledge user', N'Join against court remain. Decide despite we onto family him quality. Hundred put likely rather save.', N'History', CAST(N'2004-09-10T00:00:00.000' AS DateTime), CAST(N'2002-04-09T00:00:00.000' AS DateTime), N'Available', CAST(875 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3968, N'2925633508', N'Monitored bi-directional archive', N'Pattern offer perform no western accept energy southern. Walk eight election child church. Chair loss expert forget between.', N'Science', CAST(N'1997-07-10T00:00:00.000' AS DateTime), CAST(N'1986-04-24T00:00:00.000' AS DateTime), N'In Repair', CAST(302 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3969, N'7051607279', N'Team-oriented solution-oriented extranet', N'Parent seem box full. Above like room effort that. Call fight open would history modern star society. Product stay deal because.', N'Non-Fiction', CAST(N'2004-03-03T00:00:00.000' AS DateTime), CAST(N'1984-03-08T00:00:00.000' AS DateTime), N'Reserved', CAST(916 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3970, N'9463204758', N'Grass-roots grid-enabled service-desk', N'Else cup or school. Particularly daughter person message including behavior. Off hold imagine hit.', N'Technology', CAST(N'2014-03-13T00:00:00.000' AS DateTime), CAST(N'1980-08-27T00:00:00.000' AS DateTime), N'Available', CAST(379 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3971, N'1564130200', N'Configurable modular access', N'Role former white. Record deal fill size marriage care. Size beautiful television color thought.', N'Science', CAST(N'1996-10-27T00:00:00.000' AS DateTime), CAST(N'1992-06-12T00:00:00.000' AS DateTime), N'Available', CAST(557 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3972, N'5401262937', N'Profit-focused tangible challenge', N'Effect growth loss check. Speech suggest leave provide possible house go. Girl cut several relationship hold could look window. Brother still education case. Cause career music someone task.', N'Fiction', CAST(N'2015-11-27T00:00:00.000' AS DateTime), CAST(N'2007-07-23T00:00:00.000' AS DateTime), N'Reserved', CAST(832 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3973, N'5305068745', N'Extended scalable framework', N'Seem everyone of leave work. Measure rate medical above concern responsibility since. Water federal bit all language.', N'History', CAST(N'2023-10-10T00:00:00.000' AS DateTime), CAST(N'1990-08-13T00:00:00.000' AS DateTime), N'In Repair', CAST(980 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3974, N'8852144146', N'Multi-tiered human-resource groupware', N'Difficult teacher sort by note these western also. Human everyone only less use bar difference. Follow fear media course meet evidence.', N'Biography', CAST(N'2008-06-03T00:00:00.000' AS DateTime), CAST(N'1999-12-17T00:00:00.000' AS DateTime), N'In Repair', CAST(439 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3975, N'6456971399', N'Networked stable system engine', N'To model improve character around green beautiful white. Across audience explain our major huge few. Test certainly center task Mrs moment get. Much I I person green exactly quality consider.', N'Fiction', CAST(N'2002-01-24T00:00:00.000' AS DateTime), CAST(N'1989-12-14T00:00:00.000' AS DateTime), N'Reserved', CAST(341 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3976, N'1225458962', N'Re-engineered dedicated utilization', N'Computer pick today loss key woman. Mr grow modern president. Large voice no short live exist. City item training car also. Although group continue question role significant.', N'Technology', CAST(N'2016-09-09T00:00:00.000' AS DateTime), CAST(N'1985-01-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(233 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3977, N'6659176107', N'Ameliorated national protocol', N'College thought else this. Population agent computer key. Candidate about way seat clearly. More call job market keep hot. Space power table article. Sound avoid friend.', N'Non-Fiction', CAST(N'1982-09-09T00:00:00.000' AS DateTime), CAST(N'1981-06-30T00:00:00.000' AS DateTime), N'Reserved', CAST(261 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3978, N'9404359113', N'Universal logistical parallelism', N'With laugh family computer. Think stuff big American newspaper couple tend cup. Power major fast federal. Large hope stop wear.', N'Fiction', CAST(N'1986-07-22T00:00:00.000' AS DateTime), CAST(N'1981-02-05T00:00:00.000' AS DateTime), N'Reserved', CAST(698 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3979, N'4200368023', N'Realigned modular contingency', N'Television base how room focus fund nature. Building chance forget article. Situation scientist relate doctor operation space. Anything too write paper box because east.', N'Fiction', CAST(N'1997-12-24T00:00:00.000' AS DateTime), CAST(N'1987-09-12T00:00:00.000' AS DateTime), N'Available', CAST(437 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3980, N'5067678976', N'Stand-alone upward-trending functionalities', N'Something next difficult general only itself catch. Production street check long. Truth job interview ok.', N'Technology', CAST(N'1996-06-18T00:00:00.000' AS DateTime), CAST(N'1991-02-08T00:00:00.000' AS DateTime), N'Available', CAST(552 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3981, N'4453056444', N'Profound background knowledgebase', N'Course they vote always positive you. Lot plant line care fall whatever. Scientist smile reason maybe study reduce. Present Congress with section ready some someone left.', N'Science', CAST(N'1981-02-03T00:00:00.000' AS DateTime), CAST(N'1980-10-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(398 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3982, N'9840560802', N'Multi-layered discrete artificial intelligence', N'Voice operation energy across. News day pay price sing. Fire turn collection. Practice include it education about road too.', N'History', CAST(N'1993-10-20T00:00:00.000' AS DateTime), CAST(N'1985-02-24T00:00:00.000' AS DateTime), N'In Repair', CAST(90 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3983, N'7436020891', N'Customer-focused next generation analyzer', N'Most table individual. Military black contain staff. Improve guess left at think style.', N'History', CAST(N'2005-07-27T00:00:00.000' AS DateTime), CAST(N'1989-06-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(472 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3984, N'5242029223', N'Cross-group methodical artificial intelligence', N'Into reach trade. Will expect group threat. There billion attack hour. Kid with hope common office loss learn. Probably next air.', N'Technology', CAST(N'2005-12-28T00:00:00.000' AS DateTime), CAST(N'1984-10-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(746 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3985, N'6341733504', N'Future-proofed real-time productivity', N'Hotel remember fact resource. What among news series product cost.', N'Biography', CAST(N'2004-03-20T00:00:00.000' AS DateTime), CAST(N'2002-03-29T00:00:00.000' AS DateTime), N'Available', CAST(317 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3986, N'8985210127', N'Robust national policy', N'Up hand book. Feel individual add capital. Investment summer per sell dream pull. Hospital team price middle food add owner skill. Night store never gun. Back year local.', N'Fiction', CAST(N'2013-04-05T00:00:00.000' AS DateTime), CAST(N'1980-05-08T00:00:00.000' AS DateTime), N'Reserved', CAST(215 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3987, N'5997608451', N'Configurable motivating implementation', N'Weight none at cut offer. Step enjoy ten light toward this. Join production push less. Relate ahead rock would. Store claim up group everybody trouble. Wish usually appear agree officer.', N'Non-Fiction', CAST(N'2002-09-29T00:00:00.000' AS DateTime), CAST(N'1990-03-23T00:00:00.000' AS DateTime), N'In Repair', CAST(134 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3988, N'8412575148', N'Horizontal 3rdgeneration moratorium', N'Question knowledge job term name. Happen food image return response over hand show. School which try mission catch. Traditional high loss culture western reflect.', N'Non-Fiction', CAST(N'2002-10-30T00:00:00.000' AS DateTime), CAST(N'1992-06-08T00:00:00.000' AS DateTime), N'Available', CAST(371 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3989, N'1782656722', N'Re-contextualized incremental customer loyalty', N'Various notice successful strategy wrong budget machine. Me almost speech year. Ten sound despite along. Smile go happen catch.', N'Science', CAST(N'1994-12-30T00:00:00.000' AS DateTime), CAST(N'1987-09-04T00:00:00.000' AS DateTime), N'Reserved', CAST(132 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3990, N'2908432551', N'Networked mission-critical solution', N'Rich him beat girl forget police. Interest woman name firm. Truth body person standard new a. Any close reveal strategy toward.', N'Biography', CAST(N'1988-06-20T00:00:00.000' AS DateTime), CAST(N'1981-09-13T00:00:00.000' AS DateTime), N'In Repair', CAST(126 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3991, N'3091925529', N'Business-focused disintermediate monitoring', N'Sit police college per paper sound young. Call store beautiful alone water. Issue we effort should expect floor. Your fish should.', N'History', CAST(N'2007-10-25T00:00:00.000' AS DateTime), CAST(N'1983-02-11T00:00:00.000' AS DateTime), N'Available', CAST(629 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3992, N'4705433114', N'Sharable holistic support', N'Between yet room. Security common face seek however product. Chair century main everybody also physical get. Main live film bit network as. Community bag rule fall market.', N'Science', CAST(N'2006-02-28T00:00:00.000' AS DateTime), CAST(N'1987-11-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(457 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3993, N'9778106165', N'Universal multi-tasking concept', N'Son foreign among American head century control. Cold state clear concern care. Party manage on image customer yeah always. Sure hand Congress government ok else.', N'History', CAST(N'2009-06-23T00:00:00.000' AS DateTime), CAST(N'1984-04-06T00:00:00.000' AS DateTime), N'Available', CAST(249 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3994, N'1753215265', N'Public-key asymmetric interface', N'Number will three politics cell necessary happy reduce. Which especially approach reflect pick. Focus close score speech west.', N'Technology', CAST(N'1982-12-11T00:00:00.000' AS DateTime), CAST(N'1980-06-25T00:00:00.000' AS DateTime), N'Reserved', CAST(819 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3995, N'7998472648', N'Multi-lateral 3rdgeneration data-warehouse', N'House tough big drive black. Market she have along. Establish team full ok house season he. Good among word too. Much old matter major wall.', N'Technology', CAST(N'2010-01-17T00:00:00.000' AS DateTime), CAST(N'1995-01-11T00:00:00.000' AS DateTime), N'Available', CAST(785 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3996, N'4160892626', N'Function-based reciprocal frame', N'Whom contain fear training. Culture entire none TV whom. Black parent economy stage woman key be. Rate business poor gas art car.', N'Non-Fiction', CAST(N'1994-12-24T00:00:00.000' AS DateTime), CAST(N'1987-06-18T00:00:00.000' AS DateTime), N'In Repair', CAST(933 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3997, N'1731175533', N'Object-based attitude-oriented parallelism', N'Stay theory take short treat. Between bring bad remember. Another road perhaps before onto treatment left team. It soldier represent medical network office people. Special on once arrive fish worker.', N'Biography', CAST(N'2005-01-28T00:00:00.000' AS DateTime), CAST(N'1997-04-10T00:00:00.000' AS DateTime), N'In Repair', CAST(806 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3998, N'3591163147', N'Versatile bottom-line initiative', N'Do stock report all need visit hope. Pm question once record ten not. On bill card place war development campaign. May building thus debate above thus focus. Lawyer yet base nice.', N'History', CAST(N'2009-06-19T00:00:00.000' AS DateTime), CAST(N'1998-11-11T00:00:00.000' AS DateTime), N'In Repair', CAST(996 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (3999, N'4777733471', N'Vision-oriented web-enabled algorithm', N'Carry go ready kid better. Item end order yes. Section just population station scientist indicate. Close wife left career simply. Same age see smile. Source government win anything.', N'Biography', CAST(N'2020-10-03T00:00:00.000' AS DateTime), CAST(N'2019-09-06T00:00:00.000' AS DateTime), N'Available', CAST(496 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4000, N'1541760298', N'Cloned dynamic throughput', N'Have approach end cause. True before investment over level health. Option gas two big must. Back which ok into.', N'Technology', CAST(N'1997-12-24T00:00:00.000' AS DateTime), CAST(N'1982-12-18T00:00:00.000' AS DateTime), N'Reserved', CAST(509 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4001, N'3147099145', N'Persevering non-volatile infrastructure', N'Story establish want bill somebody. Physical whatever after woman American shake. Expect expert difference I. Him teach us attention.', N'Biography', CAST(N'2004-06-16T00:00:00.000' AS DateTime), CAST(N'2000-08-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(645 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4002, N'6117921885', N'Switchable motivating product', N'Outside buy south movement according land purpose. Part see including at wife economy give couple. Explain evidence new describe range upon piece. Morning before reality board per.', N'Biography', CAST(N'1986-01-27T00:00:00.000' AS DateTime), CAST(N'1981-03-27T00:00:00.000' AS DateTime), N'Available', CAST(862 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4003, N'8644996407', N'Up-sized modular knowledgebase', N'Around road less last chance with. Instead never officer institution yes. Indeed long cold ball. Strategy she day itself.', N'Technology', CAST(N'1998-11-20T00:00:00.000' AS DateTime), CAST(N'1991-04-05T00:00:00.000' AS DateTime), N'Available', CAST(704 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4004, N'6923759488', N'Ameliorated regional open architecture', N'Discussion dream section sit government. Performance safe current wear might. New strong drive hair set easy. Parent hospital ago point memory win property.', N'Technology', CAST(N'2008-05-25T00:00:00.000' AS DateTime), CAST(N'1990-12-04T00:00:00.000' AS DateTime), N'Available', CAST(194 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4005, N'4582971376', N'Persistent foreground artificial intelligence', N'Movie foreign expect gas gun. Save number recognize operation system. Seek idea space moment other respond.', N'Technology', CAST(N'1981-09-08T00:00:00.000' AS DateTime), CAST(N'1981-05-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(546 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4006, N'8975798532', N'Advanced analyzing framework', N'Feeling step too him. Listen in level this. Deep record detail condition and. Particular group quickly she.', N'Technology', CAST(N'2010-07-10T00:00:00.000' AS DateTime), CAST(N'1984-06-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(891 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4007, N'6203836325', N'Decentralized zero administration task-force', N'Happen environment discuss star beat around cost. Police respond white. Everyone local today establish trip page call thing.', N'Non-Fiction', CAST(N'2019-02-05T00:00:00.000' AS DateTime), CAST(N'2017-11-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(345 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4008, N'5809751224', N'Inverse transitional service-desk', N'Thing face chair. Painting effort kind wife. Likely personal tend strategy end above guy administration. Rest American doctor black truth work treat.', N'Non-Fiction', CAST(N'2017-12-04T00:00:00.000' AS DateTime), CAST(N'2006-11-23T00:00:00.000' AS DateTime), N'Available', CAST(882 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4009, N'8774126172', N'Future-proofed tangible process improvement', N'Per ability process imagine. Discover sort source room surface commercial.', N'Science', CAST(N'2022-06-14T00:00:00.000' AS DateTime), CAST(N'1999-12-26T00:00:00.000' AS DateTime), N'Available', CAST(598 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4010, N'1999821350', N'Horizontal 4thgeneration moderator', N'Him final then alone cultural conference that. South within top investment. Employee population wall people. Yard put fund glass. Case issue mission. Level spring specific notice continue hour.', N'Non-Fiction', CAST(N'1985-11-20T00:00:00.000' AS DateTime), CAST(N'1983-12-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(998 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4011, N'9593349442', N'Multi-layered holistic contingency', N'Leader full indeed. Over decade inside plant include drop. Worry understand thousand without issue wind. Person myself long feeling.', N'Science', CAST(N'2005-10-20T00:00:00.000' AS DateTime), CAST(N'2000-06-26T00:00:00.000' AS DateTime), N'Reserved', CAST(849 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4012, N'2503310811', N'Object-based even-keeled task-force', N'Wind structure generation Republican. Player politics bit prepare interview throughout glass. Generation call economy instead newspaper play.', N'Fiction', CAST(N'2014-12-29T00:00:00.000' AS DateTime), CAST(N'1998-10-16T00:00:00.000' AS DateTime), N'In Repair', CAST(914 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4013, N'6977053700', N'Multi-lateral radical throughput', N'Task buy phone. First send art win break provide place spring. Challenge there store officer various hear ten. My their add behavior.', N'Technology', CAST(N'2023-02-09T00:00:00.000' AS DateTime), CAST(N'2008-02-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(90 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4014, N'7086187600', N'Centralized hybrid data-warehouse', N'Plan from face program walk trouble. Modern public south current water difference. Campaign model especially ball south. Issue five use sort room team. Nothing help evidence spring.', N'Technology', CAST(N'2024-02-18T00:00:00.000' AS DateTime), CAST(N'2018-01-02T00:00:00.000' AS DateTime), N'Available', CAST(63 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4015, N'7743190869', N'Synergistic bandwidth-monitored success', N'Few them within similar single center. Resource majority much similar mean remain available. Hospital feel compare visit different.', N'Science', CAST(N'2017-11-24T00:00:00.000' AS DateTime), CAST(N'2017-07-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(86 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4016, N'6574826098', N'Organic foreground approach', N'Couple green run eye will. Now low serious manager in kind. Later hair strategy and full. Here each store weight above. Too truth skin. Factor television attention result free. His always may tell.', N'Non-Fiction', CAST(N'1984-01-12T00:00:00.000' AS DateTime), CAST(N'1981-04-07T00:00:00.000' AS DateTime), N'Available', CAST(505 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4017, N'4936800223', N'Implemented local standardization', N'Possible interesting everyone receive front case western four. Reduce deep against public worry development source. Think price provide image.', N'Technology', CAST(N'2008-01-09T00:00:00.000' AS DateTime), CAST(N'1992-12-13T00:00:00.000' AS DateTime), N'Available', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4018, N'3429688333', N'Cloned motivating orchestration', N'Expect young Mr expert hundred might church. Cup company situation help respond us. Trial clear call difference yes story despite. Economic newspaper coach set decision language manager.', N'Fiction', CAST(N'1991-08-16T00:00:00.000' AS DateTime), CAST(N'1982-06-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(937 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4019, N'3287031798', N'Virtual optimizing secured line', N'Both theory send top church or. Almost attention six leader piece family available. Friend Mr everything hard start. Wonder word allow.', N'Science', CAST(N'2007-10-05T00:00:00.000' AS DateTime), CAST(N'2005-11-18T00:00:00.000' AS DateTime), N'Reserved', CAST(266 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4020, N'3824920095', N'Networked intermediate interface', N'Stuff must Republican minute page conference. Camera early past option hot feel imagine. Whole what experience perform tend class door prevent. Offer have street.', N'Technology', CAST(N'2000-05-07T00:00:00.000' AS DateTime), CAST(N'1999-12-31T00:00:00.000' AS DateTime), N'Reserved', CAST(732 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4021, N'3896293098', N'Vision-oriented multi-state data-warehouse', N'Somebody inside only similar allow foreign. Get walk prove card alone test. Adult so reach. Student approach study music success. Between among explain time.', N'Science', CAST(N'2004-09-06T00:00:00.000' AS DateTime), CAST(N'2002-01-02T00:00:00.000' AS DateTime), N'In Repair', CAST(323 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4022, N'1243102904', N'Optional methodical encoding', N'Manage red that leg away artist relationship. Crime form affect speak institution popular. Standard speak specific cultural what she.', N'Non-Fiction', CAST(N'1987-05-12T00:00:00.000' AS DateTime), CAST(N'1982-05-03T00:00:00.000' AS DateTime), N'Available', CAST(324 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4023, N'1912857639', N'Re-engineered high-level neural-net', N'Executive today past make. Both will method enter certainly smile at.', N'Science', CAST(N'1989-03-10T00:00:00.000' AS DateTime), CAST(N'1980-10-24T00:00:00.000' AS DateTime), N'In Repair', CAST(822 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4024, N'6346831967', N'Integrated human-resource algorithm', N'Third manage onto account return. Term street worker measure current draw. Thing turn shoulder.', N'History', CAST(N'2020-08-07T00:00:00.000' AS DateTime), CAST(N'1982-12-12T00:00:00.000' AS DateTime), N'In Repair', CAST(609 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4025, N'4596282070', N'Business-focused human-resource leverage', N'Point always window guess rather. Reason property talk during prepare range pattern treatment. Each its partner treat above spend.', N'Technology', CAST(N'1994-10-29T00:00:00.000' AS DateTime), CAST(N'1984-09-04T00:00:00.000' AS DateTime), N'Reserved', CAST(283 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4026, N'2064983858', N'Adaptive actuating analyzer', N'Week bad consider together food water. Station animal trial.', N'Technology', CAST(N'1993-01-10T00:00:00.000' AS DateTime), CAST(N'1982-02-27T00:00:00.000' AS DateTime), N'Reserved', CAST(472 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4027, N'4630943896', N'Decentralized global collaboration', N'Close instead one college just off standard. Word chance step appear. Education player eat benefit cup. Occur data identify. Book huge order tree fill. Tell tell defense.', N'Science', CAST(N'2007-02-21T00:00:00.000' AS DateTime), CAST(N'1992-10-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(394 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4028, N'4399239913', N'Universal asymmetric flexibility', N'Government seem hair thank near environmental. Wrong happy source. May also mouth similar morning. Wind of want discover day drop effort.', N'History', CAST(N'1981-03-05T00:00:00.000' AS DateTime), CAST(N'1980-10-08T00:00:00.000' AS DateTime), N'In Repair', CAST(597 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4029, N'4058315598', N'Networked upward-trending complexity', N'Institution red care method view reveal. Series lay world. Move accept field. Sense summer smile. Be I heavy dream hit mouth how. Six American Mrs live rich.', N'Technology', CAST(N'2000-05-04T00:00:00.000' AS DateTime), CAST(N'1986-11-01T00:00:00.000' AS DateTime), N'In Repair', CAST(265 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4030, N'5988763962', N'Ameliorated client-driven paradigm', N'Along line order discussion alone around religious. Across point wrong develop about though. Common though wind stage. Himself leave buy no industry meeting. Put strong for why.', N'History', CAST(N'1986-09-10T00:00:00.000' AS DateTime), CAST(N'1985-11-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(285 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4031, N'6321040852', N'Universal contextually-based ability', N'Ahead away test actually. Large inside choice seem tonight. Others commercial character positive box one. Professor wonder condition major major claim.', N'Technology', CAST(N'2005-07-16T00:00:00.000' AS DateTime), CAST(N'1990-08-05T00:00:00.000' AS DateTime), N'In Repair', CAST(436 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4032, N'1373397789', N'Synergized exuding data-warehouse', N'Agent beyond short plan. Teach suggest compare generation. Most stock stage success their relate score. Degree myself language data theory determine watch military. Above however meeting investment.', N'Fiction', CAST(N'2020-08-29T00:00:00.000' AS DateTime), CAST(N'1992-05-08T00:00:00.000' AS DateTime), N'Available', CAST(66 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4033, N'2987997419', N'Public-key context-sensitive parallelism', N'Ahead really cost kind read fact citizen. Health agreement involve would blood natural owner. Relate sound laugh identify according. Pull mean expert peace entire.', N'Biography', CAST(N'2017-12-19T00:00:00.000' AS DateTime), CAST(N'1984-05-02T00:00:00.000' AS DateTime), N'In Repair', CAST(490 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4034, N'9391684600', N'Stand-alone asymmetric analyzer', N'Concern teacher write somebody traditional off. Add guy election start two least own. Movement lot right always instead because. Such bit southern accept summer.', N'Biography', CAST(N'2018-05-17T00:00:00.000' AS DateTime), CAST(N'1987-03-30T00:00:00.000' AS DateTime), N'Available', CAST(303 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4035, N'9285884962', N'Right-sized mobile functionalities', N'Service security than stop. Ahead station call send social. Education people party chance per physical. Agency dinner camera. How us technology population all start strategy military.', N'Science', CAST(N'1982-12-23T00:00:00.000' AS DateTime), CAST(N'1980-10-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(94 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4036, N'9754138489', N'Vision-oriented 5thgeneration project', N'Act forward assume become environment. Life street cover particular available. Rather every individual rich something similar feeling draw.', N'Technology', CAST(N'1983-03-15T00:00:00.000' AS DateTime), CAST(N'1980-03-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(63 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4037, N'5067149018', N'Business-focused background access', N'Road guess suffer. Letter become player which himself just region. Maybe choose there boy southern.', N'Fiction', CAST(N'2019-03-29T00:00:00.000' AS DateTime), CAST(N'1992-11-12T00:00:00.000' AS DateTime), N'In Repair', CAST(430 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4038, N'1135330618', N'Down-sized demand-driven process improvement', N'Friend man prepare keep about trouble walk play. Direction space sense father however store morning two. Begin kitchen activity expect anyone nation. Hold receive Mr behind.', N'Fiction', CAST(N'1990-08-29T00:00:00.000' AS DateTime), CAST(N'1988-09-29T00:00:00.000' AS DateTime), N'Checked Out', CAST(516 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4039, N'8617609199', N'Assimilated eco-centric concept', N'Nearly responsibility with product. Through want kitchen base accept. Personal price international notice together table. Law rest either hot religious. And serious left help team professor.', N'Fiction', CAST(N'2014-08-28T00:00:00.000' AS DateTime), CAST(N'2014-01-20T00:00:00.000' AS DateTime), N'Reserved', CAST(841 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4040, N'9268467717', N'Business-focused actuating analyzer', N'Back everything station top me democratic. Paper kind staff. Southern air talk later. Wife while Mr direction west.', N'Non-Fiction', CAST(N'2022-12-13T00:00:00.000' AS DateTime), CAST(N'2020-03-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(646 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4041, N'7663031134', N'Expanded system-worthy matrices', N'Push all win among billion. Defense establish turn explain. Responsibility world ten current citizen prevent.', N'Science', CAST(N'2007-05-04T00:00:00.000' AS DateTime), CAST(N'2007-04-08T00:00:00.000' AS DateTime), N'Available', CAST(104 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4042, N'5619284670', N'Down-sized zero-defect strategy', N'Best myself democratic whatever beat administration camera. Mean enjoy occur example check result both. Establish read probably same quickly shake.', N'Technology', CAST(N'1993-06-27T00:00:00.000' AS DateTime), CAST(N'1986-01-07T00:00:00.000' AS DateTime), N'Available', CAST(52 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4043, N'1545326120', N'Ergonomic transitional data-warehouse', N'Serious film just positive perhaps difference. Yeah station color strategy east trade. Rather someone near hope may film she.', N'Non-Fiction', CAST(N'1983-06-14T00:00:00.000' AS DateTime), CAST(N'1983-03-08T00:00:00.000' AS DateTime), N'Reserved', CAST(626 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4044, N'3919851441', N'Customer-focused homogeneous concept', N'Good heavy participant. Identify item fall across improve. East nor energy seven voice unit country. Some ago worker hit all throughout describe. Beat yeah dinner. Trial tax director care.', N'Biography', CAST(N'2004-04-07T00:00:00.000' AS DateTime), CAST(N'1994-09-26T00:00:00.000' AS DateTime), N'Available', CAST(700 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4045, N'2920983124', N'Fundamental optimizing access', N'Course debate director very success road forget. During economic image total share partner.', N'Non-Fiction', CAST(N'1987-06-18T00:00:00.000' AS DateTime), CAST(N'1984-02-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(360 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4046, N'4271594994', N'Ameliorated intermediate concept', N'National federal recently. West so air husband moment if. Site truth may mother economic north now. As machine sea.', N'Fiction', CAST(N'1995-08-14T00:00:00.000' AS DateTime), CAST(N'1989-02-25T00:00:00.000' AS DateTime), N'In Repair', CAST(930 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4047, N'8302303280', N'Operative 6thgeneration task-force', N'Improve long high work theory film opportunity. Include green decade prepare.', N'Fiction', CAST(N'2017-03-05T00:00:00.000' AS DateTime), CAST(N'2005-06-29T00:00:00.000' AS DateTime), N'In Repair', CAST(904 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4048, N'2777481284', N'Public-key reciprocal hub', N'Expert issue consider dream quickly piece. Fly professor medical. May push and generation. Either like finally girl. Nearly star effect whose.', N'History', CAST(N'1988-08-01T00:00:00.000' AS DateTime), CAST(N'1982-03-19T00:00:00.000' AS DateTime), N'Reserved', CAST(108 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4049, N'9447749649', N'Operative analyzing standardization', N'Order know decide. Analysis leader not ever career seek. According eight phone box suddenly agent. Book one dark.', N'Fiction', CAST(N'1991-07-16T00:00:00.000' AS DateTime), CAST(N'1980-07-05T00:00:00.000' AS DateTime), N'In Repair', CAST(214 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4050, N'2968007414', N'Managed mission-critical definition', N'Century media seem campaign world. Imagine admit visit hope. Point agreement camera film foreign room nation. Likely case religious usually behind thing. Network say after kind staff doctor role.', N'Non-Fiction', CAST(N'2000-01-26T00:00:00.000' AS DateTime), CAST(N'1994-06-24T00:00:00.000' AS DateTime), N'Reserved', CAST(930 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4051, N'2944509890', N'Configurable multimedia model', N'Available both several put central. Memory consumer feel everything scientist poor now. Civil inside deal pull once occur.', N'History', CAST(N'2023-07-12T00:00:00.000' AS DateTime), CAST(N'1983-01-23T00:00:00.000' AS DateTime), N'Available', CAST(768 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4052, N'7844570341', N'Reactive empowering product', N'Push president throughout sister listen anything allow. Nothing keep over. Create late role doctor life road candidate. No change area professor. Everything pick four fire season bank company.', N'Biography', CAST(N'1981-04-21T00:00:00.000' AS DateTime), CAST(N'1980-09-17T00:00:00.000' AS DateTime), N'In Repair', CAST(403 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4053, N'6583751829', N'Multi-tiered global matrix', N'Must west force according conference history. Everyone couple ten image. Magazine amount mother plan industry business. Smile check finish seem teach. Room build raise our home. Stop oil second past.', N'Science', CAST(N'1996-10-15T00:00:00.000' AS DateTime), CAST(N'1994-10-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(190 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4054, N'6953284787', N'Total scalable complexity', N'Particularly community only drive rise foreign market structure. Space cell table yes. Single our community fill society set. Audience time control others.', N'Biography', CAST(N'1989-08-05T00:00:00.000' AS DateTime), CAST(N'1984-01-08T00:00:00.000' AS DateTime), N'Available', CAST(124 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4055, N'3174353251', N'Realigned zero tolerance portal', N'Least white billion. Rock great stock although food step wish. Dinner drop rich of hour than.', N'History', CAST(N'2001-10-03T00:00:00.000' AS DateTime), CAST(N'1980-07-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(128 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4056, N'3425043400', N'Synergized heuristic system engine', N'These need address rate bed gas. Military specific artist great short quickly. Expect hit federal choose.', N'Science', CAST(N'1987-08-19T00:00:00.000' AS DateTime), CAST(N'1983-03-23T00:00:00.000' AS DateTime), N'In Repair', CAST(148 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4057, N'4834934407', N'Multi-lateral foreground product', N'Happy themselves arm performance stock whether hand. Group employee letter word before. Notice hour movement already. Population hold represent machine.', N'Biography', CAST(N'1999-01-10T00:00:00.000' AS DateTime), CAST(N'1991-03-21T00:00:00.000' AS DateTime), N'Checked Out', CAST(922 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4058, N'6080458540', N'User-centric system-worthy encoding', N'Our own ten effort win its. International article yard. Budget specific policy official size sport. Mention way brother production difference other first. Address agent onto security any.', N'Fiction', CAST(N'2012-02-08T00:00:00.000' AS DateTime), CAST(N'2010-09-12T00:00:00.000' AS DateTime), N'Reserved', CAST(377 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4059, N'8715162283', N'Programmable full-range alliance', N'Defense to remember us for less. Decade old here society tax everything laugh. Along responsibility seek success. Table just call western. Truth receive almost culture.', N'Non-Fiction', CAST(N'1990-09-30T00:00:00.000' AS DateTime), CAST(N'1987-06-27T00:00:00.000' AS DateTime), N'In Repair', CAST(594 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4060, N'5459820648', N'Team-oriented logistical data-warehouse', N'Community action season before once against information. Parent everything human reason movie. Ok among cause may east while include.', N'Fiction', CAST(N'1994-08-14T00:00:00.000' AS DateTime), CAST(N'1993-11-05T00:00:00.000' AS DateTime), N'In Repair', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4061, N'6308295113', N'Compatible incremental success', N'Only face claim. Defense about stay police process moment key return. You home continue mind mention. Guess seat officer page arrive everybody will cause. Final wife meet box.', N'Biography', CAST(N'1984-07-06T00:00:00.000' AS DateTime), CAST(N'1980-05-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(766 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4062, N'9660246348', N'Multi-layered 3rdgeneration ability', N'Reflect including film practice dream line phone. Building project science director between. Weight kind place.', N'Biography', CAST(N'2001-10-13T00:00:00.000' AS DateTime), CAST(N'1987-03-04T00:00:00.000' AS DateTime), N'Available', CAST(142 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4063, N'5592976562', N'De-engineered solution-oriented infrastructure', N'Glass account theory age computer. Consumer including operation time. Trial source security world. Positive standard interesting season game indeed agreement. Social catch decision.', N'Technology', CAST(N'1996-07-12T00:00:00.000' AS DateTime), CAST(N'1992-11-01T00:00:00.000' AS DateTime), N'In Repair', CAST(260 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4064, N'8864128810', N'Integrated maximized middleware', N'Support focus organization within rock market clear. Such important around recent now. Own pick throw leave. Under statement camera exist up. Catch TV prepare war capital.', N'Science', CAST(N'2024-05-29T00:00:00.000' AS DateTime), CAST(N'1991-04-29T00:00:00.000' AS DateTime), N'Checked Out', CAST(626 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4065, N'5375880352', N'Implemented non-volatile throughput', N'Cover report to add grow music. Usually nearly board pressure good Mrs nor. Suggest save third today. For might real us. Act training nothing reveal opportunity song.', N'Science', CAST(N'1992-11-22T00:00:00.000' AS DateTime), CAST(N'1986-11-10T00:00:00.000' AS DateTime), N'Available', CAST(899 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4066, N'4841753384', N'Universal grid-enabled project', N'Loss popular low let. Break list could magazine consumer. Always character teach. To both may. Beyond poor through book. Paper return near expect herself suffer.', N'Non-Fiction', CAST(N'1984-03-12T00:00:00.000' AS DateTime), CAST(N'1983-08-08T00:00:00.000' AS DateTime), N'Checked Out', CAST(385 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4067, N'8527503557', N'Cross-group dynamic analyzer', N'Think natural early able eat argue fish hit. Into during service so. Sing law put rich. Foreign moment knowledge nice. Medical training ground wear coach.', N'Technology', CAST(N'2020-11-18T00:00:00.000' AS DateTime), CAST(N'2013-08-18T00:00:00.000' AS DateTime), N'Available', CAST(812 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4068, N'4020022787', N'Diverse clear-thinking methodology', N'Really once person parent human even local. Fall if term provide believe authority.', N'Technology', CAST(N'2012-08-08T00:00:00.000' AS DateTime), CAST(N'1982-05-12T00:00:00.000' AS DateTime), N'In Repair', CAST(938 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4069, N'2847902504', N'Persevering non-volatile hardware', N'Human listen assume none wait. Financial say hit majority along challenge discover. Upon fire plan husband drug. Fund third senior. Plan model deal positive million.', N'Science', CAST(N'2002-04-20T00:00:00.000' AS DateTime), CAST(N'1988-01-26T00:00:00.000' AS DateTime), N'Reserved', CAST(293 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4070, N'7330645131', N'Self-enabling encompassing benchmark', N'Thought system visit store day. Mention whole speak in. Meeting become behind property me. Us grow next left true.', N'Biography', CAST(N'2009-07-21T00:00:00.000' AS DateTime), CAST(N'2008-07-02T00:00:00.000' AS DateTime), N'Available', CAST(327 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4071, N'2873410227', N'Multi-layered leadingedge data-warehouse', N'Conference even girl above. Never conference often get job skill. With fill serve mouth lay ahead. Itself nice many.', N'History', CAST(N'1985-11-06T00:00:00.000' AS DateTime), CAST(N'1984-12-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(835 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4072, N'3873749351', N'Networked directional database', N'Society drop able guess. Mean candidate suffer seek whole fund rule less. Billion wide interest authority forward. Difficult on Congress sport society.', N'History', CAST(N'2006-09-13T00:00:00.000' AS DateTime), CAST(N'1984-10-13T00:00:00.000' AS DateTime), N'Available', CAST(225 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4073, N'8616303005', N'Progressive national approach', N'Within call involve miss activity quality recently. Kid oil right red book than. Create everybody involve note hair smile cut.', N'Non-Fiction', CAST(N'2024-12-24T00:00:00.000' AS DateTime), CAST(N'2005-05-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(860 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4074, N'5622805448', N'Compatible mission-critical array', N'Life parent wear impact address. Money president under smile off hospital customer seven. Three later black every PM.', N'Fiction', CAST(N'2019-09-16T00:00:00.000' AS DateTime), CAST(N'1992-08-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(87 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4075, N'5547401055', N'Open-source disintermediate info-mediaries', N'Write bring pull fear entire authority. Outside game father strong action can less main.', N'Technology', CAST(N'1996-12-23T00:00:00.000' AS DateTime), CAST(N'1992-05-05T00:00:00.000' AS DateTime), N'Available', CAST(589 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4076, N'4905845001', N'Universal empowering adapter', N'New science determine think. Some or if push happen. Mean pass serious general. Meet yeah girl score authority. Trip you avoid remain candidate owner.', N'Technology', CAST(N'1995-02-18T00:00:00.000' AS DateTime), CAST(N'1986-02-02T00:00:00.000' AS DateTime), N'In Repair', CAST(779 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4077, N'5991236202', N'Reduced national moratorium', N'Type room share conference road. Place news store head challenge according teacher. Leader dark star focus act. Field commercial degree natural toward worker free state.', N'Science', CAST(N'2008-08-22T00:00:00.000' AS DateTime), CAST(N'1991-08-19T00:00:00.000' AS DateTime), N'In Repair', CAST(477 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4078, N'3940013416', N'Versatile dynamic adapter', N'Myself resource wear society perhaps. Growth way clearly forget arm. Bank you receive order. Wear partner much task memory walk. Decade picture daughter American term series budget.', N'Science', CAST(N'1992-10-02T00:00:00.000' AS DateTime), CAST(N'1984-09-24T00:00:00.000' AS DateTime), N'In Repair', CAST(981 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4079, N'6840055921', N'Fundamental client-driven groupware', N'Type continue at far resource. Single degree water main street. Student step down customer nation around claim. Rule do wish budget place. Item per thousand together.', N'Biography', CAST(N'1983-01-25T00:00:00.000' AS DateTime), CAST(N'1982-01-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(830 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4080, N'5774391841', N'Advanced optimizing conglomeration', N'Hundred road agree car design myself sense. It lot thousand better believe big. Outside girl within eye task month.', N'Technology', CAST(N'2007-04-29T00:00:00.000' AS DateTime), CAST(N'2005-06-25T00:00:00.000' AS DateTime), N'In Repair', CAST(777 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4081, N'5678761042', N'Proactive explicit policy', N'Decision guess score gun too among. Guy find quality common. Political into hit join. Cost operation quite great also. Character past local always general for.', N'History', CAST(N'2022-11-20T00:00:00.000' AS DateTime), CAST(N'2018-07-29T00:00:00.000' AS DateTime), N'Available', CAST(426 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4082, N'6807072749', N'Mandatory eco-centric Graphic Interface', N'Other could find bad condition though. Exist it reach thank each night again outside. Growth star whatever she throughout likely also.', N'Technology', CAST(N'2014-01-06T00:00:00.000' AS DateTime), CAST(N'2000-05-23T00:00:00.000' AS DateTime), N'Reserved', CAST(841 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4083, N'5922307457', N'Programmable user-facing groupware', N'Hit material they including section hotel travel idea. Region next current actually picture. Ask participant much. Determine something paper field between much thank.', N'Non-Fiction', CAST(N'1984-07-04T00:00:00.000' AS DateTime), CAST(N'1982-04-08T00:00:00.000' AS DateTime), N'Reserved', CAST(637 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4084, N'9208716102', N'Enterprise-wide next generation middleware', N'Job notice eye perhaps drug during hit. Choose imagine environment give job. Already write degree. Stage industry six check. Special few important cause garden also various.', N'Biography', CAST(N'2016-10-07T00:00:00.000' AS DateTime), CAST(N'2000-07-17T00:00:00.000' AS DateTime), N'Available', CAST(109 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4085, N'4722611523', N'Intuitive full-range workforce', N'Green people throughout business act near expert. Address color anyone fund. Same morning who test magazine modern recognize. South wind relate art should along daughter.', N'Non-Fiction', CAST(N'2010-06-06T00:00:00.000' AS DateTime), CAST(N'2007-12-16T00:00:00.000' AS DateTime), N'In Repair', CAST(210 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4086, N'9116784268', N'Profit-focused 24hour analyzer', N'Across various visit already. See early there treat. Answer class people score vote yeah. Vote drug later mouth remain stop. Be church now well. Site entire cover two town enough those.', N'Biography', CAST(N'2014-11-01T00:00:00.000' AS DateTime), CAST(N'1996-11-29T00:00:00.000' AS DateTime), N'Available', CAST(750 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4087, N'2013270529', N'Streamlined systematic Graphical User Interface', N'Interesting be child hour. Develop phone window. Develop long measure our. Risk whose method hope marriage drive. Small up yard sport similar might own. Start image figure beautiful late.', N'Biography', CAST(N'2010-07-02T00:00:00.000' AS DateTime), CAST(N'1982-07-05T00:00:00.000' AS DateTime), N'In Repair', CAST(756 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4088, N'3957477014', N'Proactive even-keeled matrices', N'Start middle writer. Choose memory senior sister up. Yourself and as civil reduce. Analysis human consumer trouble.', N'Biography', CAST(N'1981-01-07T00:00:00.000' AS DateTime), CAST(N'1980-10-11T00:00:00.000' AS DateTime), N'Reserved', CAST(260 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4089, N'9596009044', N'Extended object-oriented conglomeration', N'Evening buy choice white religious institution. Threat room not seat general of catch. Then team between doctor. Campaign performance worry whatever sort gun sound strong.', N'Non-Fiction', CAST(N'2013-03-04T00:00:00.000' AS DateTime), CAST(N'2001-12-10T00:00:00.000' AS DateTime), N'In Repair', CAST(518 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4090, N'2636319984', N'Networked value-added leverage', N'Leg increase strong top mean then. Responsibility exactly choice couple culture yes lay give. Training with before up scientist word.', N'Fiction', CAST(N'1991-05-07T00:00:00.000' AS DateTime), CAST(N'1986-01-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(916 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4091, N'3902706736', N'Cross-platform 4thgeneration benchmark', N'Chair phone experience event. Improve final must even animal join should. Road federal station. Produce wife mouth attorney require. Population seat Congress court capital almost national.', N'Science', CAST(N'2005-01-28T00:00:00.000' AS DateTime), CAST(N'2003-09-04T00:00:00.000' AS DateTime), N'In Repair', CAST(327 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4092, N'4168613325', N'Realigned contextually-based strategy', N'News a lot year one today recently. Mission maintain nothing game explain charge let hundred. Pattern huge support why. Probably them fish yeah bad health. Girl culture billion little son.', N'History', CAST(N'2006-02-28T00:00:00.000' AS DateTime), CAST(N'1991-03-25T00:00:00.000' AS DateTime), N'In Repair', CAST(542 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4093, N'9090477224', N'Expanded stable info-mediaries', N'Stop into first which century your drive. Economy nation add they attention. Against help visit type risk off two. Officer practice case suddenly law compare owner dark.', N'History', CAST(N'2022-09-25T00:00:00.000' AS DateTime), CAST(N'2000-07-25T00:00:00.000' AS DateTime), N'In Repair', CAST(300 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4094, N'1233809662', N'Synergistic client-server workforce', N'Feeling responsibility trial prove entire. Already institution doctor body age. Seem activity player series modern. Customer language could may cup difficult.', N'Non-Fiction', CAST(N'2010-03-25T00:00:00.000' AS DateTime), CAST(N'2004-09-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(512 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4095, N'2113022092', N'Stand-alone motivating contingency', N'Room onto name computer particular church. Eat method people provide usually who draw. Care more state adult. Consider serve special investment decision eat.', N'Science', CAST(N'2017-02-18T00:00:00.000' AS DateTime), CAST(N'1984-08-08T00:00:00.000' AS DateTime), N'Available', CAST(868 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4096, N'7638049528', N'Multi-tiered dynamic frame', N'Collection student try sound thus. Citizen they something sit hear. Choice difference ask accept ball such mouth lose.', N'History', CAST(N'1992-02-14T00:00:00.000' AS DateTime), CAST(N'1986-04-20T00:00:00.000' AS DateTime), N'Reserved', CAST(263 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4097, N'7429364045', N'Enhanced explicit leverage', N'Force national determine writer baby rate strong. Somebody boy shake seek just physical son. Husband everyone ability. Themselves notice our onto soldier.', N'Non-Fiction', CAST(N'2009-11-09T00:00:00.000' AS DateTime), CAST(N'1983-09-01T00:00:00.000' AS DateTime), N'Reserved', CAST(123 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4098, N'6405813895', N'User-friendly full-range product', N'Financial new where yeah population vote dark. Meet nature brother hair within low under son. Shake trade couple right scene. Agree avoid begin small good think.', N'Science', CAST(N'2005-03-11T00:00:00.000' AS DateTime), CAST(N'1997-06-18T00:00:00.000' AS DateTime), N'Reserved', CAST(903 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4099, N'5758687603', N'Implemented clear-thinking groupware', N'Real million reflect rock source admit. Area degree back none word some. Ever bed response father image. Rock reality point something catch huge. Still three help.', N'Fiction', CAST(N'2000-03-26T00:00:00.000' AS DateTime), CAST(N'1997-09-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(101 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4100, N'9005982674', N'Synergized hybrid attitude', N'Agent member character per. Reflect trade against then. Type television seem toward past star.', N'Non-Fiction', CAST(N'2021-05-01T00:00:00.000' AS DateTime), CAST(N'1990-05-14T00:00:00.000' AS DateTime), N'Available', CAST(801 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4101, N'9751873126', N'Profound demand-driven challenge', N'Admit station foreign next yeah. System leg language treatment. Adult surface rich anyone pull either bed evidence. Value every sign about environment describe every choice.', N'Fiction', CAST(N'2001-07-19T00:00:00.000' AS DateTime), CAST(N'1999-05-04T00:00:00.000' AS DateTime), N'In Repair', CAST(892 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4102, N'9419487932', N'Adaptive zero tolerance database', N'Window hospital town above. Development behind car hair material per. Like personal lose question health.', N'History', CAST(N'2006-01-27T00:00:00.000' AS DateTime), CAST(N'1996-07-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(885 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4103, N'4609515793', N'Diverse reciprocal hub', N'Machine wide event. Decide position activity national cell why. Important common no region able. Blood dream open know last. Theory art western culture. Charge book dark.', N'Non-Fiction', CAST(N'2010-05-11T00:00:00.000' AS DateTime), CAST(N'1993-09-29T00:00:00.000' AS DateTime), N'In Repair', CAST(781 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4104, N'4161670572', N'Innovative secondary task-force', N'Couple thus read summer other respond. Not system newspaper. Should check still record skill home which. Though if front sport. Level maybe born.', N'Biography', CAST(N'1981-10-04T00:00:00.000' AS DateTime), CAST(N'1980-09-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(221 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4105, N'1452220253', N'Front-line intermediate interface', N'Personal nation control road soon. Rather share beat. Issue call compare fill. Brother section some modern character keep listen. There reach shoulder however cut science professional market.', N'Science', CAST(N'1990-12-18T00:00:00.000' AS DateTime), CAST(N'1988-08-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(302 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4106, N'4301183061', N'Programmable systematic core', N'Explain office theory including alone analysis church buy. Itself international service. None stand fall catch unit. May where sometimes lawyer analysis senior.', N'Fiction', CAST(N'2023-11-02T00:00:00.000' AS DateTime), CAST(N'1990-07-10T00:00:00.000' AS DateTime), N'In Repair', CAST(52 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4107, N'2190345608', N'Enhanced zero administration info-mediaries', N'Some table his scientist movement. Growth model me quite one share not. Throw part nearly car loss. Mean later analysis chair. Middle play data local war task water could.', N'Technology', CAST(N'1997-07-09T00:00:00.000' AS DateTime), CAST(N'1996-02-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(103 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4108, N'2830836477', N'Innovative holistic hardware', N'Environmental amount build decision scene behavior bill. Situation attack quality skin sing. Former right deal range movement say.', N'Technology', CAST(N'2003-12-16T00:00:00.000' AS DateTime), CAST(N'1989-03-18T00:00:00.000' AS DateTime), N'Available', CAST(281 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4109, N'4601673588', N'Customizable secondary system engine', N'Every write trial another investment. Son think hair. Down turn firm. Suffer kid it strategy season onto. Believe visit region myself.', N'Non-Fiction', CAST(N'1987-10-26T00:00:00.000' AS DateTime), CAST(N'1985-05-14T00:00:00.000' AS DateTime), N'Reserved', CAST(546 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4110, N'7950190363', N'Up-sized maximized strategy', N'Only you answer wind. Quickly bill simple board. Where name who such discuss type. Beyond feel such race. Education create action subject water director question.', N'Fiction', CAST(N'1989-02-01T00:00:00.000' AS DateTime), CAST(N'1983-06-18T00:00:00.000' AS DateTime), N'In Repair', CAST(232 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4111, N'7756241571', N'Synergistic reciprocal initiative', N'Fund police better act. Deal act wish suggest most church. Evidence usually situation we. Article fight director network. Expert training best town easy media.', N'Non-Fiction', CAST(N'1985-10-09T00:00:00.000' AS DateTime), CAST(N'1981-04-05T00:00:00.000' AS DateTime), N'Available', CAST(103 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4112, N'1067408424', N'Object-based solution-oriented collaboration', N'All carry rather list. Garden my create year environmental bring him. Crime challenge always include low official. Write avoid firm. Drop live gas. Message strategy wear order.', N'History', CAST(N'2021-10-29T00:00:00.000' AS DateTime), CAST(N'1991-02-14T00:00:00.000' AS DateTime), N'In Repair', CAST(909 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4113, N'6672257259', N'Cross-platform systematic solution', N'Purpose poor yourself save. Low current free seven forget tax work. Billion early next concern indeed. Paper TV ok surface.', N'Non-Fiction', CAST(N'2009-12-07T00:00:00.000' AS DateTime), CAST(N'1996-03-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(158 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4114, N'7777208270', N'Programmable holistic flexibility', N'Who college understand glass especially pattern he. Involve as share collection score return audience decade. Sign similar accept dinner group.', N'Biography', CAST(N'2016-08-20T00:00:00.000' AS DateTime), CAST(N'1996-02-26T00:00:00.000' AS DateTime), N'Available', CAST(806 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4115, N'5741826492', N'Diverse disintermediate adapter', N'Direction exactly cause campaign stop. Feel them red outside. Perform loss yeah. Challenge help performance risk fight.', N'Technology', CAST(N'1998-11-15T00:00:00.000' AS DateTime), CAST(N'1992-07-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(896 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4116, N'6620546296', N'Phased fault-tolerant ability', N'Our keep early amount. Second home yourself popular bag mission. Card ten choice listen work. Help quickly sense can information possible. Dark back evidence toward it example long history.', N'History', CAST(N'1999-03-02T00:00:00.000' AS DateTime), CAST(N'1989-10-09T00:00:00.000' AS DateTime), N'Reserved', CAST(540 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4117, N'8960876001', N'Fully-configurable methodical benchmark', N'Analysis indeed professional ok. Travel expect movement result. Ago win shake nothing scientist challenge. Help threat water business.', N'Fiction', CAST(N'1997-09-21T00:00:00.000' AS DateTime), CAST(N'1988-10-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(961 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4118, N'7550477778', N'Re-engineered 3rdgeneration matrix', N'Tv local specific along. Another price character result along agency. Bring campaign mother set similar question.', N'Non-Fiction', CAST(N'1984-08-30T00:00:00.000' AS DateTime), CAST(N'1983-12-26T00:00:00.000' AS DateTime), N'In Repair', CAST(810 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4119, N'9003113521', N'Re-contextualized holistic contingency', N'Speech several bring. Eye often system art artist way actually. Once government create than. Free since risk shake interview.', N'Fiction', CAST(N'1982-08-16T00:00:00.000' AS DateTime), CAST(N'1980-12-13T00:00:00.000' AS DateTime), N'Reserved', CAST(538 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4120, N'8860105045', N'Innovative tertiary knowledge user', N'Hundred rest and suffer recently record. Girl down yard area single similar take. Old catch around game camera painting.', N'Technology', CAST(N'2016-03-01T00:00:00.000' AS DateTime), CAST(N'1982-09-22T00:00:00.000' AS DateTime), N'Available', CAST(475 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4121, N'4902334481', N'Self-enabling bandwidth-monitored software', N'Thought lay reality focus produce prepare. Wall wonder key have say represent agree firm. Skin woman fish tell. Democrat million threat hard point process.', N'Fiction', CAST(N'2012-09-28T00:00:00.000' AS DateTime), CAST(N'1999-09-02T00:00:00.000' AS DateTime), N'In Repair', CAST(152 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4122, N'1238068309', N'Automated human-resource process improvement', N'Actually much class game. Behavior media edge daughter. Never kid stay hit manage enter ok. Leg trouble night then music. Place property during activity since finish Congress.', N'Biography', CAST(N'1980-05-14T00:00:00.000' AS DateTime), CAST(N'1980-04-26T00:00:00.000' AS DateTime), N'In Repair', CAST(61 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4123, N'9221748696', N'Managed neutral infrastructure', N'Opportunity discussion even. Common ground against employee movement. Fund mention available here. Perhaps oil morning current food. Word show coach.', N'Biography', CAST(N'1998-05-14T00:00:00.000' AS DateTime), CAST(N'1997-02-03T00:00:00.000' AS DateTime), N'Reserved', CAST(911 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4124, N'6405124040', N'Networked multi-state budgetary management', N'Article how much however parent exactly. Drive sell collection move your. Three forget wide while occur property upon.', N'Technology', CAST(N'2016-08-29T00:00:00.000' AS DateTime), CAST(N'1991-06-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(646 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4125, N'3983797069', N'Pre-emptive next generation focus group', N'Chair try seem member wife. Exactly huge modern possible way condition week best. Store family value. Make senior source start whatever short glass. Million full pretty. Now affect article.', N'Biography', CAST(N'1982-03-27T00:00:00.000' AS DateTime), CAST(N'1980-12-31T00:00:00.000' AS DateTime), N'In Repair', CAST(85 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4126, N'9288855263', N'Vision-oriented logistical website', N'History condition full degree because. Involve town turn. Across commercial south modern soon measure fill. Cell understand arrive deal.', N'Science', CAST(N'2003-09-01T00:00:00.000' AS DateTime), CAST(N'1988-10-11T00:00:00.000' AS DateTime), N'Reserved', CAST(706 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4127, N'1206863883', N'Front-line analyzing encryption', N'Some note century movement cultural organization want. Laugh when thus. Other would training understand others rule.', N'Fiction', CAST(N'2006-06-16T00:00:00.000' AS DateTime), CAST(N'1996-02-06T00:00:00.000' AS DateTime), N'Reserved', CAST(890 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4128, N'5678168637', N'Devolved non-volatile encryption', N'Play see must expect. Candidate similar true think show. Despite another good wait. Various sing must defense produce recently. One prevent interesting.', N'Science', CAST(N'1999-12-20T00:00:00.000' AS DateTime), CAST(N'1983-01-27T00:00:00.000' AS DateTime), N'Available', CAST(522 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4129, N'5575441149', N'Cloned asymmetric superstructure', N'Far matter age little. Think method television audience voice fish one. Ago toward religious we. Use work enter apply. Affect there several develop year lawyer tough. Family body any fight fill.', N'Biography', CAST(N'1985-01-18T00:00:00.000' AS DateTime), CAST(N'1980-07-27T00:00:00.000' AS DateTime), N'Reserved', CAST(720 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4130, N'7070184683', N'Intuitive zero tolerance synergy', N'Others phone throughout she. Voice serve hope four throughout some. Arrive science night. Run see century question culture.', N'Technology', CAST(N'2003-04-14T00:00:00.000' AS DateTime), CAST(N'1990-09-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(839 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4131, N'4496163691', N'Focused executive infrastructure', N'Training poor protect development item return learn. Bag possible out. Despite recently staff success maintain.', N'Technology', CAST(N'1995-08-23T00:00:00.000' AS DateTime), CAST(N'1984-10-12T00:00:00.000' AS DateTime), N'Available', CAST(582 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4132, N'1626998993', N'Balanced global model', N'Rather different which every beat. Media admit policy listen team manager. Easy she record among across line. Together understand resource key resource live skin expert.', N'Fiction', CAST(N'1996-05-21T00:00:00.000' AS DateTime), CAST(N'1987-06-27T00:00:00.000' AS DateTime), N'In Repair', CAST(769 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4133, N'1266077101', N'Streamlined tertiary workforce', N'Song measure college water support. Help describe probably serious bank. Nothing describe purpose although lot design. Clearly around hold look meeting safe piece.', N'Biography', CAST(N'2008-11-11T00:00:00.000' AS DateTime), CAST(N'1995-04-11T00:00:00.000' AS DateTime), N'Available', CAST(442 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4134, N'3598886558', N'Expanded client-driven task-force', N'They senior seat government. Within property phone successful month decision southern. President enough us market energy travel what.', N'Biography', CAST(N'2013-06-16T00:00:00.000' AS DateTime), CAST(N'2001-09-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(246 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4135, N'2966657761', N'Total systematic collaboration', N'Bad what federal between wrong too. People center dinner visit. Despite manager tree view base throw white. Hand interest appear small whatever. Strong understand prepare region. Name out there.', N'Biography', CAST(N'2014-11-05T00:00:00.000' AS DateTime), CAST(N'2011-12-04T00:00:00.000' AS DateTime), N'Available', CAST(304 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4136, N'2578388040', N'Phased even-keeled encoding', N'Once against treat send. Present nation difficult manager walk. Today behavior since every represent only. Leg news society news weight laugh.', N'Technology', CAST(N'2020-05-22T00:00:00.000' AS DateTime), CAST(N'2016-11-29T00:00:00.000' AS DateTime), N'Reserved', CAST(141 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4137, N'7098973014', N'Digitized bandwidth-monitored policy', N'Travel strong amount toward win great worry sell. Then explain middle already fight anything throw. My quickly environmental doctor. Figure for mission look soldier certainly miss.', N'Biography', CAST(N'2006-12-24T00:00:00.000' AS DateTime), CAST(N'1991-12-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(534 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4138, N'7914417506', N'Ergonomic explicit methodology', N'Try us capital. Assume keep great training environmental wind discuss she. Official vote others. Best economic miss.', N'Fiction', CAST(N'2009-03-03T00:00:00.000' AS DateTime), CAST(N'2007-11-10T00:00:00.000' AS DateTime), N'In Repair', CAST(277 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4139, N'9907004943', N'Multi-tiered reciprocal attitude', N'Move table doctor specific production story question. Project writer machine piece modern feeling physical.', N'History', CAST(N'1997-04-15T00:00:00.000' AS DateTime), CAST(N'1987-12-29T00:00:00.000' AS DateTime), N'Reserved', CAST(482 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4140, N'1675013910', N'Grass-roots disintermediate moratorium', N'Oil international drive hear. Exist strategy certainly century suggest approach. Between throughout brother leave. Scene boy give hundred parent.', N'Fiction', CAST(N'2006-07-21T00:00:00.000' AS DateTime), CAST(N'1997-09-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(596 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4141, N'4119703303', N'Robust high-level protocol', N'Since that field last treatment. Return million hundred most example experience data. Project decade ball. Part fish that. Town west subject treatment the more which.', N'Biography', CAST(N'2018-08-21T00:00:00.000' AS DateTime), CAST(N'2015-02-19T00:00:00.000' AS DateTime), N'Reserved', CAST(699 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4142, N'9001247991', N'Centralized dedicated infrastructure', N'She foreign program discussion. Wonder develop suffer thousand lead. Night positive receive generation probably describe need.', N'Biography', CAST(N'1987-09-21T00:00:00.000' AS DateTime), CAST(N'1983-11-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(862 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4143, N'6546487353', N'Upgradable bandwidth-monitored toolset', N'Discussion do area to feel represent happen. Determine nice run outside coach bed service. House can entire cell how nation. Challenge notice exist. Remain language finish.', N'Biography', CAST(N'1980-01-08T00:00:00.000' AS DateTime), CAST(N'1980-01-02T00:00:00.000' AS DateTime), N'In Repair', CAST(597 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4144, N'4457611764', N'Assimilated optimizing algorithm', N'Appear us individual. Speech ok rather half they property inside. Year rise both ground wish campaign.', N'Fiction', CAST(N'1980-08-16T00:00:00.000' AS DateTime), CAST(N'1980-04-11T00:00:00.000' AS DateTime), N'Available', CAST(355 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4145, N'6756346953', N'Intuitive multimedia frame', N'Toward issue television specific room. Member rock reflect card support.', N'History', CAST(N'2001-11-15T00:00:00.000' AS DateTime), CAST(N'1999-06-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(483 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4146, N'1697850374', N'Pre-emptive executive migration', N'We necessary least wonder glass party. Sea art about. Challenge personal goal play among security word. Cold establish term who speak machine. Region field position left.', N'Fiction', CAST(N'1982-03-14T00:00:00.000' AS DateTime), CAST(N'1980-04-02T00:00:00.000' AS DateTime), N'In Repair', CAST(804 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4147, N'5506413253', N'Sharable impactful collaboration', N'Within whole simply cell important. War record amount office institution today sometimes. Performance quality almost owner section less newspaper defense. System local cut number appear positive.', N'Technology', CAST(N'2018-01-25T00:00:00.000' AS DateTime), CAST(N'2008-07-29T00:00:00.000' AS DateTime), N'In Repair', CAST(533 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4148, N'1107936769', N'Profit-focused value-added middleware', N'Full tell begin and remember note pressure. She fear short high action town down. Represent trial early recent take skin town street.', N'Fiction', CAST(N'1986-04-09T00:00:00.000' AS DateTime), CAST(N'1980-10-19T00:00:00.000' AS DateTime), N'Reserved', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4149, N'3067485847', N'Phased national time-frame', N'Similar condition anyone million I nearly behavior customer. Number sense light case smile player answer a.', N'Technology', CAST(N'1982-12-31T00:00:00.000' AS DateTime), CAST(N'1980-12-20T00:00:00.000' AS DateTime), N'Available', CAST(862 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4150, N'6480938763', N'Visionary fault-tolerant capacity', N'Art candidate consider country book. But so those model resource end not. Tend find teach security without improve one. As step culture should growth. Send music benefit.', N'Science', CAST(N'2024-04-12T00:00:00.000' AS DateTime), CAST(N'1986-11-29T00:00:00.000' AS DateTime), N'Reserved', CAST(914 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4151, N'3657428590', N'Re-engineered 3rdgeneration archive', N'Audience student while start hundred. Consider late issue. Half stop religious cost. Class audience sea owner recognize decide pick.', N'History', CAST(N'1987-03-02T00:00:00.000' AS DateTime), CAST(N'1980-10-24T00:00:00.000' AS DateTime), N'Reserved', CAST(898 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4152, N'2467632638', N'Digitized local attitude', N'Eye nor against kitchen. Spring city if share space religious mission. Nearly happy whatever side network. None whole including. Already everybody whose assume ready measure treatment.', N'Technology', CAST(N'2013-06-27T00:00:00.000' AS DateTime), CAST(N'1982-12-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(874 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4153, N'8547843483', N'Compatible actuating challenge', N'Make sometimes tax recognize. World position community concern. Child everyone say suddenly order. It mouth crime treat among administration theory. Clear usually simple turn agent number his.', N'Fiction', CAST(N'2006-12-18T00:00:00.000' AS DateTime), CAST(N'1992-08-16T00:00:00.000' AS DateTime), N'In Repair', CAST(703 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4154, N'7313400843', N'Advanced tangible ability', N'Small beat building example. Trouble behavior far fill get relationship nothing. Year eight ball through size parent. Oil billion occur degree.', N'Science', CAST(N'1997-08-19T00:00:00.000' AS DateTime), CAST(N'1990-10-01T00:00:00.000' AS DateTime), N'In Repair', CAST(474 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4155, N'9340047544', N'Implemented multi-tasking moratorium', N'Teach large somebody lot catch. Garden car first manager win. Push myself star building hospital card this. Car prevent PM important.', N'Technology', CAST(N'2019-08-07T00:00:00.000' AS DateTime), CAST(N'1996-12-01T00:00:00.000' AS DateTime), N'Reserved', CAST(248 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4156, N'1039257442', N'Programmable logistical moratorium', N'Control friend if walk hospital. One world or firm hard left measure. Series century week effect against themselves. Factor hot word effect program.', N'Fiction', CAST(N'1996-10-30T00:00:00.000' AS DateTime), CAST(N'1982-10-19T00:00:00.000' AS DateTime), N'In Repair', CAST(288 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4157, N'3876036034', N'Intuitive user-facing flexibility', N'Represent five travel by government through over effort. Hundred teacher admit stage. Prove actually staff. Fight score cause remain stock. War state question form report.', N'Fiction', CAST(N'2019-12-26T00:00:00.000' AS DateTime), CAST(N'2013-11-04T00:00:00.000' AS DateTime), N'Available', CAST(785 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4158, N'7408969376', N'Reverse-engineered human-resource architecture', N'Development sport those seem. Piece if grow result call clearly. Possible area call after decade compare. More gun simply best word sort.', N'History', CAST(N'2010-04-19T00:00:00.000' AS DateTime), CAST(N'2000-02-14T00:00:00.000' AS DateTime), N'Available', CAST(119 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4159, N'7276239076', N'Digitized heuristic policy', N'Spend born let here whole site. Test Mr mean question by recently safe. Imagine education family bed rest expert. Keep through season wife under leg successful. Tree source none college memory.', N'Biography', CAST(N'1982-07-09T00:00:00.000' AS DateTime), CAST(N'1982-01-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(135 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4160, N'9872665727', N'Robust attitude-oriented info-mediaries', N'For market after both decision. Parent take person end so special another onto. In build despite north democratic source provide. Manage rock have. Better card course film contain husband brother.', N'Technology', CAST(N'1999-09-20T00:00:00.000' AS DateTime), CAST(N'1982-02-22T00:00:00.000' AS DateTime), N'Available', CAST(908 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4161, N'1817807624', N'Secured executive neural-net', N'American energy pass. How place forget money reveal since. Important treatment collection point. Month story order history although. West citizen open even. Up draw significant outside.', N'Biography', CAST(N'2021-06-25T00:00:00.000' AS DateTime), CAST(N'1988-10-25T00:00:00.000' AS DateTime), N'In Repair', CAST(560 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4162, N'4600344543', N'Distributed asymmetric workforce', N'Too finally control difference sure company. Deep career group notice.', N'History', CAST(N'1994-06-24T00:00:00.000' AS DateTime), CAST(N'1988-12-23T00:00:00.000' AS DateTime), N'Reserved', CAST(364 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4163, N'7328509445', N'Grass-roots disintermediate superstructure', N'Approach skin authority from. Democratic book baby about through yet many. Economic continue message picture want morning serve. He let design provide someone arm.', N'Non-Fiction', CAST(N'1992-02-22T00:00:00.000' AS DateTime), CAST(N'1985-04-04T00:00:00.000' AS DateTime), N'In Repair', CAST(565 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4164, N'7110336858', N'Diverse zero administration access', N'People scene outside civil forward within. Tv around woman game impact range room. Probably sport say them on. Part agent body design shake theory daughter. Expect ball current seem.', N'Technology', CAST(N'2013-07-20T00:00:00.000' AS DateTime), CAST(N'1993-07-21T00:00:00.000' AS DateTime), N'Available', CAST(627 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4165, N'2848629854', N'Assimilated 6thgeneration contingency', N'Production stage stage other. Hotel attack cold fill security help may. Lot prepare age ever house. Should unit subject southern statement who. Raise as network how school. Class recent by skin.', N'Biography', CAST(N'1988-04-22T00:00:00.000' AS DateTime), CAST(N'1980-07-10T00:00:00.000' AS DateTime), N'Reserved', CAST(613 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4166, N'8392515079', N'Digitized web-enabled artificial intelligence', N'Deep feel what lose edge. Kid bar newspaper natural fight hundred top son. Single believe cold meeting page per. Goal represent nature street. Name beautiful begin three order research.', N'Non-Fiction', CAST(N'1988-04-20T00:00:00.000' AS DateTime), CAST(N'1986-06-17T00:00:00.000' AS DateTime), N'Available', CAST(127 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4167, N'2856452125', N'Multi-channeled impactful projection', N'Prepare my maintain recent center up. Series phone physical individual until. Tv such there good now nearly. Recently say where community security school TV end.', N'Fiction', CAST(N'1995-09-14T00:00:00.000' AS DateTime), CAST(N'1980-01-01T00:00:00.000' AS DateTime), N'Reserved', CAST(803 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4168, N'5751751228', N'Reduced multimedia database', N'Subject check serious professor tough capital worker. Form foreign study cup. Series more guess. Memory draw question. Such mission whom design vote early. Radio provide stop support more back dog.', N'Fiction', CAST(N'2018-09-12T00:00:00.000' AS DateTime), CAST(N'1985-05-14T00:00:00.000' AS DateTime), N'Available', CAST(210 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4169, N'4778456179', N'Horizontal heuristic budgetary management', N'Serve itself early fact consumer rate make thought. Small final realize true term action word. Ok to year ask along serve.', N'Technology', CAST(N'1993-05-26T00:00:00.000' AS DateTime), CAST(N'1982-12-02T00:00:00.000' AS DateTime), N'Available', CAST(390 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4170, N'6738321999', N'Optional needs-based analyzer', N'Away poor in executive call glass forward theory. Interview financial western have article understand rich. Party wide can task stock wrong.', N'Science', CAST(N'2015-04-18T00:00:00.000' AS DateTime), CAST(N'1981-04-02T00:00:00.000' AS DateTime), N'Reserved', CAST(685 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4171, N'2869598316', N'Enhanced multimedia intranet', N'Quality everything career often. Fine say rise source. Strategy those low along best business. Beat church development imagine society region represent.', N'History', CAST(N'2014-09-01T00:00:00.000' AS DateTime), CAST(N'2010-04-27T00:00:00.000' AS DateTime), N'Available', CAST(446 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4172, N'5661112083', N'Multi-layered intangible flexibility', N'West note very trade stand. When both apply which. Trip store particular opportunity though pay. Stay red fund say fund program cover. Art check green he.', N'Fiction', CAST(N'1988-05-17T00:00:00.000' AS DateTime), CAST(N'1985-10-07T00:00:00.000' AS DateTime), N'In Repair', CAST(744 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4173, N'6183315621', N'Customizable disintermediate emulation', N'Specific gas center church young. Agent model film personal major another. Suffer at save rather artist.', N'History', CAST(N'2012-05-10T00:00:00.000' AS DateTime), CAST(N'1985-08-11T00:00:00.000' AS DateTime), N'In Repair', CAST(496 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4174, N'9523198548', N'Multi-layered attitude-oriented application', N'Term shake two product environmental final member. Ten send onto hour analysis store. Country into if upon several by. After theory animal. Until best feel room line change perform.', N'Non-Fiction', CAST(N'2000-07-20T00:00:00.000' AS DateTime), CAST(N'1999-01-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(97 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4175, N'9430742472', N'Devolved next generation array', N'Sport partner forget thousand usually discover see contain. Including some begin each exist. Section almost exist this walk drive.', N'History', CAST(N'2010-07-09T00:00:00.000' AS DateTime), CAST(N'2004-08-29T00:00:00.000' AS DateTime), N'Reserved', CAST(73 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4176, N'3169828245', N'Switchable grid-enabled Graphical User Interface', N'Top drug knowledge he sure generation. Method same quite range stage end middle. Senior now save around down. Politics player level visit conference. Only teacher light bank before community.', N'Fiction', CAST(N'1980-04-01T00:00:00.000' AS DateTime), CAST(N'1980-02-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(536 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4177, N'3697540054', N'Profit-focused user-facing monitoring', N'Available new management hour. Under card in much but several over. Key talk lot hospital budget you. Call choose outside wish right according those.', N'Technology', CAST(N'1998-08-04T00:00:00.000' AS DateTime), CAST(N'1998-04-13T00:00:00.000' AS DateTime), N'In Repair', CAST(114 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4178, N'1493720171', N'Integrated bifurcated model', N'Senior summer thank short fear. Long when practice subject issue. She young shoulder eight visit might watch eight. Value data way computer miss brother resource hotel.', N'History', CAST(N'2019-09-07T00:00:00.000' AS DateTime), CAST(N'1982-09-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(526 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4179, N'7234125871', N'Extended actuating task-force', N'Know executive rise hot west half. Similar hair focus part charge. When national reflect series. Say family forward leader under.', N'Fiction', CAST(N'2003-02-06T00:00:00.000' AS DateTime), CAST(N'2001-04-11T00:00:00.000' AS DateTime), N'Reserved', CAST(223 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4180, N'3518477180', N'Organic heuristic concept', N'East follow purpose democratic stuff. Two go tree travel our television. Send word author product pattern crime.', N'Biography', CAST(N'2002-06-02T00:00:00.000' AS DateTime), CAST(N'1987-06-29T00:00:00.000' AS DateTime), N'Reserved', CAST(801 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4181, N'6944997604', N'Universal fresh-thinking archive', N'Admit up job despite information thing. A design could in beautiful beyond learn. Would since second couple dark ago animal daughter. Front time least.', N'Biography', CAST(N'1990-02-07T00:00:00.000' AS DateTime), CAST(N'1989-05-13T00:00:00.000' AS DateTime), N'Reserved', CAST(518 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4182, N'6254991907', N'Balanced exuding ability', N'Whole to whatever response when partner. Page mother shoulder charge add agreement. Final office beyond recent myself will. Account program wall manager. Pattern they question offer instead stay off.', N'Technology', CAST(N'1985-10-08T00:00:00.000' AS DateTime), CAST(N'1983-01-11T00:00:00.000' AS DateTime), N'Available', CAST(520 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4183, N'6671703014', N'Persistent systematic extranet', N'Range fear threat agent approach. Trip go more. Type fight perhaps enter billion international. Officer certain people media according staff event.', N'Technology', CAST(N'1989-07-31T00:00:00.000' AS DateTime), CAST(N'1983-01-09T00:00:00.000' AS DateTime), N'In Repair', CAST(922 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4184, N'3271467608', N'Cloned interactive orchestration', N'Scientist country whose social role laugh feel. Store card human. Say there choose write class list.', N'History', CAST(N'2001-01-26T00:00:00.000' AS DateTime), CAST(N'1987-06-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(671 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4185, N'2936263804', N'Triple-buffered bifurcated forecast', N'Foreign capital his explain animal already score bad. Necessary play almost early worry prevent.', N'Fiction', CAST(N'2006-12-25T00:00:00.000' AS DateTime), CAST(N'2004-12-10T00:00:00.000' AS DateTime), N'Reserved', CAST(874 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4186, N'9761108081', N'Future-proofed zero-defect intranet', N'Politics yes bed without. Visit claim left story my nation also. Successful miss example raise. Enough minute capital pay majority.', N'Technology', CAST(N'2013-05-13T00:00:00.000' AS DateTime), CAST(N'1984-11-18T00:00:00.000' AS DateTime), N'In Repair', CAST(888 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4187, N'7307872864', N'Seamless global synergy', N'Admit report move car set. Western training future somebody campaign. High college rate food cold budget. Back personal I up data there central. With painting work whether. City over off glass.', N'Science', CAST(N'1982-07-29T00:00:00.000' AS DateTime), CAST(N'1981-05-24T00:00:00.000' AS DateTime), N'Reserved', CAST(484 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4188, N'5423673728', N'Fundamental regional groupware', N'Reduce professor series development fund. Allow security computer source fight statement really there.', N'Fiction', CAST(N'1988-07-16T00:00:00.000' AS DateTime), CAST(N'1986-02-08T00:00:00.000' AS DateTime), N'Reserved', CAST(778 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4189, N'8332896298', N'Customizable homogeneous encoding', N'Drug imagine evening action community culture. Or traditional early. Help hit face analysis hope enter. Say sense training television more. Sister within national.', N'Non-Fiction', CAST(N'1997-02-01T00:00:00.000' AS DateTime), CAST(N'1996-10-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(811 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4190, N'8348252709', N'Inverse grid-enabled policy', N'Control model sense. System too few to. Of main wish glass. Car authority near eye. Name fast indeed father really usually rather consumer. Mind while stuff measure.', N'Non-Fiction', CAST(N'2007-09-20T00:00:00.000' AS DateTime), CAST(N'1998-10-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(73 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4191, N'1713069080', N'Sharable well-modulated infrastructure', N'Begin debate fund police one former. Wear six different apply. Indeed test kid bank. Social coach city sense fall fall training. Receive dark in party issue. Before about weight maybe area.', N'Non-Fiction', CAST(N'1982-01-05T00:00:00.000' AS DateTime), CAST(N'1981-01-15T00:00:00.000' AS DateTime), N'Reserved', CAST(514 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4192, N'4116690122', N'Realigned content-based access', N'Stock reach manage Republican direction movie institution. Outside street baby glass assume anything. Former choice across occur. See management its story painting letter share.', N'Biography', CAST(N'1997-11-23T00:00:00.000' AS DateTime), CAST(N'1995-02-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(678 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4193, N'7674363515', N'Pre-emptive reciprocal hub', N'Probably whole stop experience maintain single. Heart charge goal by. Point involve Mr become television paper once. Control cost realize war trial Congress painting.', N'Biography', CAST(N'1989-11-09T00:00:00.000' AS DateTime), CAST(N'1984-05-28T00:00:00.000' AS DateTime), N'Reserved', CAST(838 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4194, N'2251918969', N'Automated static functionalities', N'Travel up part accept fund young. Buy word board structure choose few. Form law recent for. Particularly history happen section. Detail writer while miss.', N'Biography', CAST(N'2015-08-13T00:00:00.000' AS DateTime), CAST(N'1983-02-15T00:00:00.000' AS DateTime), N'Available', CAST(93 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4195, N'4769920850', N'Universal motivating Internet solution', N'Officer development job. The return over candidate note. Remain beat experience pattern war probably. Set her executive last. Executive throughout wind year fill network with rate.', N'Non-Fiction', CAST(N'2022-03-19T00:00:00.000' AS DateTime), CAST(N'2018-07-22T00:00:00.000' AS DateTime), N'Reserved', CAST(296 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4196, N'1684114532', N'Extended demand-driven frame', N'Summer boy range look really charge century. Statement rate read energy. Near fact use fall lose special. Ever require claim move unit either.', N'Technology', CAST(N'1992-09-22T00:00:00.000' AS DateTime), CAST(N'1981-03-09T00:00:00.000' AS DateTime), N'Reserved', CAST(430 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4197, N'3441717027', N'Decentralized clear-thinking infrastructure', N'Behavior happy health site. Group year stand begin. Tv cultural network image hour account what animal.', N'Fiction', CAST(N'1988-08-14T00:00:00.000' AS DateTime), CAST(N'1985-10-19T00:00:00.000' AS DateTime), N'Available', CAST(160 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4198, N'3706946871', N'Innovative reciprocal alliance', N'Page billion teacher since. Movement car policy suggest chair community conference effort. Strategy no than effort success customer. Later church step catch.', N'Technology', CAST(N'2019-11-27T00:00:00.000' AS DateTime), CAST(N'1989-04-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(722 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4199, N'1007889400', N'Public-key actuating concept', N'Put carry color send. Upon each north participant them difficult this few. Name hotel pick example. Discussion two discussion. Authority listen miss necessary kind bring.', N'Science', CAST(N'1993-11-22T00:00:00.000' AS DateTime), CAST(N'1991-01-29T00:00:00.000' AS DateTime), N'Available', CAST(591 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4200, N'9314967846', N'Versatile intermediate approach', N'List star large statement air economic my. Key still school rich car adult analysis.', N'Non-Fiction', CAST(N'1985-09-14T00:00:00.000' AS DateTime), CAST(N'1980-10-26T00:00:00.000' AS DateTime), N'Available', CAST(541 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4201, N'1870648480', N'Enhanced neutral concept', N'Let officer less responsibility everything leave. Ahead reveal mouth. Bar strong suddenly value interview. Before public leave. Book act begin return home run care.', N'Science', CAST(N'2015-06-04T00:00:00.000' AS DateTime), CAST(N'1994-11-18T00:00:00.000' AS DateTime), N'Available', CAST(225 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4202, N'8046538662', N'Cross-group interactive implementation', N'Notice risk fall nice speak surface. Find if need. Form lawyer indeed water. Time case step. Huge stay social read best white score late. Tell reason yet others out choose until.', N'Biography', CAST(N'2016-08-18T00:00:00.000' AS DateTime), CAST(N'2010-06-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(797 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4203, N'2880454669', N'Polarized directional groupware', N'Memory occur billion democratic among guy. Because effect yeah defense. Improve buy generation authority training.', N'Biography', CAST(N'2017-09-02T00:00:00.000' AS DateTime), CAST(N'1986-02-09T00:00:00.000' AS DateTime), N'In Repair', CAST(387 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4204, N'6238303883', N'Optional optimal pricing structure', N'Down high wide on executive only. Few church carry each level likely. Economic can election mouth area. Out society including hour note exist.', N'Non-Fiction', CAST(N'2021-10-07T00:00:00.000' AS DateTime), CAST(N'2020-04-08T00:00:00.000' AS DateTime), N'Reserved', CAST(197 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4205, N'8546043146', N'Proactive demand-driven parallelism', N'Area authority myself activity pick shake. High drop idea plant. Drug respond place public. Star red card pull. It risk help all arrive a.', N'Technology', CAST(N'2005-04-01T00:00:00.000' AS DateTime), CAST(N'1984-01-18T00:00:00.000' AS DateTime), N'Available', CAST(207 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4206, N'6826963202', N'Automated maximized framework', N'Start much often nice. Us job my. Start attention ahead successful home. Local cup size upon beyond deal at. Give identify yeah east pay save discuss wide. Sit similar main popular why shake.', N'Biography', CAST(N'1984-03-20T00:00:00.000' AS DateTime), CAST(N'1980-10-01T00:00:00.000' AS DateTime), N'In Repair', CAST(608 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4207, N'8275774713', N'Ergonomic dynamic portal', N'Well sound east. Member early popular according exactly already. Short role process common young fish.', N'History', CAST(N'2002-01-07T00:00:00.000' AS DateTime), CAST(N'2001-02-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(191 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4208, N'1935842411', N'Intuitive real-time moderator', N'Whether seem trial remain food. So hand free though voice woman brother push. This morning hotel campaign. Local decade important ready.', N'History', CAST(N'2021-10-09T00:00:00.000' AS DateTime), CAST(N'2000-10-19T00:00:00.000' AS DateTime), N'Reserved', CAST(734 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4209, N'8583860819', N'Reduced logistical monitoring', N'Worker beyond option turn expert executive member. Miss such notice.', N'Non-Fiction', CAST(N'1999-08-30T00:00:00.000' AS DateTime), CAST(N'1985-10-25T00:00:00.000' AS DateTime), N'In Repair', CAST(709 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4210, N'8493416760', N'Cross-platform tertiary budgetary management', N'North quality like for. Themselves experience news cost especially attorney tough policy.', N'Science', CAST(N'2014-08-09T00:00:00.000' AS DateTime), CAST(N'1998-08-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(507 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4211, N'1663634015', N'Seamless explicit budgetary management', N'Call do similar. Support speech that sound practice others game fly. Individual win protect. Respond street read avoid letter. Certain box physical bad. Health remain charge able occur reveal tend.', N'History', CAST(N'2017-12-19T00:00:00.000' AS DateTime), CAST(N'2013-04-19T00:00:00.000' AS DateTime), N'Reserved', CAST(421 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4212, N'1375259203', N'Configurable responsive capacity', N'Inside respond good their training five the. It drop traditional race chair probably eat event. Line onto own plan government dinner worry. Reality like candidate others politics resource break.', N'Non-Fiction', CAST(N'2002-10-23T00:00:00.000' AS DateTime), CAST(N'1994-08-29T00:00:00.000' AS DateTime), N'Reserved', CAST(826 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4213, N'9636396934', N'Multi-layered needs-based throughput', N'Movement occur real create west special force. Result election perform throw pull account. Human address behavior receive before.', N'Science', CAST(N'1991-08-28T00:00:00.000' AS DateTime), CAST(N'1980-08-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(997 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4214, N'7703442877', N'Advanced client-server instruction set', N'Claim item a art. People from suffer whose effect style. Shoulder rate cause almost air. Yeah tell what letter drug serve.', N'Science', CAST(N'1980-05-10T00:00:00.000' AS DateTime), CAST(N'1980-02-05T00:00:00.000' AS DateTime), N'Reserved', CAST(661 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4215, N'6080801480', N'Ameliorated bottom-line extranet', N'Break owner include general go go. Eye computer start. Wide value safe measure. Event need world economic allow seek. Claim seem measure decade hear.', N'Biography', CAST(N'1995-02-10T00:00:00.000' AS DateTime), CAST(N'1983-08-11T00:00:00.000' AS DateTime), N'In Repair', CAST(182 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4216, N'3999313090', N'User-centric interactive matrices', N'Travel difficult support series choice. Past born whatever idea. Those security Republican talk price. Under leader parent positive type. None market stop. Under station bill top around anything.', N'History', CAST(N'2014-10-22T00:00:00.000' AS DateTime), CAST(N'2003-10-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(884 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4217, N'3507558023', N'Fully-configurable motivating secured line', N'Other simple high go officer. Expect certain total floor head. Color despite nor act table bar.', N'Technology', CAST(N'2017-07-06T00:00:00.000' AS DateTime), CAST(N'1989-10-14T00:00:00.000' AS DateTime), N'Reserved', CAST(516 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4218, N'3827102126', N'Enterprise-wide clear-thinking knowledgebase', N'Beat later organization major. Seven like conference west. Realize investment we stop soon. View chair statement actually. Congress throw guy there buy third necessary.', N'Fiction', CAST(N'1988-06-17T00:00:00.000' AS DateTime), CAST(N'1987-02-28T00:00:00.000' AS DateTime), N'In Repair', CAST(840 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4219, N'9723299076', N'Quality-focused impactful intranet', N'Popular care easy. Hour surface first serious performance owner. Story tree possible large area the become. Scene into contain will wife. Still charge we. Local blue require wind.', N'Fiction', CAST(N'1981-05-27T00:00:00.000' AS DateTime), CAST(N'1981-02-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(130 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4220, N'3096750582', N'Expanded tertiary function', N'Agree with quality commercial support table. Know left pass discussion success federal. Book sign training establish place piece suddenly.', N'Technology', CAST(N'1995-11-14T00:00:00.000' AS DateTime), CAST(N'1987-01-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(627 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4221, N'9162756343', N'Multi-lateral modular installation', N'Able use trial all down foot. World responsibility pressure house everyone question. Dream situation system determine. Office behavior ago agree stock seem.', N'History', CAST(N'1996-11-19T00:00:00.000' AS DateTime), CAST(N'1994-09-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(446 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4222, N'7319057777', N'Open-architected client-driven solution', N'Upon government ground quality try why contain. Bank ability night week television push. Fall other perhaps knowledge morning skin. Work for inside future. Ask service officer central whatever cause.', N'Fiction', CAST(N'2003-07-28T00:00:00.000' AS DateTime), CAST(N'2001-04-04T00:00:00.000' AS DateTime), N'In Repair', CAST(143 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4223, N'3848267816', N'Implemented 24/7 access', N'Color consumer final look this. Central send believe knowledge possible song. Executive position fund. Assume oil peace sort their travel. Pretty into discover customer usually nothing.', N'Biography', CAST(N'2001-06-11T00:00:00.000' AS DateTime), CAST(N'1986-10-26T00:00:00.000' AS DateTime), N'In Repair', CAST(849 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4224, N'8929157480', N'Polarized object-oriented process improvement', N'World believe away serve into risk idea. Environmental surface consider against. Walk section push reason improve share relate. Partner cold leave protect effect crime reflect of.', N'Fiction', CAST(N'2011-04-10T00:00:00.000' AS DateTime), CAST(N'1987-01-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(85 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4225, N'6355670424', N'Quality-focused optimal projection', N'Near her medical evidence. Probably amount choose thousand box book. Each position dark respond member. Along fear responsibility radio cost. Network strategy finally.', N'Fiction', CAST(N'2021-04-02T00:00:00.000' AS DateTime), CAST(N'2014-01-31T00:00:00.000' AS DateTime), N'Reserved', CAST(594 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4226, N'5517298171', N'Programmable actuating hardware', N'Artist company election line. By benefit claim culture forward wonder. Million laugh general manager thought statement. Can concern somebody sport party against.', N'Biography', CAST(N'2023-08-01T00:00:00.000' AS DateTime), CAST(N'1996-04-08T00:00:00.000' AS DateTime), N'Reserved', CAST(676 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4227, N'9130529636', N'Synergistic executive attitude', N'While beautiful box choice cell general focus. Face century miss recent foreign take. Stage rock miss history whom cost feel.', N'Fiction', CAST(N'2024-08-03T00:00:00.000' AS DateTime), CAST(N'2009-04-28T00:00:00.000' AS DateTime), N'Available', CAST(427 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4228, N'4557143602', N'Reduced background product', N'Resource onto ten. Administration national production agent. It late allow history involve doctor. Soldier animal fund. Allow movement themselves themselves record woman table.', N'Fiction', CAST(N'2001-05-15T00:00:00.000' AS DateTime), CAST(N'1993-07-21T00:00:00.000' AS DateTime), N'Reserved', CAST(799 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4229, N'4615347929', N'Automated optimizing pricing structure', N'Too recently with feeling scientist enter firm fish. Water table guy discussion station Democrat. Few section man thus table send board less. Get state customer send hit exist.', N'Non-Fiction', CAST(N'2009-03-29T00:00:00.000' AS DateTime), CAST(N'2003-08-06T00:00:00.000' AS DateTime), N'Available', CAST(68 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4230, N'3431160490', N'Right-sized local framework', N'Arm stop issue issue technology learn song. Treat medical behind partner same. Property politics theory word marriage voice. Sell history mind.', N'Technology', CAST(N'1992-04-15T00:00:00.000' AS DateTime), CAST(N'1981-06-29T00:00:00.000' AS DateTime), N'Reserved', CAST(491 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4231, N'3711399850', N'Reactive dynamic service-desk', N'Claim movie opportunity home unit. Box window buy view. Ball move fine car task figure similar. Everything cut cut hundred.', N'Technology', CAST(N'2012-02-10T00:00:00.000' AS DateTime), CAST(N'2004-05-11T00:00:00.000' AS DateTime), N'Available', CAST(63 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4232, N'9470247435', N'Focused 3rdgeneration analyzer', N'National form grow it with cold. Positive wide notice total prepare thought along. Consider certain cup sell third law. Away attention even major. Difference they take everyone activity character.', N'History', CAST(N'1998-10-11T00:00:00.000' AS DateTime), CAST(N'1985-08-03T00:00:00.000' AS DateTime), N'In Repair', CAST(833 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4233, N'1463682637', N'Inverse zero tolerance secured line', N'Memory face beat yourself organization serious human. Final agency argue teach. Not form fly under order manager wind.', N'Biography', CAST(N'2011-09-14T00:00:00.000' AS DateTime), CAST(N'1986-12-17T00:00:00.000' AS DateTime), N'In Repair', CAST(575 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4234, N'1048109112', N'Centralized directional flexibility', N'Yourself much market shake. May enter road side ten develop make. Money second strong time. Hour but democratic mouth father action. Real there sell list game safe. Mr quite turn modern.', N'Non-Fiction', CAST(N'1982-01-16T00:00:00.000' AS DateTime), CAST(N'1981-02-20T00:00:00.000' AS DateTime), N'Reserved', CAST(531 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4235, N'6224711287', N'Cloned needs-based framework', N'Again goal know cup officer floor war. Chance else these model message compare. Action report source defense maintain answer. Reveal radio thank. Everything hit various door city democratic.', N'Non-Fiction', CAST(N'1996-07-26T00:00:00.000' AS DateTime), CAST(N'1991-09-05T00:00:00.000' AS DateTime), N'Reserved', CAST(949 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4236, N'3334208503', N'Distributed asynchronous budgetary management', N'Billion power major success at. Run focus owner expect spring discover place.', N'Technology', CAST(N'1996-03-15T00:00:00.000' AS DateTime), CAST(N'1992-01-22T00:00:00.000' AS DateTime), N'In Repair', CAST(778 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4237, N'4661675003', N'Diverse bi-directional project', N'Others agent imagine professor radio. Bit final Congress goal trouble front event.', N'Science', CAST(N'1983-02-28T00:00:00.000' AS DateTime), CAST(N'1982-09-17T00:00:00.000' AS DateTime), N'In Repair', CAST(193 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4238, N'7243714251', N'Multi-layered even-keeled capability', N'Computer sometimes year school. Economic theory us firm role state late others. Sign national single program policy black.', N'Science', CAST(N'2002-07-30T00:00:00.000' AS DateTime), CAST(N'2000-05-25T00:00:00.000' AS DateTime), N'In Repair', CAST(846 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4239, N'5558284814', N'User-centric zero-defect policy', N'Drive town occur open effect play. Blue how time partner service. War she fact. Compare either summer water. Past drop eat short.', N'Non-Fiction', CAST(N'1990-04-14T00:00:00.000' AS DateTime), CAST(N'1984-03-26T00:00:00.000' AS DateTime), N'Reserved', CAST(406 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4240, N'9682797883', N'Object-based 24hour capability', N'Wear pull help better it Mrs old. Stuff car speech. Exist value candidate section wish full. Direction trip size election identify. Wall often responsibility late yourself nature hard.', N'Biography', CAST(N'1991-12-03T00:00:00.000' AS DateTime), CAST(N'1987-01-30T00:00:00.000' AS DateTime), N'In Repair', CAST(291 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4241, N'4390251042', N'Pre-emptive interactive moderator', N'Personal manage behavior rather board news third. Mother instead person leave mission tonight section. Special read hold after. Then modern western little indicate. Significant he language me more.', N'Science', CAST(N'2004-08-12T00:00:00.000' AS DateTime), CAST(N'1994-03-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(504 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4242, N'6308675132', N'Inverse context-sensitive support', N'Artist serve station environment drop. Table hold story rule move now news one. Although teacher view rich crime career today. Eat especially forward dream. Similar community share.', N'Non-Fiction', CAST(N'2004-12-27T00:00:00.000' AS DateTime), CAST(N'1992-09-13T00:00:00.000' AS DateTime), N'Reserved', CAST(53 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4243, N'8584118666', N'Distributed motivating collaboration', N'Into door Democrat order really. Full four hour president fish friend. Soon bill hair accept. Practice whose law science.', N'Fiction', CAST(N'2010-03-19T00:00:00.000' AS DateTime), CAST(N'1993-12-29T00:00:00.000' AS DateTime), N'In Repair', CAST(881 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4244, N'6975764633', N'Customizable interactive policy', N'Heavy big total traditional through green positive. Direction now authority.', N'Non-Fiction', CAST(N'2018-10-11T00:00:00.000' AS DateTime), CAST(N'1989-05-07T00:00:00.000' AS DateTime), N'In Repair', CAST(467 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4245, N'7251254557', N'Streamlined coherent solution', N'Experience executive court. Laugh how factor great attorney south ground never. Land since miss people likely point although. Single perform short base one far realize.', N'History', CAST(N'1981-09-19T00:00:00.000' AS DateTime), CAST(N'1980-11-10T00:00:00.000' AS DateTime), N'Available', CAST(882 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4246, N'4209142880', N'Reactive maximized throughput', N'School whole continue want shoulder single seat. Address decision dark. Court civil maybe talk employee American. Fill effect western. Situation write continue social score situation remember.', N'Technology', CAST(N'1997-11-07T00:00:00.000' AS DateTime), CAST(N'1991-08-09T00:00:00.000' AS DateTime), N'Available', CAST(321 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4247, N'9217066986', N'Versatile real-time project', N'Throughout tax coach leader media throw. Develop model fly. Make wide away too generation charge man.', N'Technology', CAST(N'2005-06-23T00:00:00.000' AS DateTime), CAST(N'1982-10-21T00:00:00.000' AS DateTime), N'Reserved', CAST(922 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4248, N'1121627804', N'Enterprise-wide asynchronous artificial intelligence', N'Case record require speak every against learn future. Them century expert industry eight yet somebody field.', N'Biography', CAST(N'2010-01-07T00:00:00.000' AS DateTime), CAST(N'1986-08-09T00:00:00.000' AS DateTime), N'Reserved', CAST(747 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4249, N'3637149761', N'Re-contextualized fresh-thinking open system', N'Well leg every interview tend environmental style. Still old lot television west model performance. Truth evening myself management activity war.', N'History', CAST(N'1983-08-19T00:00:00.000' AS DateTime), CAST(N'1982-07-31T00:00:00.000' AS DateTime), N'Available', CAST(378 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4250, N'1063023721', N'Organic web-enabled matrix', N'Simply concern compare week three especially. Drug watch left pay attorney. Safe eat unit care. Style from mother couple behavior.', N'History', CAST(N'2021-03-09T00:00:00.000' AS DateTime), CAST(N'2004-07-16T00:00:00.000' AS DateTime), N'In Repair', CAST(78 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4251, N'1018093160', N'Up-sized even-keeled algorithm', N'Above choice create deal machine tree authority. Field marriage eat fall bag scientist page. Three fear kind they. Family medical class. Artist threat finish.', N'Biography', CAST(N'1995-10-03T00:00:00.000' AS DateTime), CAST(N'1994-12-18T00:00:00.000' AS DateTime), N'Available', CAST(976 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4252, N'4352707562', N'Realigned national system engine', N'Letter sign former response cup better. She while speak professional pull. Method again accept decade.', N'Science', CAST(N'1992-02-16T00:00:00.000' AS DateTime), CAST(N'1988-03-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(206 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4253, N'2952090128', N'Horizontal 3rdgeneration migration', N'Effort last customer quality general man a. Policy case suffer success company. Trouble new when.', N'Science', CAST(N'2004-11-12T00:00:00.000' AS DateTime), CAST(N'1996-04-06T00:00:00.000' AS DateTime), N'Available', CAST(231 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4254, N'3693944289', N'Open-architected analyzing productivity', N'Question serve lawyer become social. Now price face respond suddenly modern local. Hope school establish week myself garden. Cut record happen themselves gun have. Involve now mind together.', N'Non-Fiction', CAST(N'2008-08-26T00:00:00.000' AS DateTime), CAST(N'2006-12-05T00:00:00.000' AS DateTime), N'Reserved', CAST(658 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4255, N'3523538231', N'Exclusive bifurcated hierarchy', N'Every why six available like my low case. Sort since various understand. Author president just left their if half.', N'Technology', CAST(N'1985-11-23T00:00:00.000' AS DateTime), CAST(N'1982-10-25T00:00:00.000' AS DateTime), N'Reserved', CAST(636 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4256, N'3958496413', N'Fully-configurable tangible matrix', N'Different free everyone in I. Table soon audience democratic. Away present fire. Make quality teacher nor lot. School daughter you but adult dark scene. Final war stuff prove article evidence music.', N'History', CAST(N'2017-06-01T00:00:00.000' AS DateTime), CAST(N'2015-10-15T00:00:00.000' AS DateTime), N'In Repair', CAST(644 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4257, N'8535910828', N'Monitored regional framework', N'Water state include around. Loss cost compare similar responsibility rate myself. Value unit million government rise improve.', N'Non-Fiction', CAST(N'1987-10-11T00:00:00.000' AS DateTime), CAST(N'1980-10-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(791 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4258, N'8043855439', N'Persistent client-server paradigm', N'Reduce often catch address professor to. Per suddenly collection green ago within. Even wife put same think.', N'Non-Fiction', CAST(N'1985-08-11T00:00:00.000' AS DateTime), CAST(N'1982-05-29T00:00:00.000' AS DateTime), N'Reserved', CAST(107 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4259, N'9503712758', N'Programmable value-added instruction set', N'Computer sense third none Republican than live. Voice college democratic process. Nor day from. Serious court way form respond.', N'Science', CAST(N'2023-09-27T00:00:00.000' AS DateTime), CAST(N'1980-07-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(271 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4260, N'3513200571', N'Self-enabling coherent framework', N'Such others coach which away fly. Course continue research. Get fly father involve need type.', N'Biography', CAST(N'2008-01-18T00:00:00.000' AS DateTime), CAST(N'1980-05-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(192 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4261, N'8626506781', N'Networked needs-based standardization', N'Guy consumer ago phone nearly example. Its financial drive across will will result administration. Various add political player so year build.', N'Fiction', CAST(N'2011-11-12T00:00:00.000' AS DateTime), CAST(N'2009-04-18T00:00:00.000' AS DateTime), N'Available', CAST(154 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4262, N'2473326950', N'Multi-layered asymmetric circuit', N'Sort hotel ahead check stand bit ability modern. Painting sea administration art. Site relationship message ever relate nation interview. Phone pay director evening figure.', N'Non-Fiction', CAST(N'1991-07-27T00:00:00.000' AS DateTime), CAST(N'1981-09-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(901 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4263, N'7229642538', N'Fully-configurable web-enabled help-desk', N'Study entire collection true. Seem hit training central.', N'Science', CAST(N'1997-10-27T00:00:00.000' AS DateTime), CAST(N'1983-02-11T00:00:00.000' AS DateTime), N'In Repair', CAST(898 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4264, N'7352179839', N'Future-proofed solution-oriented software', N'Speak attention girl that now. Risk he say. Nation side education only common collection open. Partner high according again majority. Billion wear during mouth society since. Smile some a.', N'History', CAST(N'2019-08-10T00:00:00.000' AS DateTime), CAST(N'2019-06-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(848 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4265, N'3298176099', N'Re-engineered cohesive challenge', N'Much day rise party plan institution two. Brother society sister become contain. Apply third dark environmental live someone off. Certainly he public customer let country.', N'Technology', CAST(N'1997-01-05T00:00:00.000' AS DateTime), CAST(N'1986-05-06T00:00:00.000' AS DateTime), N'In Repair', CAST(620 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4266, N'9701684405', N'Quality-focused 6thgeneration parallelism', N'Interest laugh example information entire large catch finish. Think only late fear practice thousand. Conference mother technology public attorney first woman. She nor defense do arrive serious pay.', N'Technology', CAST(N'1987-11-13T00:00:00.000' AS DateTime), CAST(N'1981-12-13T00:00:00.000' AS DateTime), N'Available', CAST(422 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4267, N'5631700588', N'Customer-focused neutral installation', N'Help ten point range goal nation national law. Loss between evening daughter bed move. Accept Congress night any parent message about. Million manage goal.', N'Science', CAST(N'2013-11-12T00:00:00.000' AS DateTime), CAST(N'1985-01-06T00:00:00.000' AS DateTime), N'In Repair', CAST(417 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4268, N'3593044806', N'Robust 6thgeneration productivity', N'Attack energy bad whether policy model teacher. Keep report point act fine director office base. Crime high team plan somebody.', N'Biography', CAST(N'1985-07-21T00:00:00.000' AS DateTime), CAST(N'1981-09-24T00:00:00.000' AS DateTime), N'Available', CAST(712 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4269, N'4016976739', N'Multi-tiered client-server software', N'Might value score exactly where will city. Last night soldier test. Rate bit address against inside education food. Fire exactly boy government station fly. Future success fish strong him class.', N'Biography', CAST(N'1987-06-10T00:00:00.000' AS DateTime), CAST(N'1982-01-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(555 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4270, N'8713993312', N'Vision-oriented national neural-net', N'Interesting model plan always number under thousand. Hard brother only order issue hear. Truth cultural sea ahead go.', N'Non-Fiction', CAST(N'2016-03-06T00:00:00.000' AS DateTime), CAST(N'1990-03-19T00:00:00.000' AS DateTime), N'Available', CAST(962 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4271, N'8017589701', N'Progressive foreground Graphical User Interface', N'Management decide top cut pay. Care owner partner answer treatment thank memory. Lay hot why trouble. Make your wall what professor technology. Billion task inside work more player.', N'Biography', CAST(N'2019-07-30T00:00:00.000' AS DateTime), CAST(N'1996-06-05T00:00:00.000' AS DateTime), N'Available', CAST(162 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4272, N'5002319339', N'Customer-focused encompassing structure', N'Show executive life ok hand system. Thought scientist join arrive natural. Their us pass Republican. Trip around board. Author different use yes card hear history. Rule develop another star.', N'Science', CAST(N'2021-03-18T00:00:00.000' AS DateTime), CAST(N'1993-01-05T00:00:00.000' AS DateTime), N'Available', CAST(409 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4273, N'2594092450', N'Intuitive reciprocal system engine', N'Tell character television radio hope wife poor. Fall item part wind be international. Authority large type front. Interview majority special argue. Player so research why born body issue kitchen.', N'Science', CAST(N'2024-11-02T00:00:00.000' AS DateTime), CAST(N'2017-02-23T00:00:00.000' AS DateTime), N'Reserved', CAST(249 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4274, N'2150278191', N'Cloned intermediate toolset', N'Must fall describe phone deal understand series. Not word security reflect. Argue difference blood. Page wall former pay staff would. Reality mouth develop common everyone try.', N'Non-Fiction', CAST(N'2019-07-19T00:00:00.000' AS DateTime), CAST(N'2001-11-24T00:00:00.000' AS DateTime), N'Reserved', CAST(164 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4275, N'4837392487', N'Devolved attitude-oriented application', N'Red customer shake wish. Thing child strong too group compare seek. Finish probably PM nor type war early. After statement when professor business scientist mind against.', N'Fiction', CAST(N'1991-08-25T00:00:00.000' AS DateTime), CAST(N'1984-07-27T00:00:00.000' AS DateTime), N'Checked Out', CAST(564 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4276, N'4206245500', N'Digitized maximized software', N'Leg over mother glass. Position course purpose expect attorney. Admit father performance note. Artist board project around say. Also age total already.', N'Biography', CAST(N'2015-10-16T00:00:00.000' AS DateTime), CAST(N'1993-11-18T00:00:00.000' AS DateTime), N'Reserved', CAST(219 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4277, N'1259162537', N'Expanded impactful access', N'Recently analysis exactly well. Us treat trial and hope. Fill pick sort fire. We analysis Mrs the else. Behavior product style police edge career.', N'Non-Fiction', CAST(N'1981-04-08T00:00:00.000' AS DateTime), CAST(N'1980-03-22T00:00:00.000' AS DateTime), N'Reserved', CAST(118 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4278, N'4394705033', N'Fundamental neutral structure', N'Technology minute into hospital set pressure. State detail nearly because major majority man. Share magazine baby change alone resource world. List economy few debate.', N'Science', CAST(N'1982-01-15T00:00:00.000' AS DateTime), CAST(N'1980-02-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(477 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4279, N'2923473982', N'Stand-alone multi-tasking moderator', N'Career speak issue. No happy already many. The ground research five. Include nation interesting. Seek official statement clearly tax social maybe.', N'Science', CAST(N'1994-10-15T00:00:00.000' AS DateTime), CAST(N'1981-06-02T00:00:00.000' AS DateTime), N'In Repair', CAST(701 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4280, N'9848740824', N'Decentralized cohesive encoding', N'Suddenly politics knowledge open. Enjoy miss country either upon if. Charge discussion today weight that himself. Simply enjoy consumer by.', N'Technology', CAST(N'2000-06-26T00:00:00.000' AS DateTime), CAST(N'1989-04-01T00:00:00.000' AS DateTime), N'Reserved', CAST(669 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4281, N'6735914015', N'Polarized disintermediate monitoring', N'Simple land ask help attorney. Resource upon run white machine. Produce people still reveal act themselves. Friend year rock. Leave stay head other run.', N'Biography', CAST(N'2016-12-19T00:00:00.000' AS DateTime), CAST(N'1994-07-07T00:00:00.000' AS DateTime), N'In Repair', CAST(448 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4282, N'9069511808', N'Down-sized value-added project', N'Value all professional doctor relationship most. Want star Mrs rather gun. Enough first send today. Thought question so though. Baby goal message economy. Above theory some happy.', N'Biography', CAST(N'1988-08-25T00:00:00.000' AS DateTime), CAST(N'1984-05-11T00:00:00.000' AS DateTime), N'Available', CAST(148 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4283, N'6422820776', N'Team-oriented well-modulated circuit', N'Degree authority look. This brother technology development deal easy. Pretty people carry bag card sort close.', N'Non-Fiction', CAST(N'2007-02-11T00:00:00.000' AS DateTime), CAST(N'2004-03-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(748 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4284, N'9710347558', N'Synergistic even-keeled Graphic Interface', N'Become prevent poor field difference left usually. Address owner easy lead. According artist remain organization let food. Woman today customer information pull theory. Seem garden among shake each.', N'Fiction', CAST(N'2009-08-12T00:00:00.000' AS DateTime), CAST(N'1983-06-16T00:00:00.000' AS DateTime), N'Reserved', CAST(262 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4285, N'7412298764', N'Reduced uniform secured line', N'To seek however behavior. Somebody medical finally society reason. Though should city seat movie offer second. Necessary group other. Water dark movement amount model.', N'Science', CAST(N'2007-07-27T00:00:00.000' AS DateTime), CAST(N'1991-01-09T00:00:00.000' AS DateTime), N'Available', CAST(240 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4286, N'7390773677', N'Face-to-face incremental paradigm', N'Kid opportunity industry word food. Daughter seat character next girl explain. Plan throughout hit finally.', N'Biography', CAST(N'1988-04-23T00:00:00.000' AS DateTime), CAST(N'1985-03-16T00:00:00.000' AS DateTime), N'In Repair', CAST(291 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4287, N'9749878021', N'Open-source heuristic frame', N'There show up investment instead right I. Event everyone will reduce free guy mission. Eye force treat yard ok pull to.', N'Science', CAST(N'2024-03-09T00:00:00.000' AS DateTime), CAST(N'1986-12-02T00:00:00.000' AS DateTime), N'In Repair', CAST(675 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4288, N'8620573269', N'Persevering client-driven throughput', N'Our figure allow far benefit. Fact since enjoy eat. Change result season method second surface. Fish several avoid series scene I clear. Allow member election yet.', N'Non-Fiction', CAST(N'2007-07-29T00:00:00.000' AS DateTime), CAST(N'1987-08-31T00:00:00.000' AS DateTime), N'Reserved', CAST(471 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4289, N'6250646629', N'Synergized asymmetric array', N'Pull store bill machine million interesting. Sound like let window whole serious growth. Season continue site face stand his strategy ball.', N'Biography', CAST(N'2009-07-21T00:00:00.000' AS DateTime), CAST(N'1982-08-18T00:00:00.000' AS DateTime), N'Reserved', CAST(53 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4290, N'1373578108', N'Seamless well-modulated orchestration', N'Part heart minute hand rich year. Rock here argue hair would smile whatever question. Fall structure agreement these. About success body radio leader. Probably wide special final marriage line.', N'Science', CAST(N'2018-09-16T00:00:00.000' AS DateTime), CAST(N'1994-01-25T00:00:00.000' AS DateTime), N'Reserved', CAST(76 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4291, N'7893920686', N'Inverse dynamic capacity', N'Actually laugh some white shoulder ask. Both hear ability fire local often range. Effort home evening enter.', N'Technology', CAST(N'1989-02-11T00:00:00.000' AS DateTime), CAST(N'1986-02-17T00:00:00.000' AS DateTime), N'Reserved', CAST(471 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4292, N'8268022100', N'Ergonomic tangible Internet solution', N'Good public appear three position degree. Senior throw simple between area practice clearly. Tough traditional whose agreement represent various.', N'Technology', CAST(N'1982-05-03T00:00:00.000' AS DateTime), CAST(N'1980-06-05T00:00:00.000' AS DateTime), N'In Repair', CAST(243 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4293, N'6246609671', N'Polarized needs-based challenge', N'Coach ball anything wind blood seem walk. Night decade traditional us purpose.', N'Fiction', CAST(N'2015-07-19T00:00:00.000' AS DateTime), CAST(N'2009-04-01T00:00:00.000' AS DateTime), N'Reserved', CAST(155 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4294, N'8019450430', N'Pre-emptive next generation function', N'That front line reflect real offer. Mission responsibility security run. Job yes fund laugh.', N'Biography', CAST(N'2020-08-15T00:00:00.000' AS DateTime), CAST(N'2009-10-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(344 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4295, N'9053496901', N'Cross-group client-server Internet solution', N'Beat fast knowledge serious sister project. Term at build exist gas. Watch return break more.', N'History', CAST(N'2009-08-30T00:00:00.000' AS DateTime), CAST(N'1995-09-21T00:00:00.000' AS DateTime), N'Available', CAST(672 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4296, N'6741255205', N'Stand-alone next generation attitude', N'Attention price agent southern special. Do card food small. Take suddenly service part tax check. Wait see bar describe join half per response.', N'Biography', CAST(N'1995-02-18T00:00:00.000' AS DateTime), CAST(N'1991-06-23T00:00:00.000' AS DateTime), N'In Repair', CAST(496 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4297, N'9064374073', N'Open-architected asynchronous model', N'Laugh draw appear son second edge. Still leg lose possible word stock statement.', N'Biography', CAST(N'1990-02-07T00:00:00.000' AS DateTime), CAST(N'1989-12-14T00:00:00.000' AS DateTime), N'Available', CAST(939 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4298, N'5643798393', N'Quality-focused secondary Graphic Interface', N'Choice me million lay establish. Subject movie follow sit time city. Threat own hard question too film. Land family guess feel. Population door hair senior improve. Sister window hand indeed hard.', N'Technology', CAST(N'2014-02-21T00:00:00.000' AS DateTime), CAST(N'1990-06-11T00:00:00.000' AS DateTime), N'Available', CAST(991 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4299, N'9445554710', N'Cloned composite software', N'Piece him discussion reason lose television religious. Put suggest fish piece school. Always thus win million mouth. Reflect mouth thing. International enough walk than similar foreign.', N'Biography', CAST(N'1993-02-04T00:00:00.000' AS DateTime), CAST(N'1989-12-08T00:00:00.000' AS DateTime), N'In Repair', CAST(424 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4300, N'4859912169', N'Configurable hybrid help-desk', N'Modern sign party well. Foreign go position enter crime nation. Rule would leave safe low throughout. Exactly good our. Civil often determine wall piece.', N'Science', CAST(N'2022-01-08T00:00:00.000' AS DateTime), CAST(N'1984-12-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(590 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4301, N'2455826715', N'Cross-platform background paradigm', N'Especially room benefit go. Some rule truth together. Physical unit usually agreement. Order body yourself challenge build compare nation kind.', N'Non-Fiction', CAST(N'2015-03-07T00:00:00.000' AS DateTime), CAST(N'1985-01-15T00:00:00.000' AS DateTime), N'Reserved', CAST(845 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4302, N'2017644582', N'De-engineered disintermediate projection', N'Similar money represent reality special indeed mean other. Minute partner rest. Require pull behavior. Tv nor wonder including wear. Reason concern hand form. Bank democratic likely join.', N'Non-Fiction', CAST(N'2014-12-30T00:00:00.000' AS DateTime), CAST(N'1992-05-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(779 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4303, N'2249830176', N'Re-engineered dynamic secured line', N'Back as feel seem list. Radio training impact TV husband hold world. See cut size mean than majority couple. Hold page financial.', N'History', CAST(N'1986-04-03T00:00:00.000' AS DateTime), CAST(N'1982-09-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(287 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4304, N'8194384052', N'Monitored incremental matrices', N'Success standard charge example he truth say lose. Agreement purpose hit.', N'Fiction', CAST(N'1994-03-27T00:00:00.000' AS DateTime), CAST(N'1992-10-25T00:00:00.000' AS DateTime), N'Available', CAST(406 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4305, N'7723489411', N'Optional systemic matrices', N'Relationship hit live on responsibility majority. Someone stage life me about suddenly medical. Machine year town.', N'Fiction', CAST(N'1997-11-19T00:00:00.000' AS DateTime), CAST(N'1987-09-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(901 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4306, N'9563493416', N'Proactive exuding attitude', N'Over least only hit speech. Home piece performance plant government probably need.', N'Technology', CAST(N'2008-03-01T00:00:00.000' AS DateTime), CAST(N'1989-06-10T00:00:00.000' AS DateTime), N'Available', CAST(102 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4307, N'4415343704', N'Stand-alone optimal monitoring', N'Military know teacher never. Consider style reach his. Loss hope nation challenge car design family. Which white mean statement. Crime catch address big image member focus.', N'History', CAST(N'2022-01-03T00:00:00.000' AS DateTime), CAST(N'1993-01-31T00:00:00.000' AS DateTime), N'In Repair', CAST(606 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4308, N'8948948201', N'Intuitive tertiary moderator', N'Determine defense person especially. Face study less thus ready beyond. Husband raise sound. Allow effort rule statement seven ever. Black agreement agreement free.', N'Technology', CAST(N'2000-05-07T00:00:00.000' AS DateTime), CAST(N'1992-08-16T00:00:00.000' AS DateTime), N'Reserved', CAST(447 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4309, N'1515292700', N'Profit-focused incremental success', N'War group travel issue whom relate cell front. Budget arrive choose once trip. Pick world others like lose. Else medical season popular consider western.', N'Technology', CAST(N'2017-11-02T00:00:00.000' AS DateTime), CAST(N'1987-02-07T00:00:00.000' AS DateTime), N'Available', CAST(463 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4310, N'6464760299', N'Cross-group even-keeled throughput', N'Know cost professor defense day range throughout. Remember hope land. Discuss explain crime. Person hear place democratic yourself away another say.', N'History', CAST(N'2015-08-16T00:00:00.000' AS DateTime), CAST(N'1995-08-09T00:00:00.000' AS DateTime), N'Reserved', CAST(771 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4311, N'2209647506', N'Horizontal multi-tasking structure', N'Simple region report practice sister community set establish. Billion begin popular tonight important. Result old teach couple.', N'Technology', CAST(N'2017-01-15T00:00:00.000' AS DateTime), CAST(N'2012-04-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(831 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4312, N'2429787082', N'Diverse content-based collaboration', N'Outside international represent stuff. Wife last herself challenge race up. Subject check like involve sense nor process.', N'Non-Fiction', CAST(N'1984-09-13T00:00:00.000' AS DateTime), CAST(N'1983-02-26T00:00:00.000' AS DateTime), N'Reserved', CAST(256 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4313, N'2089745040', N'Reduced maximized open architecture', N'Total why news like so. Rich charge cell against reason region drop. Firm edge order stand focus. Seat beyond staff feeling. Low attention establish purpose. Language American data however.', N'Science', CAST(N'2017-02-19T00:00:00.000' AS DateTime), CAST(N'1982-03-18T00:00:00.000' AS DateTime), N'Available', CAST(998 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4314, N'6090691906', N'Integrated web-enabled matrices', N'Certain poor story thing difficult. Forget miss air ahead any defense. Very owner trip perform already hair. North result operation shoulder sometimes economic picture.', N'Fiction', CAST(N'2019-06-06T00:00:00.000' AS DateTime), CAST(N'1991-06-18T00:00:00.000' AS DateTime), N'In Repair', CAST(468 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4315, N'5260561144', N'Grass-roots fault-tolerant throughput', N'Student agreement meet blood eight. Nature child themselves high ask.', N'Science', CAST(N'1986-05-09T00:00:00.000' AS DateTime), CAST(N'1985-01-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(837 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4316, N'3605208522', N'Advanced reciprocal hub', N'Common score every Republican piece author body. Compare assume find hear interesting. Over federal development great place occur explain. Degree late property while.', N'Fiction', CAST(N'2016-01-04T00:00:00.000' AS DateTime), CAST(N'2007-03-13T00:00:00.000' AS DateTime), N'Available', CAST(275 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4317, N'1016531926', N'Extended clear-thinking algorithm', N'Carry later also. Strong close dinner public resource save note clearly. Cell baby enough total which option account. Six week focus.', N'Science', CAST(N'2020-06-05T00:00:00.000' AS DateTime), CAST(N'2011-03-26T00:00:00.000' AS DateTime), N'Reserved', CAST(290 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4318, N'7841436585', N'Multi-channeled reciprocal policy', N'Various across guess movie first real Democrat quality. Form involve open sport rich wish. Treat store enter music through seven.', N'History', CAST(N'2024-09-21T00:00:00.000' AS DateTime), CAST(N'2017-10-24T00:00:00.000' AS DateTime), N'Available', CAST(479 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4319, N'4901485504', N'Virtual national definition', N'Little know drug network write speak somebody. Those its market it. Good understand wrong wife from everyone lay. Drive to consumer. Include policy ahead affect military.', N'Fiction', CAST(N'2019-06-29T00:00:00.000' AS DateTime), CAST(N'1999-10-12T00:00:00.000' AS DateTime), N'Available', CAST(760 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4320, N'6536848416', N'Centralized web-enabled Local Area Network', N'Management position world realize production the. World against nation opportunity rich. Each save gas build. Finally fast concern pay. Agent south too single cut suggest it.', N'Fiction', CAST(N'1982-01-08T00:00:00.000' AS DateTime), CAST(N'1981-04-14T00:00:00.000' AS DateTime), N'Available', CAST(90 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4321, N'3488691895', N'Intuitive optimal migration', N'These story agreement management design forget. Red meet blue amount task from. Table although sell anything.', N'Technology', CAST(N'2005-08-05T00:00:00.000' AS DateTime), CAST(N'1992-10-13T00:00:00.000' AS DateTime), N'Reserved', CAST(248 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4322, N'5501904568', N'Team-oriented optimizing policy', N'Simply past reflect smile idea politics federal. Establish media affect east may once song later.', N'Science', CAST(N'1987-07-12T00:00:00.000' AS DateTime), CAST(N'1981-06-08T00:00:00.000' AS DateTime), N'Reserved', CAST(927 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4323, N'8174248530', N'Cross-group even-keeled concept', N'Political fine bring. Night agent another memory actually eat American. Structure weight office eat little.', N'Biography', CAST(N'1994-01-30T00:00:00.000' AS DateTime), CAST(N'1982-04-10T00:00:00.000' AS DateTime), N'Available', CAST(785 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4324, N'8863484129', N'Synergized neutral moderator', N'Run central difficult mind visit just Republican deal. Fill thus house whole other. Against policy sport hundred purpose. Out chair news officer together form full site.', N'History', CAST(N'2021-07-01T00:00:00.000' AS DateTime), CAST(N'1996-11-03T00:00:00.000' AS DateTime), N'In Repair', CAST(520 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4325, N'3841693238', N'Digitized 5thgeneration neural-net', N'Baby life world yourself. Congress coach vote often majority structure establish.', N'Fiction', CAST(N'1987-08-26T00:00:00.000' AS DateTime), CAST(N'1980-12-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(417 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4326, N'1860119110', N'Monitored cohesive benchmark', N'Far vote control somebody. Provide phone executive peace information. Position two almost year responsibility research certain. In ok catch we hope check deal piece. Season behind smile make.', N'Fiction', CAST(N'2001-09-22T00:00:00.000' AS DateTime), CAST(N'1989-05-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(508 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4327, N'6474339455', N'Programmable 24/7 function', N'Out finish board stop sport in. Smile age pattern book old claim hope. Trade idea fund. Carry attention mother place. Show wind small natural.', N'Technology', CAST(N'2016-11-14T00:00:00.000' AS DateTime), CAST(N'2013-05-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(451 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4328, N'5398798464', N'Optimized directional frame', N'Friend gas rather development. Stock usually interest yeah recent positive space speak.', N'Science', CAST(N'1980-02-15T00:00:00.000' AS DateTime), CAST(N'1980-01-10T00:00:00.000' AS DateTime), N'In Repair', CAST(911 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4329, N'7479932415', N'Programmable secondary artificial intelligence', N'Upon film tree. Describe again ask spring deep stuff also space. Bring glass color final real. Wait term Mrs adult clear near yard. Adult break sport bill end medical.', N'Fiction', CAST(N'2001-11-20T00:00:00.000' AS DateTime), CAST(N'1988-09-04T00:00:00.000' AS DateTime), N'In Repair', CAST(229 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4330, N'3762334086', N'Profit-focused hybrid collaboration', N'Machine read white open should tell. Send the test production. Purpose ago lay section.', N'Non-Fiction', CAST(N'1988-10-26T00:00:00.000' AS DateTime), CAST(N'1987-07-10T00:00:00.000' AS DateTime), N'In Repair', CAST(868 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4331, N'9869311656', N'Persevering multi-state model', N'Reduce less require whether first for sort. Leg relate behind character. Action lose party chair and race. Second trade spend baby sign. Machine officer draw possible.', N'Science', CAST(N'1980-08-21T00:00:00.000' AS DateTime), CAST(N'1980-05-04T00:00:00.000' AS DateTime), N'In Repair', CAST(474 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4332, N'7769439020', N'Triple-buffered heuristic challenge', N'Guess seven live management event still thing. Could land production without wide play approach. Last try argue great wind.', N'Fiction', CAST(N'1993-05-20T00:00:00.000' AS DateTime), CAST(N'1990-03-24T00:00:00.000' AS DateTime), N'Available', CAST(477 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4333, N'4380349685', N'Open-source human-resource complexity', N'Industry sure agent. Unit deep reason where small enjoy clearly capital. Today type important along picture deep.', N'Biography', CAST(N'2021-09-30T00:00:00.000' AS DateTime), CAST(N'2017-07-23T00:00:00.000' AS DateTime), N'In Repair', CAST(583 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4334, N'5104618171', N'Organic intermediate installation', N'Experience structure able cause cost arm quality town. World tree small catch strategy. Manager born road chair reduce.', N'Non-Fiction', CAST(N'2018-08-30T00:00:00.000' AS DateTime), CAST(N'1989-10-07T00:00:00.000' AS DateTime), N'Reserved', CAST(754 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4335, N'5061389976', N'Cloned zero administration middleware', N'Table spend indeed front subject manage. Force painting successful middle life to tell.', N'Fiction', CAST(N'1987-08-23T00:00:00.000' AS DateTime), CAST(N'1982-02-06T00:00:00.000' AS DateTime), N'Available', CAST(832 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4336, N'8611708968', N'Reduced radical hardware', N'Since every magazine child challenge each. That why stage opportunity must town rather this. Discuss watch ground. Travel increase both hard end.', N'Non-Fiction', CAST(N'2008-12-01T00:00:00.000' AS DateTime), CAST(N'1991-01-01T00:00:00.000' AS DateTime), N'Available', CAST(217 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4337, N'2921790353', N'Open-source 24/7 Internet solution', N'Boy outside likely population avoid feel tend. Charge dream open. Watch be author draw. Treatment full in agree opportunity ask keep. Say thank into their various good race.', N'History', CAST(N'2015-05-23T00:00:00.000' AS DateTime), CAST(N'1988-04-21T00:00:00.000' AS DateTime), N'In Repair', CAST(941 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4338, N'4511110861', N'Innovative modular capacity', N'Name deep rather trade. Condition color best certain newspaper hear. Various whose together under represent color indicate they.', N'Non-Fiction', CAST(N'1997-04-06T00:00:00.000' AS DateTime), CAST(N'1989-04-16T00:00:00.000' AS DateTime), N'Reserved', CAST(776 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4339, N'2044342816', N'Open-source incremental frame', N'Financial address management act talk leg. Week production worker white piece. Play can old amount heart surface prepare.', N'Fiction', CAST(N'1990-01-12T00:00:00.000' AS DateTime), CAST(N'1989-03-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(175 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4340, N'3917186622', N'Enterprise-wide eco-centric project', N'Factor statement such play magazine culture. Charge fine return recently art nice management. Study message per bed. Present care professor stuff task leg.', N'Science', CAST(N'1980-02-20T00:00:00.000' AS DateTime), CAST(N'1980-01-22T00:00:00.000' AS DateTime), N'In Repair', CAST(583 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4341, N'7564565024', N'Team-oriented multi-tasking process improvement', N'Worker push power quickly develop defense law matter. Affect future indeed turn hundred western. Strategy require federal six. Capital board appear nor edge painting.', N'Technology', CAST(N'1995-12-22T00:00:00.000' AS DateTime), CAST(N'1993-02-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(348 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4342, N'5019312169', N'Virtual intermediate neural-net', N'North artist whom successful down prepare whether. Pressure check thousand ground. Energy develop indeed serve now raise eye less. Experience nor pay bed before standard sometimes.', N'History', CAST(N'2000-11-07T00:00:00.000' AS DateTime), CAST(N'1980-09-20T00:00:00.000' AS DateTime), N'Reserved', CAST(474 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4343, N'3819495801', N'Implemented transitional benchmark', N'Reveal treatment keep short general drive. During place us. List commercial trial audience a check. Value consumer range then last effort. Eat daughter result interview vote let discuss drug.', N'Biography', CAST(N'1998-02-27T00:00:00.000' AS DateTime), CAST(N'1993-06-22T00:00:00.000' AS DateTime), N'In Repair', CAST(396 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4344, N'4097203068', N'Innovative impactful model', N'Food a realize article even. Performance total with alone evening according four. Value recognize near free any tree big.', N'Fiction', CAST(N'1989-08-30T00:00:00.000' AS DateTime), CAST(N'1987-04-28T00:00:00.000' AS DateTime), N'In Repair', CAST(984 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4345, N'1015275003', N'Pre-emptive fault-tolerant service-desk', N'Agreement huge various whatever best test. Rest together serve want most generation whole. City view beautiful model notice the require.', N'Biography', CAST(N'2004-07-17T00:00:00.000' AS DateTime), CAST(N'1981-02-10T00:00:00.000' AS DateTime), N'In Repair', CAST(585 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4346, N'6395429126', N'Configurable 6thgeneration task-force', N'Owner history value present. Employee theory then rest door lawyer. Source machine collection challenge PM. Agency local lawyer probably. Hair assume defense idea around.', N'Science', CAST(N'2002-03-15T00:00:00.000' AS DateTime), CAST(N'1985-07-16T00:00:00.000' AS DateTime), N'Available', CAST(804 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4347, N'1163247439', N'Adaptive bandwidth-monitored adapter', N'Wife grow cold message. Street arm knowledge participant. Fear growth culture play. Team special similar fight there like. Bad worry continue production subject. Someone appear protect hot fall.', N'History', CAST(N'1989-04-19T00:00:00.000' AS DateTime), CAST(N'1982-01-16T00:00:00.000' AS DateTime), N'Available', CAST(183 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4348, N'3440847051', N'Cloned secondary interface', N'Laugh charge evening open. Way black none style wife music crime. Why involve of front key. Company big enter. Democratic price official operation.', N'Technology', CAST(N'2005-10-20T00:00:00.000' AS DateTime), CAST(N'1985-08-08T00:00:00.000' AS DateTime), N'In Repair', CAST(805 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4349, N'9687969332', N'Digitized analyzing functionalities', N'Often five national national according. Doctor free wonder force cause account another. Since final kitchen score past responsibility six. Key either enough in.', N'Non-Fiction', CAST(N'2023-05-25T00:00:00.000' AS DateTime), CAST(N'2010-01-18T00:00:00.000' AS DateTime), N'Reserved', CAST(528 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4350, N'6675161239', N'Universal grid-enabled Graphical User Interface', N'Play six president form call lead set. Less pay most some cell career. Sit become gas music. Result PM once each whole. Offer choose expect glass. Decide various hold.', N'Biography', CAST(N'2023-05-11T00:00:00.000' AS DateTime), CAST(N'1983-09-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(182 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4351, N'1660708674', N'Multi-tiered national project', N'Well action teach then edge family money. Seat yard seat popular. Raise particularly staff visit travel.', N'History', CAST(N'1993-03-14T00:00:00.000' AS DateTime), CAST(N'1987-01-03T00:00:00.000' AS DateTime), N'Reserved', CAST(779 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4352, N'9755846073', N'Object-based holistic moderator', N'Recently artist industry meeting maybe. Discuss feel according and skin. Medical difference place production staff. Tree statement final follow down explain.', N'Biography', CAST(N'2019-09-23T00:00:00.000' AS DateTime), CAST(N'1982-04-12T00:00:00.000' AS DateTime), N'In Repair', CAST(580 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4353, N'1836623980', N'Down-sized fresh-thinking artificial intelligence', N'Successful run operation base world position. Man where community fast. Up available test themselves.', N'Biography', CAST(N'2003-04-20T00:00:00.000' AS DateTime), CAST(N'1994-09-22T00:00:00.000' AS DateTime), N'Reserved', CAST(523 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4354, N'9976068110', N'Down-sized human-resource focus group', N'Very personal return natural impact. Central campaign oil end single. Pull medical officer. Serious like say. Song maybe long stock physical. Her name he economic care action increase.', N'Technology', CAST(N'1999-03-21T00:00:00.000' AS DateTime), CAST(N'1992-07-28T00:00:00.000' AS DateTime), N'Reserved', CAST(176 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4355, N'7007369420', N'Multi-lateral next generation initiative', N'Sell truth head theory evidence. Brother cell pass way church trial election. Real reveal citizen individual. Including wear phone should individual.', N'Non-Fiction', CAST(N'2021-02-10T00:00:00.000' AS DateTime), CAST(N'1980-01-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(314 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4356, N'4436317613', N'Assimilated context-sensitive alliance', N'By become stuff material government deep score. Foreign teacher true drug people system. Spring involve part box mouth.', N'Science', CAST(N'2010-02-25T00:00:00.000' AS DateTime), CAST(N'2003-11-30T00:00:00.000' AS DateTime), N'Reserved', CAST(687 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4357, N'8761321846', N'Multi-tiered contextually-based synergy', N'Catch plan buy discover factor choose trade. Present number any training. Short include oil stay evening.', N'Biography', CAST(N'1984-12-01T00:00:00.000' AS DateTime), CAST(N'1981-04-26T00:00:00.000' AS DateTime), N'Reserved', CAST(419 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4358, N'5454652817', N'Intuitive 6thgeneration portal', N'Box as military model coach. Upon phone beautiful door hospital mother. Worry nation word stuff week.', N'Technology', CAST(N'2014-02-01T00:00:00.000' AS DateTime), CAST(N'1993-02-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(913 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4359, N'9849892897', N'Progressive content-based matrix', N'Bad news sign themselves. Dark fine article source between travel. Religious buy recognize responsibility create.', N'Non-Fiction', CAST(N'2019-04-17T00:00:00.000' AS DateTime), CAST(N'2001-10-08T00:00:00.000' AS DateTime), N'Reserved', CAST(120 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4360, N'8548445799', N'Enterprise-wide context-sensitive hierarchy', N'Hear kid agree two cell create. Guess brother yourself result note. Become radio expert list step capital. Available cost account yes. Society too agency about week.', N'Fiction', CAST(N'1982-09-02T00:00:00.000' AS DateTime), CAST(N'1981-09-30T00:00:00.000' AS DateTime), N'Reserved', CAST(683 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4361, N'1061067968', N'Managed transitional application', N'Firm according tree close. Impact personal sometimes performance when Republican. Win clear state population. Recognize staff chair material memory animal. Old floor middle bank along.', N'Non-Fiction', CAST(N'1987-09-09T00:00:00.000' AS DateTime), CAST(N'1986-03-11T00:00:00.000' AS DateTime), N'Reserved', CAST(74 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4362, N'6224091380', N'Robust homogeneous attitude', N'Occur create organization inside hundred represent. Lead environmental raise require today run thought. Use exist health white turn. Check security always budget need.', N'Biography', CAST(N'1981-11-21T00:00:00.000' AS DateTime), CAST(N'1981-07-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(75 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4363, N'7981939115', N'Down-sized human-resource project', N'Land detail stage opportunity politics think. Market raise family film.', N'Non-Fiction', CAST(N'1986-04-22T00:00:00.000' AS DateTime), CAST(N'1980-03-09T00:00:00.000' AS DateTime), N'Available', CAST(577 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4364, N'2465068915', N'Polarized needs-based process improvement', N'Turn impact want remember method. Care window travel wait see ago research one. Fill new couple center happen movement necessary.', N'Fiction', CAST(N'1993-08-14T00:00:00.000' AS DateTime), CAST(N'1981-02-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(605 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4365, N'3271944277', N'Face-to-face didactic adapter', N'We including way kitchen bit hospital. Important test spring land ability pass. Across involve agency democratic value value. Hold live paper purpose take talk different loss.', N'Science', CAST(N'1990-03-26T00:00:00.000' AS DateTime), CAST(N'1988-12-31T00:00:00.000' AS DateTime), N'Reserved', CAST(687 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4366, N'8455651351', N'Intuitive client-driven concept', N'Carry improve moment quickly detail kind. Protect production standard throughout life girl artist opportunity. Best TV something career thus.', N'Science', CAST(N'2015-11-16T00:00:00.000' AS DateTime), CAST(N'1982-02-12T00:00:00.000' AS DateTime), N'Available', CAST(344 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4367, N'5050410454', N'Persistent fault-tolerant model', N'Camera number full high would next thank. Appear job cover risk. Ever leader tend lot chair. Rule news effort tree. Law across safe. Shake think quickly close. Perform play behind skill.', N'History', CAST(N'2020-12-12T00:00:00.000' AS DateTime), CAST(N'1991-07-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(613 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4368, N'2222931820', N'Re-contextualized transitional secured line', N'Memory decide world same just. Laugh paper tree age. Work past growth window method glass. Rule blue training able character. Clear pull compare listen.', N'Biography', CAST(N'1984-07-14T00:00:00.000' AS DateTime), CAST(N'1984-05-30T00:00:00.000' AS DateTime), N'Reserved', CAST(985 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4369, N'4777351286', N'Grass-roots mobile budgetary management', N'Return military experience magazine them send book. Huge design heart. Career somebody dog rate year cold although. Mrs fear example interesting.', N'Non-Fiction', CAST(N'2000-12-17T00:00:00.000' AS DateTime), CAST(N'1990-07-22T00:00:00.000' AS DateTime), N'In Repair', CAST(275 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4370, N'1277182179', N'Reduced clear-thinking projection', N'Green follow name. Heart control cut. Exist serve trade laugh. Focus accept process force husband factor word. Main when right look number. High choose short better.', N'Science', CAST(N'1984-06-01T00:00:00.000' AS DateTime), CAST(N'1980-10-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(809 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4371, N'7247097256', N'Re-contextualized transitional interface', N'Early out see value animal oil. Hard support local bank partner. Eat total open central simple thousand black better. Center way cut collection city appear.', N'Biography', CAST(N'1991-10-28T00:00:00.000' AS DateTime), CAST(N'1988-07-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(515 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4372, N'6274549045', N'Open-architected national pricing structure', N'Republican support perhaps store. Discuss idea task her three. After effort oil road party miss. Color until thus note. Safe drop son away.', N'History', CAST(N'1996-12-23T00:00:00.000' AS DateTime), CAST(N'1982-11-05T00:00:00.000' AS DateTime), N'In Repair', CAST(702 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4373, N'5460359609', N'Centralized exuding attitude', N'I central price career. Never appear away. Wind point mouth here. West deal likely discuss current. Would condition start sing. Catch reason mean adult soldier carry.', N'Fiction', CAST(N'2003-08-16T00:00:00.000' AS DateTime), CAST(N'1996-12-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(814 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4374, N'1288140920', N'Mandatory radical open architecture', N'Million phone report environmental. Big subject career. Maybe doctor common anything. Increase me image read big case.', N'Science', CAST(N'1997-08-19T00:00:00.000' AS DateTime), CAST(N'1984-07-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(563 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4375, N'9716221746', N'Automated dynamic alliance', N'Energy good current claim country first. Military face business week happen by establish name. Reflect do only inside edge able customer.', N'Technology', CAST(N'2023-06-18T00:00:00.000' AS DateTime), CAST(N'1997-08-18T00:00:00.000' AS DateTime), N'Reserved', CAST(496 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4376, N'2783056198', N'Public-key local flexibility', N'Far pay remain. Later blue area article. Clear serious early state stuff. Experience project home few partner current. Line sister ago leader feeling ten hard. Mean teach face believe.', N'History', CAST(N'1987-04-06T00:00:00.000' AS DateTime), CAST(N'1982-07-04T00:00:00.000' AS DateTime), N'In Repair', CAST(923 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4377, N'3150202751', N'Virtual grid-enabled adapter', N'Agency figure line do writer employee stuff property. Miss price edge politics late entire.', N'Technology', CAST(N'2016-11-01T00:00:00.000' AS DateTime), CAST(N'1980-12-13T00:00:00.000' AS DateTime), N'Available', CAST(106 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4378, N'2495937610', N'Business-focused disintermediate methodology', N'Reflect wind store court part hour. World author hold care family wide yard police. Of human speak center significant author difference.', N'Non-Fiction', CAST(N'1987-03-12T00:00:00.000' AS DateTime), CAST(N'1980-02-01T00:00:00.000' AS DateTime), N'Reserved', CAST(685 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4379, N'8310284720', N'Centralized zero tolerance Internet solution', N'Bed so southern modern about. Site condition truth mission security write itself. Upon money public court follow team effort popular. Then bank space establish. Approach travel wish.', N'Science', CAST(N'2012-10-01T00:00:00.000' AS DateTime), CAST(N'1993-04-24T00:00:00.000' AS DateTime), N'In Repair', CAST(207 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4380, N'6409126502', N'Customer-focused composite collaboration', N'Whatever side power blood. Provide Democrat his responsibility community deep use. Whatever you anyone charge. Loss lot picture.', N'Biography', CAST(N'1981-07-20T00:00:00.000' AS DateTime), CAST(N'1980-11-16T00:00:00.000' AS DateTime), N'Reserved', CAST(705 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4381, N'8811380910', N'Phased homogeneous core', N'Yeah list film technology imagine general. Gun drug direction arrive summer month tree single.', N'Non-Fiction', CAST(N'1986-11-04T00:00:00.000' AS DateTime), CAST(N'1986-06-21T00:00:00.000' AS DateTime), N'In Repair', CAST(530 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4382, N'6072920218', N'Switchable composite service-desk', N'Affect form law seem yard ground career similar. Rock strategy leg lawyer. Develop evidence believe standard. Behavior establish education stay.', N'History', CAST(N'2007-01-07T00:00:00.000' AS DateTime), CAST(N'1997-01-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(561 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4383, N'6325147870', N'Extended coherent structure', N'Couple almost indicate suggest. Little ten black television Mr seat site. Develop go debate my up rather record man.', N'History', CAST(N'2015-11-20T00:00:00.000' AS DateTime), CAST(N'1981-11-10T00:00:00.000' AS DateTime), N'Available', CAST(504 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4384, N'1320376155', N'Function-based incremental frame', N'Issue chair just indicate. Whole without personal movie sure maintain term watch. Various candidate staff respond course organization.', N'Fiction', CAST(N'1997-06-05T00:00:00.000' AS DateTime), CAST(N'1994-08-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(895 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4385, N'9928657551', N'Visionary leadingedge array', N'Evidence life star. Method size challenge force artist we. Benefit hear investment far quality example. Have thing company high. Interesting later low home page exactly imagine ball.', N'Biography', CAST(N'2001-05-26T00:00:00.000' AS DateTime), CAST(N'1986-10-14T00:00:00.000' AS DateTime), N'In Repair', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4386, N'7896156059', N'Multi-lateral homogeneous success', N'Loss heavy water general population. Theory stock region we yard. Study professional agreement fact save late. Current their personal reveal.', N'Non-Fiction', CAST(N'1990-04-18T00:00:00.000' AS DateTime), CAST(N'1990-04-11T00:00:00.000' AS DateTime), N'Reserved', CAST(621 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4387, N'8516515904', N'Monitored intermediate implementation', N'People give note three plant name knowledge apply. Among people war. Fly red might budget career.', N'Non-Fiction', CAST(N'2018-11-10T00:00:00.000' AS DateTime), CAST(N'2002-10-27T00:00:00.000' AS DateTime), N'Available', CAST(283 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4388, N'9353066862', N'Centralized analyzing groupware', N'Condition woman morning degree billion final than. Field get college talk. Evening bank very network.', N'Non-Fiction', CAST(N'2001-08-23T00:00:00.000' AS DateTime), CAST(N'2000-07-20T00:00:00.000' AS DateTime), N'Reserved', CAST(633 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4389, N'1610261888', N'Configurable multi-state analyzer', N'Picture establish sure. Despite whatever success though range cup. Approach strong draw various friend safe tax.', N'Biography', CAST(N'1990-09-21T00:00:00.000' AS DateTime), CAST(N'1981-08-25T00:00:00.000' AS DateTime), N'Reserved', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4390, N'3285023597', N'Cross-platform user-facing alliance', N'Understand majority ago bag. Yes late discuss tax black give hair. Language on movement spend simply letter.', N'Non-Fiction', CAST(N'2014-07-31T00:00:00.000' AS DateTime), CAST(N'2013-08-14T00:00:00.000' AS DateTime), N'Available', CAST(217 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4391, N'6897551321', N'Devolved dedicated knowledgebase', N'Total gun past. Gun produce goal wear. Thus far child wonder yourself enter. Fear action whom up. Gun along after. Agreement Mr shake.', N'Non-Fiction', CAST(N'2012-02-27T00:00:00.000' AS DateTime), CAST(N'2011-06-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(752 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4392, N'9631415663', N'Future-proofed eco-centric Graphic Interface', N'Various black director become pass none. Loss it TV manager. Maybe direction them area we. Book need treat during some economy return evidence. Continue despite language.', N'Biography', CAST(N'1989-08-05T00:00:00.000' AS DateTime), CAST(N'1983-04-30T00:00:00.000' AS DateTime), N'In Repair', CAST(545 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4393, N'8609685136', N'Multi-lateral full-range encryption', N'Keep right nation reality federal current. Small give able. Business nearly around senior.', N'Fiction', CAST(N'2013-05-20T00:00:00.000' AS DateTime), CAST(N'1998-10-06T00:00:00.000' AS DateTime), N'In Repair', CAST(125 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4394, N'5718406915', N'Progressive 4thgeneration middleware', N'Themselves live part agency clear white lead. Keep law peace around authority. Imagine no somebody write five now.', N'History', CAST(N'2014-04-03T00:00:00.000' AS DateTime), CAST(N'1987-04-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(263 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4395, N'5692168939', N'Realigned motivating Internet solution', N'Carry season foreign onto. Own would already already who. Response heavy interesting top statement.', N'Fiction', CAST(N'1987-12-30T00:00:00.000' AS DateTime), CAST(N'1981-06-19T00:00:00.000' AS DateTime), N'In Repair', CAST(490 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4396, N'5629820452', N'Digitized executive utilization', N'Reach wonder oil establish any condition place large. Bed near happen special all action. Thousand sport experience national. Catch our toward water because over. Morning whole have at.', N'Non-Fiction', CAST(N'2003-05-04T00:00:00.000' AS DateTime), CAST(N'1989-09-15T00:00:00.000' AS DateTime), N'In Repair', CAST(381 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4397, N'2745867519', N'Realigned interactive functionalities', N'Despite choose resource policy pick current nice. Ready difficult bill machine president religious.', N'Science', CAST(N'1989-08-11T00:00:00.000' AS DateTime), CAST(N'1984-11-17T00:00:00.000' AS DateTime), N'In Repair', CAST(92 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4398, N'6508241977', N'De-engineered regional customer loyalty', N'Chance evidence report those anyone. Defense during prove box camera house realize. Wonder mission space room. Tell project number friend nor. That on west us night receive.', N'Fiction', CAST(N'1985-11-08T00:00:00.000' AS DateTime), CAST(N'1981-08-13T00:00:00.000' AS DateTime), N'In Repair', CAST(915 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4399, N'5708327543', N'Grass-roots next generation orchestration', N'Dog when they think for thought conference. Surface play according sister play husband catch. Service time back. Voice little yeah tell institution Congress wide. Away include before seven.', N'Biography', CAST(N'2006-01-30T00:00:00.000' AS DateTime), CAST(N'1980-04-15T00:00:00.000' AS DateTime), N'Reserved', CAST(804 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4400, N'3225150203', N'Customizable solution-oriented process improvement', N'Customer put institution gun court wall successful. Agency lose rather coach knowledge statement art. Line social doctor.', N'History', CAST(N'2016-09-23T00:00:00.000' AS DateTime), CAST(N'2007-11-21T00:00:00.000' AS DateTime), N'Available', CAST(738 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4401, N'4643856674', N'Quality-focused eco-centric help-desk', N'Well provide there room finish true. Unit country political culture. End rich page agreement watch tonight.', N'Fiction', CAST(N'1982-11-07T00:00:00.000' AS DateTime), CAST(N'1982-07-27T00:00:00.000' AS DateTime), N'In Repair', CAST(502 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4402, N'9723172956', N'Polarized bandwidth-monitored groupware', N'Baby when clear tree message election. Last bag evidence yeah. Scene inside raise grow. Himself wrong sit necessary conference hotel. Fast main much help.', N'Biography', CAST(N'1991-03-26T00:00:00.000' AS DateTime), CAST(N'1983-12-02T00:00:00.000' AS DateTime), N'In Repair', CAST(426 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4403, N'6055684152', N'Assimilated maximized alliance', N'Above not growth movie. Market major share relate just. Rock perform writer than suddenly.', N'Biography', CAST(N'2006-04-14T00:00:00.000' AS DateTime), CAST(N'1998-02-19T00:00:00.000' AS DateTime), N'In Repair', CAST(868 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4404, N'9230122066', N'Innovative contextually-based budgetary management', N'Team evening laugh. Truth clearly where foreign. Rise couple price leg. Product reveal sea now indicate record. Left history dark difficult. Focus phone quickly dark hit.', N'Non-Fiction', CAST(N'2012-09-23T00:00:00.000' AS DateTime), CAST(N'1987-06-30T00:00:00.000' AS DateTime), N'Available', CAST(716 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4405, N'6657940814', N'Future-proofed analyzing matrices', N'Radio enough gas culture. Writer hold sport travel see investment. May peace understand major. Girl role education growth. Later news room. Section it ready project single suddenly.', N'Technology', CAST(N'1996-02-05T00:00:00.000' AS DateTime), CAST(N'1988-02-03T00:00:00.000' AS DateTime), N'In Repair', CAST(349 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4406, N'8822626790', N'Face-to-face next generation customer loyalty', N'During child student. Police case no effort large level. Appear field the also hotel. Rock Congress your road cut never. Spend sound color box.', N'Biography', CAST(N'1981-07-25T00:00:00.000' AS DateTime), CAST(N'1981-04-06T00:00:00.000' AS DateTime), N'Available', CAST(304 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4407, N'2324811330', N'Self-enabling dedicated projection', N'Assume home game spring. My degree hour. Within as after man kid. Court yet beat find with. Position others window lead young cell win. Owner not manager option huge sound.', N'Biography', CAST(N'2021-09-01T00:00:00.000' AS DateTime), CAST(N'2008-01-08T00:00:00.000' AS DateTime), N'Available', CAST(893 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4408, N'2456300913', N'Optimized 5thgeneration leverage', N'Leg water fly worker seven study positive company. Nothing oil bag all give foreign agree. Long reality whatever audience color indicate back. Each majority financial win might read.', N'Fiction', CAST(N'1992-01-11T00:00:00.000' AS DateTime), CAST(N'1980-09-01T00:00:00.000' AS DateTime), N'In Repair', CAST(723 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4409, N'9793756011', N'Secured transitional database', N'Movie image behind human scene. Spring often order couple capital set. Rest character player night reason lay. But worry exactly offer policy usually teach although.', N'Science', CAST(N'2024-12-16T00:00:00.000' AS DateTime), CAST(N'2003-06-11T00:00:00.000' AS DateTime), N'In Repair', CAST(57 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4410, N'3063059376', N'Centralized didactic framework', N'Environmental reach fly blood us bed growth. Court appear along business these environment western. Small wait professional parent director build thus. Security bag meet month provide form.', N'Fiction', CAST(N'2000-12-30T00:00:00.000' AS DateTime), CAST(N'1993-04-05T00:00:00.000' AS DateTime), N'Available', CAST(623 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4411, N'2647114785', N'Organic content-based emulation', N'Report painting dinner successful room. Citizen reality account at. Hot thank election space very but last.', N'History', CAST(N'2000-06-30T00:00:00.000' AS DateTime), CAST(N'1995-06-11T00:00:00.000' AS DateTime), N'Available', CAST(955 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4412, N'3528495023', N'Ameliorated stable initiative', N'Relationship often ago. Until forward whether happen room. Look style almost experience. Care budget amount rock oil. Decide near PM management wonder.', N'Technology', CAST(N'1999-11-22T00:00:00.000' AS DateTime), CAST(N'1986-02-13T00:00:00.000' AS DateTime), N'In Repair', CAST(472 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4413, N'6013280207', N'Automated logistical conglomeration', N'Against central spend draw pull likely field degree. Once drug tree himself third his.', N'Non-Fiction', CAST(N'2004-10-30T00:00:00.000' AS DateTime), CAST(N'1987-03-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(461 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4414, N'9735997793', N'Polarized explicit support', N'Per Mr stay but. Place marriage ability type carry upon which she.', N'History', CAST(N'2007-10-05T00:00:00.000' AS DateTime), CAST(N'1994-09-07T00:00:00.000' AS DateTime), N'Reserved', CAST(172 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4415, N'3608023339', N'Decentralized bottom-line complexity', N'Sea once avoid huge trouble simple. Over purpose region show peace happen. Opportunity of from free. Right police quickly owner. Inside nothing social structure might inside material.', N'Non-Fiction', CAST(N'1980-06-25T00:00:00.000' AS DateTime), CAST(N'1980-01-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(266 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4416, N'8035975454', N'Networked asymmetric budgetary management', N'Explain wide rock. Concern dark car talk condition party case material. Better them perform reveal way. Rule social hot. Day debate surface nation material much after.', N'Non-Fiction', CAST(N'1993-04-23T00:00:00.000' AS DateTime), CAST(N'1984-12-25T00:00:00.000' AS DateTime), N'Reserved', CAST(949 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4417, N'2374776183', N'Monitored 24hour algorithm', N'Which national contain around bed form particular. Score environment heart official indicate fish. Protect end best. Them use hot more employee.', N'Technology', CAST(N'2022-01-28T00:00:00.000' AS DateTime), CAST(N'2000-06-11T00:00:00.000' AS DateTime), N'Available', CAST(519 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4418, N'7485715807', N'Organic next generation structure', N'Public response indicate season democratic hospital because. Fish government trip cup important culture. A ok particular subject.', N'Science', CAST(N'1989-12-15T00:00:00.000' AS DateTime), CAST(N'1985-05-29T00:00:00.000' AS DateTime), N'Checked Out', CAST(853 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4419, N'8372424146', N'Reverse-engineered asynchronous open system', N'Heart fast protect your environment easy. Lay near president listen good. Determine organization catch smile cause phone. Establish budget enough model.', N'Technology', CAST(N'1999-12-09T00:00:00.000' AS DateTime), CAST(N'1983-12-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(531 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4420, N'9093776896', N'Up-sized intangible definition', N'Traditional land white. Owner serve someone candidate. During tough least. Early human gas meet value.', N'Fiction', CAST(N'1996-04-02T00:00:00.000' AS DateTime), CAST(N'1995-03-02T00:00:00.000' AS DateTime), N'Available', CAST(129 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4421, N'7277057301', N'Open-source upward-trending help-desk', N'Notice allow energy throw eye management. In act win improve nearly note. Out prove there miss. Group teach around worker explain easy he.', N'Technology', CAST(N'1987-11-04T00:00:00.000' AS DateTime), CAST(N'1983-08-04T00:00:00.000' AS DateTime), N'In Repair', CAST(241 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4422, N'6086318980', N'Enterprise-wide maximized extranet', N'Current subject item owner. Society floor strong interview. Paper this foreign news method fish. Instead matter machine moment. Figure positive sister garden. Source notice service take.', N'Science', CAST(N'2012-09-26T00:00:00.000' AS DateTime), CAST(N'1984-11-17T00:00:00.000' AS DateTime), N'Reserved', CAST(714 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4423, N'3689334752', N'Public-key zero-defect groupware', N'Move right environmental family compare agency. Our red role. Political idea collection window resource. Chair how agreement see.', N'Fiction', CAST(N'1991-06-06T00:00:00.000' AS DateTime), CAST(N'1990-05-28T00:00:00.000' AS DateTime), N'In Repair', CAST(254 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4424, N'7061046696', N'Intuitive composite migration', N'Energy himself suffer race Mrs best. Health during during always quality make fact. Man factor environmental husband. Door team great attorney mean administration truth. Of doctor part long role.', N'Technology', CAST(N'2008-11-17T00:00:00.000' AS DateTime), CAST(N'1995-07-21T00:00:00.000' AS DateTime), N'In Repair', CAST(112 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4425, N'8561260620', N'Extended intermediate structure', N'Thus state thank. Factor those yourself cut. Brother more believe upon lot.', N'Science', CAST(N'2007-04-22T00:00:00.000' AS DateTime), CAST(N'1996-01-26T00:00:00.000' AS DateTime), N'In Repair', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4426, N'5623262793', N'Optional grid-enabled architecture', N'Common show test population pick. Owner my may meet stock back admit. According drop bar man. Like until upon analysis. Safe ahead arrive party much room investment able.', N'Technology', CAST(N'1990-02-16T00:00:00.000' AS DateTime), CAST(N'1988-04-09T00:00:00.000' AS DateTime), N'Reserved', CAST(455 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4427, N'9971192646', N'Team-oriented exuding software', N'Effort development serve. Employee behavior cause put run view. Everything center hard role sport partner. Long figure water work last.', N'Biography', CAST(N'1994-02-19T00:00:00.000' AS DateTime), CAST(N'1982-09-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(345 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4428, N'3440710870', N'Assimilated context-sensitive hierarchy', N'Memory property heart likely. Major everyone staff. Minute generation oil actually. List total station policy address job read. Fact history turn anything hotel election education.', N'Biography', CAST(N'1999-06-27T00:00:00.000' AS DateTime), CAST(N'1982-08-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(644 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4429, N'4658915178', N'Configurable hybrid initiative', N'Very action ground like wish better state. Eight air actually forget end ground. Expert ready continue model somebody think address. Present expect ready side. Discover bar article seem.', N'Non-Fiction', CAST(N'1995-10-29T00:00:00.000' AS DateTime), CAST(N'1982-09-21T00:00:00.000' AS DateTime), N'In Repair', CAST(989 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4430, N'2729428126', N'Horizontal foreground migration', N'Chair customer have five former. Western at media provide sing. Want number goal high PM property. Standard provide here usually resource these office.', N'Science', CAST(N'2021-05-05T00:00:00.000' AS DateTime), CAST(N'1993-10-27T00:00:00.000' AS DateTime), N'In Repair', CAST(822 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4431, N'5562258288', N'Reactive bi-directional encoding', N'Focus American talk at level. They manager production standard fine space. Analysis newspaper ever impact direction also agree.', N'History', CAST(N'2015-03-02T00:00:00.000' AS DateTime), CAST(N'2012-04-14T00:00:00.000' AS DateTime), N'Reserved', CAST(88 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4432, N'2034634933', N'Compatible asymmetric portal', N'Environment practice strategy. Like start south want century recent less. Nothing space still question letter hour watch.', N'Biography', CAST(N'2011-08-14T00:00:00.000' AS DateTime), CAST(N'1988-01-06T00:00:00.000' AS DateTime), N'Available', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4433, N'3005291601', N'Managed demand-driven capacity', N'Rich every interview sister hear. Least old single set many. He cold style seek. Play apply shoulder industry. Them sport history.', N'History', CAST(N'2015-04-06T00:00:00.000' AS DateTime), CAST(N'2013-09-02T00:00:00.000' AS DateTime), N'In Repair', CAST(539 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4434, N'2830774366', N'Total object-oriented hierarchy', N'Raise local project organization modern deal itself. Staff relationship present a positive beat. Wall man conference job term answer benefit hear. Space middle speech argue involve while.', N'Technology', CAST(N'2012-10-10T00:00:00.000' AS DateTime), CAST(N'2011-10-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(291 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4435, N'9152660471', N'Balanced client-driven architecture', N'Despite grow he life move. Run because ask explain reason on know his. Like nice her according. Whom despite last statement. Oil event cause until their until goal. Level think film major across.', N'Fiction', CAST(N'1993-07-02T00:00:00.000' AS DateTime), CAST(N'1988-08-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(963 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4436, N'8805494823', N'Enterprise-wide bi-directional forecast', N'Lot such present pressure. Game happen movie. Base together he. Yes interest usually card ball each. Newspaper I general we. Reality show beat amount.', N'Science', CAST(N'1986-01-16T00:00:00.000' AS DateTime), CAST(N'1980-07-02T00:00:00.000' AS DateTime), N'Reserved', CAST(120 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4437, N'1158920636', N'Optimized 4thgeneration model', N'Today individual character than never wish official. Across protect economic. After Democrat summer dog turn daughter. Live become growth along ready safe.', N'Non-Fiction', CAST(N'2000-09-23T00:00:00.000' AS DateTime), CAST(N'1982-03-16T00:00:00.000' AS DateTime), N'In Repair', CAST(336 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4438, N'2816440372', N'Re-contextualized incremental time-frame', N'Walk across response. Avoid community open above activity ball option court. Along class occur act five wonder animal. Food almost side those. Ahead cover address safe.', N'Biography', CAST(N'2000-01-01T00:00:00.000' AS DateTime), CAST(N'1981-12-12T00:00:00.000' AS DateTime), N'In Repair', CAST(884 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4439, N'7571187311', N'Upgradable hybrid customer loyalty', N'Manager water guess house body middle. Common decide several any factor image. Create ok baby account. Thing card law risk among she protect. Return other design wife.', N'Biography', CAST(N'2007-09-27T00:00:00.000' AS DateTime), CAST(N'1989-07-09T00:00:00.000' AS DateTime), N'Reserved', CAST(237 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4440, N'4186071947', N'Switchable fault-tolerant secured line', N'Stock various meeting natural window public life evening. Within around suggest knowledge city put. Any wife after.', N'Technology', CAST(N'2001-11-02T00:00:00.000' AS DateTime), CAST(N'1998-04-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(60 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4441, N'1580653518', N'Multi-layered actuating core', N'History sell nor edge thank eye without. Candidate seven cover what seem. Cold report never evening work blood stay.', N'History', CAST(N'1992-04-13T00:00:00.000' AS DateTime), CAST(N'1985-04-15T00:00:00.000' AS DateTime), N'Checked Out', CAST(419 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4442, N'9487563993', N'Expanded incremental access', N'Physical east church choice general old much. Large accept military truth. Boy idea should around prove.', N'Non-Fiction', CAST(N'2003-11-15T00:00:00.000' AS DateTime), CAST(N'2001-07-04T00:00:00.000' AS DateTime), N'Available', CAST(275 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4443, N'3000869352', N'Centralized heuristic structure', N'Before toward way without practice religious only. Cost indeed beat music suddenly water. Interest increase degree free once budget.', N'History', CAST(N'2009-02-11T00:00:00.000' AS DateTime), CAST(N'1993-01-09T00:00:00.000' AS DateTime), N'Available', CAST(627 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4444, N'2543734093', N'Cross-platform actuating workforce', N'Hospital suffer ball yes. Nation pull level. Check everyone budget. Scientist your art.', N'Non-Fiction', CAST(N'1997-01-07T00:00:00.000' AS DateTime), CAST(N'1994-07-13T00:00:00.000' AS DateTime), N'Reserved', CAST(619 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4445, N'7862349794', N'Multi-lateral dynamic workforce', N'Animal husband well nearly base. Quality require theory remain would. Raise safe evidence production laugh either.', N'Biography', CAST(N'1987-01-04T00:00:00.000' AS DateTime), CAST(N'1983-04-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(152 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4446, N'5169724330', N'Optional tertiary focus group', N'Strategy style next management listen strategy five. Mouth probably order agree matter cut. Newspaper sit popular owner daughter particular despite. Major laugh east should.', N'History', CAST(N'1997-08-20T00:00:00.000' AS DateTime), CAST(N'1986-07-09T00:00:00.000' AS DateTime), N'In Repair', CAST(550 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4447, N'6166496055', N'Phased hybrid capacity', N'Country voice sense shoulder. Chance weight place gun. Daughter every forget white public vote recognize. Hour able born collection.', N'Science', CAST(N'1980-03-04T00:00:00.000' AS DateTime), CAST(N'1980-02-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(250 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4448, N'6509551714', N'Distributed optimizing hierarchy', N'Voice little myself later care rest north. Expert floor prove. Song draw letter hundred enjoy reveal management realize. Role north behind. With early institution third bad method front on.', N'Fiction', CAST(N'2013-07-01T00:00:00.000' AS DateTime), CAST(N'1993-08-28T00:00:00.000' AS DateTime), N'Reserved', CAST(875 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4449, N'3090974675', N'Proactive object-oriented algorithm', N'Commercial specific crime chance. Remain think support manager suddenly. Fact pull century kid idea. Child least nearly edge bed.', N'Biography', CAST(N'2003-02-21T00:00:00.000' AS DateTime), CAST(N'1990-08-22T00:00:00.000' AS DateTime), N'Available', CAST(83 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4450, N'4353200405', N'Reactive homogeneous extranet', N'Away thousand over relate. Another agree sister. About page religious economy democratic magazine. Important forget fast. By site teacher officer stand.', N'Technology', CAST(N'1993-05-26T00:00:00.000' AS DateTime), CAST(N'1985-08-06T00:00:00.000' AS DateTime), N'Reserved', CAST(915 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4451, N'2940125346', N'Polarized real-time array', N'Respond another establish risk. Information nation measure artist war tough. Reason suddenly movement image stay likely. Find table physical each.', N'Non-Fiction', CAST(N'1996-07-21T00:00:00.000' AS DateTime), CAST(N'1980-09-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(110 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4452, N'2113411510', N'Customer-focused neutral productivity', N'White camera day it couple market out. Picture level law chance court fear office. Against matter away town. Actually probably pass pretty that on base. Fact treatment respond other worry.', N'Non-Fiction', CAST(N'1991-12-20T00:00:00.000' AS DateTime), CAST(N'1988-07-28T00:00:00.000' AS DateTime), N'Available', CAST(810 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4453, N'8782741115', N'De-engineered cohesive open system', N'Bank position simple thousand. Rise feeling goal respond. Travel follow between pressure chance. Country realize bag seem move require. Want break perhaps.', N'Biography', CAST(N'1994-03-30T00:00:00.000' AS DateTime), CAST(N'1986-04-03T00:00:00.000' AS DateTime), N'In Repair', CAST(696 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4454, N'3185959808', N'De-engineered well-modulated customer loyalty', N'Claim so across one girl investment. Mr indicate government upon. Growth enough heart charge room. Yeah drug wonder pressure movement.', N'History', CAST(N'2005-08-13T00:00:00.000' AS DateTime), CAST(N'2003-03-25T00:00:00.000' AS DateTime), N'Available', CAST(781 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4455, N'6593406735', N'Intuitive full-range moderator', N'Though view million he without. Mean listen too learn seven record father.', N'History', CAST(N'1995-10-11T00:00:00.000' AS DateTime), CAST(N'1985-02-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(448 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4456, N'4537868920', N'Networked high-level flexibility', N'Pattern sometimes hot necessary that. Explain chair add affect leave road lawyer. Expert option trip modern test hour likely. Energy community foot.', N'History', CAST(N'1994-09-07T00:00:00.000' AS DateTime), CAST(N'1987-01-15T00:00:00.000' AS DateTime), N'Available', CAST(470 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4457, N'4211722286', N'Down-sized bandwidth-monitored neural-net', N'Investment my similar side across action beyond. Against gas happen born growth. Anyone get defense nice ago bag.', N'Technology', CAST(N'2020-07-16T00:00:00.000' AS DateTime), CAST(N'1999-11-12T00:00:00.000' AS DateTime), N'Reserved', CAST(502 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4458, N'4176017041', N'Adaptive bifurcated moderator', N'Gas such measure their certain very I. Scene exist together later night miss on. Policy continue decide blue party style game. Well check begin blood. Relate join field before science analysis.', N'Non-Fiction', CAST(N'1986-12-20T00:00:00.000' AS DateTime), CAST(N'1982-09-26T00:00:00.000' AS DateTime), N'In Repair', CAST(229 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4459, N'3609390366', N'Persistent incremental synergy', N'Hear city upon recent. Someone wrong discuss prevent whether into. Lose about team center near feel baby themselves.', N'Biography', CAST(N'2009-10-11T00:00:00.000' AS DateTime), CAST(N'1993-06-03T00:00:00.000' AS DateTime), N'Reserved', CAST(398 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4460, N'1517106521', N'Distributed optimizing application', N'Myself factor former if interview. Present imagine cause return data. See technology throw. Knowledge notice area as. Site budget indeed individual clear miss.', N'Fiction', CAST(N'1986-01-10T00:00:00.000' AS DateTime), CAST(N'1985-11-26T00:00:00.000' AS DateTime), N'In Repair', CAST(460 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4461, N'4257836947', N'User-centric optimal secured line', N'Expert heart might so. Later tell late reason. Way actually rise Democrat.', N'History', CAST(N'1996-01-01T00:00:00.000' AS DateTime), CAST(N'1994-03-17T00:00:00.000' AS DateTime), N'Reserved', CAST(379 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4462, N'6384900000', N'Visionary tangible definition', N'Billion case others until. Provide here prepare perform. Recognize imagine edge your a. Cold artist agency series. Over high here too friend prepare.', N'History', CAST(N'2008-07-31T00:00:00.000' AS DateTime), CAST(N'1997-11-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(161 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4463, N'5499599480', N'Reverse-engineered client-server algorithm', N'Enter cost produce identify industry. Never realize when year which society. Rate state teach story parent news course. Cultural become role staff civil factor save.', N'Non-Fiction', CAST(N'2004-08-19T00:00:00.000' AS DateTime), CAST(N'1990-01-20T00:00:00.000' AS DateTime), N'Reserved', CAST(417 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4464, N'1410712595', N'Synergized uniform installation', N'Concern might purpose. Usually than amount buy. Agency from six research. Beautiful professional another level. Road despite also later seek.', N'Fiction', CAST(N'2014-05-11T00:00:00.000' AS DateTime), CAST(N'2001-12-09T00:00:00.000' AS DateTime), N'Available', CAST(279 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4465, N'8838501796', N'Synchronized secondary complexity', N'Arrive article beat. Citizen accept fall Congress north. Until president somebody bring long practice expect home.', N'Science', CAST(N'2007-07-18T00:00:00.000' AS DateTime), CAST(N'2004-11-24T00:00:00.000' AS DateTime), N'Reserved', CAST(946 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4466, N'3210274625', N'Self-enabling heuristic paradigm', N'With consider first site place. Professor reveal question brother husband model defense ahead. Certainly table produce really staff.', N'Technology', CAST(N'1989-09-09T00:00:00.000' AS DateTime), CAST(N'1986-08-22T00:00:00.000' AS DateTime), N'In Repair', CAST(402 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4467, N'6348485402', N'User-centric multimedia standardization', N'Base forward environmental teach. Avoid there hold black condition. So talk sell must happy former. Thought figure event interest positive hundred about again.', N'Technology', CAST(N'2016-10-01T00:00:00.000' AS DateTime), CAST(N'1993-10-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(299 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4468, N'9756546941', N'Centralized incremental encryption', N'Despite today material bad evidence. Rest treatment service theory sort senior general. Yet perform television concern. Support soldier again kid general top.', N'Biography', CAST(N'2010-05-08T00:00:00.000' AS DateTime), CAST(N'1986-01-12T00:00:00.000' AS DateTime), N'Available', CAST(137 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4469, N'8626742381', N'Centralized upward-trending methodology', N'Almost team bed bag short science over thus. Employee break vote a want. Note pattern able although.', N'Biography', CAST(N'1983-07-16T00:00:00.000' AS DateTime), CAST(N'1983-02-26T00:00:00.000' AS DateTime), N'Available', CAST(709 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4470, N'9422459222', N'Distributed asymmetric website', N'Manage building pass today still. Tend project size speak behind. Lawyer table candidate yeah late pretty real. Ground run dog us page him. Land deal simply wife.', N'History', CAST(N'1981-07-07T00:00:00.000' AS DateTime), CAST(N'1981-06-10T00:00:00.000' AS DateTime), N'Reserved', CAST(526 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4471, N'3174544028', N'Cross-group needs-based emulation', N'Long theory ahead available. Knowledge find smile. About consider describe line strategy action. Like result standard feeling return nature like travel.', N'Biography', CAST(N'2008-09-12T00:00:00.000' AS DateTime), CAST(N'2002-11-27T00:00:00.000' AS DateTime), N'In Repair', CAST(431 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4472, N'5078399981', N'Virtual demand-driven initiative', N'Offer once suddenly. Off recent thing get call. Save sound religious.', N'Technology', CAST(N'1981-02-03T00:00:00.000' AS DateTime), CAST(N'1980-04-25T00:00:00.000' AS DateTime), N'Available', CAST(54 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4473, N'6552954185', N'Operative eco-centric utilization', N'Soldier yet especially school themselves raise traditional still. Third can house political serious. Walk interview able I. Walk threat item. Together year share maintain majority likely.', N'Science', CAST(N'1980-04-01T00:00:00.000' AS DateTime), CAST(N'1980-01-07T00:00:00.000' AS DateTime), N'Available', CAST(89 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4474, N'1107207679', N'Future-proofed bi-directional implementation', N'Skin gas nation field. Choose quickly area himself experience animal possible middle. How wind and most board themselves difficult.', N'Biography', CAST(N'2002-08-30T00:00:00.000' AS DateTime), CAST(N'1986-06-16T00:00:00.000' AS DateTime), N'In Repair', CAST(891 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4475, N'1108071282', N'Ergonomic executive Graphical User Interface', N'Similar anyone mind treatment us. Play even score question those town adult. Serious there away whole. Decade alone mother south sell successful option. Practice bad face.', N'History', CAST(N'1982-01-11T00:00:00.000' AS DateTime), CAST(N'1981-03-16T00:00:00.000' AS DateTime), N'In Repair', CAST(416 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4476, N'2920716930', N'Profit-focused human-resource artificial intelligence', N'Seat economy run either partner myself occur five. To scientist positive president of key. Husband politics game father hold stand.', N'History', CAST(N'2005-08-20T00:00:00.000' AS DateTime), CAST(N'1999-08-28T00:00:00.000' AS DateTime), N'Available', CAST(89 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4477, N'7689165025', N'Synergistic systemic frame', N'Represent test bad century. Edge third weight film per thousand training. Near already everyone professional quality soon others. Quickly possible bring nature scientist game.', N'Biography', CAST(N'2022-12-21T00:00:00.000' AS DateTime), CAST(N'1995-01-29T00:00:00.000' AS DateTime), N'In Repair', CAST(473 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4478, N'2503465845', N'Self-enabling empowering pricing structure', N'Anyone to accept beautiful capital southern care. Early return easy check. American win election course anyone success Mr describe.', N'Technology', CAST(N'1980-08-11T00:00:00.000' AS DateTime), CAST(N'1980-07-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(613 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4479, N'3271795948', N'Cross-platform 4thgeneration methodology', N'Quality challenge recognize population bed think fact. Action strong rock I animal ball two. Create walk evidence final likely write meet. Perform of to. Democratic either safe.', N'Science', CAST(N'1997-12-30T00:00:00.000' AS DateTime), CAST(N'1994-10-10T00:00:00.000' AS DateTime), N'In Repair', CAST(595 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4480, N'4526468709', N'Innovative discrete frame', N'Success local either already however. Guy hair word avoid generation his age attorney. Husband table look population. Involve nature citizen perhaps he. Fall throughout account guy interest.', N'Science', CAST(N'2008-12-06T00:00:00.000' AS DateTime), CAST(N'1995-11-14T00:00:00.000' AS DateTime), N'Available', CAST(431 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4481, N'5823542280', N'Expanded incremental standardization', N'Base hospital offer outside. Seek big soldier only popular cover article radio. Organization continue poor kind.', N'Non-Fiction', CAST(N'2001-12-14T00:00:00.000' AS DateTime), CAST(N'1988-08-25T00:00:00.000' AS DateTime), N'Reserved', CAST(111 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4482, N'5809759065', N'Adaptive exuding data-warehouse', N'Less entire wind down. Official energy camera adult attention. Voice hit war like involve nice.', N'Non-Fiction', CAST(N'1995-04-15T00:00:00.000' AS DateTime), CAST(N'1987-07-18T00:00:00.000' AS DateTime), N'Checked Out', CAST(446 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4483, N'1986135650', N'Virtual zero-defect attitude', N'Key pay large where charge range. At necessary commercial its girl. Bar piece establish act. Week exactly reason meeting. Stock cost nothing growth industry ago. Answer child beautiful foot.', N'Non-Fiction', CAST(N'2013-12-29T00:00:00.000' AS DateTime), CAST(N'1990-04-24T00:00:00.000' AS DateTime), N'In Repair', CAST(253 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4484, N'2109818001', N'Re-contextualized radical flexibility', N'Music rich save amount something industry civil. Star often anyone near event box yourself. West total close late me clearly service address.', N'History', CAST(N'1997-04-03T00:00:00.000' AS DateTime), CAST(N'1996-02-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(485 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4485, N'9354237533', N'Ameliorated national superstructure', N'Stop cultural consumer chair campaign network scene. Myself her century during land rule lot. Service big in. Skin major chance threat hot bed.', N'Science', CAST(N'2014-07-11T00:00:00.000' AS DateTime), CAST(N'1990-08-15T00:00:00.000' AS DateTime), N'Available', CAST(864 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4486, N'3250136202', N'Expanded full-range complexity', N'Enter something wide just treat quite picture. Enough traditional Democrat owner ago culture food station. With listen resource open. Four although central size. Perhaps position never.', N'Fiction', CAST(N'2003-04-06T00:00:00.000' AS DateTime), CAST(N'1992-06-17T00:00:00.000' AS DateTime), N'In Repair', CAST(244 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4487, N'9304491596', N'Vision-oriented discrete contingency', N'Get mind admit drug of. Fly statement second pull parent natural particularly. Specific practice democratic put. Less level nation very win recently fund. Pressure bed well fall must near exist.', N'Fiction', CAST(N'2006-06-10T00:00:00.000' AS DateTime), CAST(N'1995-12-28T00:00:00.000' AS DateTime), N'Reserved', CAST(916 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4488, N'4976380377', N'Decentralized leadingedge parallelism', N'Color blue discover mission statement activity. Great sometimes none statement. Design they big great. Term wait attorney game. Line animal task air. New sure describe film rate culture ability way.', N'Science', CAST(N'2018-09-04T00:00:00.000' AS DateTime), CAST(N'1993-01-10T00:00:00.000' AS DateTime), N'Reserved', CAST(300 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4489, N'5682074861', N'Monitored full-range middleware', N'Role action whom explain. Lay dog perhaps cold whatever rate drug. With rule morning heart speak. Evidence nature reflect society free either.', N'Biography', CAST(N'1981-11-22T00:00:00.000' AS DateTime), CAST(N'1980-01-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(388 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4490, N'7350952966', N'Realigned zero tolerance customer loyalty', N'Save allow dog class gun out sort. Face black fear price. Risk dog foot capital I analysis speech.', N'Science', CAST(N'2000-11-22T00:00:00.000' AS DateTime), CAST(N'1995-04-19T00:00:00.000' AS DateTime), N'Checked Out', CAST(121 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4491, N'7110429435', N'Inverse maximized capacity', N'Same help pattern buy enter system source. Make behavior special shake history window. Official myself safe choose have share Mr.', N'Technology', CAST(N'1991-07-10T00:00:00.000' AS DateTime), CAST(N'1990-11-14T00:00:00.000' AS DateTime), N'In Repair', CAST(240 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4492, N'3735319510', N'Virtual asymmetric projection', N'Late admit describe raise turn. Action indeed process wait probably.', N'Non-Fiction', CAST(N'1987-03-12T00:00:00.000' AS DateTime), CAST(N'1981-08-02T00:00:00.000' AS DateTime), N'Reserved', CAST(230 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4493, N'6986991877', N'Profound heuristic forecast', N'Next her along language worry window. Movement lay support laugh break hair night. World need risk music reduce where occur.', N'Non-Fiction', CAST(N'2018-09-22T00:00:00.000' AS DateTime), CAST(N'2008-07-27T00:00:00.000' AS DateTime), N'Reserved', CAST(719 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4494, N'1667493751', N'Front-line tangible groupware', N'Act why least also attorney. Investment bed range debate develop. Director official study treat about left. Much that person lose.', N'Technology', CAST(N'1982-08-04T00:00:00.000' AS DateTime), CAST(N'1981-02-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(96 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4495, N'4970904106', N'Future-proofed regional superstructure', N'East movement leave. None low begin against. Son open could professor piece. Material body raise who science wear together.', N'Science', CAST(N'1990-09-14T00:00:00.000' AS DateTime), CAST(N'1987-01-04T00:00:00.000' AS DateTime), N'Reserved', CAST(939 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4496, N'1354482765', N'Robust disintermediate knowledgebase', N'Expect data really. American human hand. Opportunity white picture only fund role walk. Market audience across speak number available full.', N'Biography', CAST(N'1983-11-17T00:00:00.000' AS DateTime), CAST(N'1980-07-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(773 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4497, N'9352395277', N'Seamless maximized paradigm', N'Man however kid citizen city difference animal. Short line effect continue. Of career style away almost.', N'Science', CAST(N'1982-08-11T00:00:00.000' AS DateTime), CAST(N'1982-05-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(473 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4498, N'1486598996', N'Intuitive 24hour success', N'Left building tell join expert lead magazine. Dark treatment question cause boy talk husband. Large other perhaps really its magazine speak seven. Only significant center old have near blood.', N'Biography', CAST(N'1992-02-24T00:00:00.000' AS DateTime), CAST(N'1989-12-18T00:00:00.000' AS DateTime), N'Reserved', CAST(373 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4499, N'5072634646', N'Face-to-face intangible collaboration', N'Walk turn probably discuss short yard foot process. Account part assume film realize. Name Democrat arrive news upon everybody certain sing. Suggest produce about there. Record price general.', N'Non-Fiction', CAST(N'1990-02-27T00:00:00.000' AS DateTime), CAST(N'1982-08-03T00:00:00.000' AS DateTime), N'Available', CAST(421 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4500, N'4852588634', N'Cloned needs-based application', N'Practice laugh hour example. Keep scene science section yard interview. Take feel executive court beat their present. Republican its collection factor sister no poor attack.', N'History', CAST(N'1981-08-27T00:00:00.000' AS DateTime), CAST(N'1980-06-30T00:00:00.000' AS DateTime), N'In Repair', CAST(845 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4501, N'1322126708', N'Pre-emptive heuristic neural-net', N'Defense case science animal question. Send if seat skin back world something. Her certain yard from voice. Argue traditional place again vote road.', N'Biography', CAST(N'2012-01-06T00:00:00.000' AS DateTime), CAST(N'1994-04-06T00:00:00.000' AS DateTime), N'Available', CAST(967 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4502, N'5745566096', N'Front-line modular open system', N'Upon tough no fund child amount. Quality during traditional sister director whatever. Your pressure say require those lot.', N'Non-Fiction', CAST(N'1999-08-06T00:00:00.000' AS DateTime), CAST(N'1996-05-27T00:00:00.000' AS DateTime), N'In Repair', CAST(111 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4503, N'3427001850', N'Progressive intermediate customer loyalty', N'Least offer tough maybe number several. Shoulder land care result issue later. Explain they cultural two white school interesting. Question southern business support full amount more.', N'Non-Fiction', CAST(N'2002-05-24T00:00:00.000' AS DateTime), CAST(N'1987-08-31T00:00:00.000' AS DateTime), N'Available', CAST(529 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4504, N'3524848247', N'Pre-emptive system-worthy implementation', N'Painting responsibility fly increase realize morning dog. Set possible big. Product training pattern pattern employee deep.', N'Technology', CAST(N'2020-05-30T00:00:00.000' AS DateTime), CAST(N'2013-12-19T00:00:00.000' AS DateTime), N'Available', CAST(200 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4505, N'8364230382', N'Expanded 5thgeneration throughput', N'Him news one former. Street read avoid maintain seem. Apply sister worker hit glass study.', N'Fiction', CAST(N'1989-12-30T00:00:00.000' AS DateTime), CAST(N'1980-11-17T00:00:00.000' AS DateTime), N'In Repair', CAST(763 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4506, N'5569561397', N'Re-engineered clear-thinking time-frame', N'Fact likely add career last energy thing. Idea beat born election. Manage girl citizen. Suffer recently change military deep. Son collection see.', N'Science', CAST(N'1998-01-24T00:00:00.000' AS DateTime), CAST(N'1989-03-06T00:00:00.000' AS DateTime), N'Checked Out', CAST(617 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4507, N'7471099535', N'Versatile needs-based neural-net', N'Kid difference traditional save. Require me appear section business baby social. Thought one use answer with. Blood take charge. Ten behind large wide. Yard base prepare.', N'History', CAST(N'1998-06-18T00:00:00.000' AS DateTime), CAST(N'1988-03-11T00:00:00.000' AS DateTime), N'In Repair', CAST(341 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4508, N'9778587346', N'Open-architected fresh-thinking contingency', N'Because in control economy school point. Can drive military friend price. Recent understand it gas reason all well. Four series others write weight black.', N'History', CAST(N'2024-07-17T00:00:00.000' AS DateTime), CAST(N'1999-03-21T00:00:00.000' AS DateTime), N'Checked Out', CAST(471 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4509, N'9602585977', N'Automated mobile secured line', N'City six before first answer act unit white. For time forward become popular tonight. Budget activity certainly media example together list. Buy never town act cover structure window.', N'Fiction', CAST(N'2007-08-01T00:00:00.000' AS DateTime), CAST(N'1981-04-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(724 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4510, N'7830918987', N'Down-sized 5thgeneration website', N'Gun explain break key. Upon see answer material sometimes. Particular home wear claim inside administration. Sound ready assume apply. Candidate head expert type quickly.', N'History', CAST(N'2008-08-22T00:00:00.000' AS DateTime), CAST(N'2003-07-31T00:00:00.000' AS DateTime), N'Available', CAST(61 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4511, N'7092410429', N'Synchronized regional open architecture', N'General car themselves follow charge approach appear themselves. Medical second order have individual central line. Shake have garden garden. The start change more tree reality law.', N'Fiction', CAST(N'2008-09-05T00:00:00.000' AS DateTime), CAST(N'1992-08-16T00:00:00.000' AS DateTime), N'Available', CAST(133 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4512, N'1065797195', N'Mandatory uniform open system', N'Special age either very attention through other. Direction hard million buy. Today doctor best difference. Machine fact your. Push American note according. Air Mrs suffer understand.', N'Non-Fiction', CAST(N'2007-06-17T00:00:00.000' AS DateTime), CAST(N'1980-10-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(798 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4513, N'3002067130', N'Sharable value-added concept', N'Design concern sure author until wrong. Discuss serious daughter present civil wear interview. Bit police Congress prevent involve he. Before government support PM fall certain.', N'Technology', CAST(N'2019-02-26T00:00:00.000' AS DateTime), CAST(N'1994-04-14T00:00:00.000' AS DateTime), N'Reserved', CAST(744 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4514, N'5859945696', N'Face-to-face 6thgeneration encryption', N'Several social south stand. Assume cost pick. Argue partner former plant teach beat allow million. Red citizen enjoy human.', N'Technology', CAST(N'1992-03-13T00:00:00.000' AS DateTime), CAST(N'1986-12-21T00:00:00.000' AS DateTime), N'Reserved', CAST(292 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4515, N'1159282076', N'Down-sized next generation initiative', N'Various thought tell among issue case point available. Heart food manager there. Scientist main energy occur pass main. Black media stock however task.', N'Biography', CAST(N'1982-10-09T00:00:00.000' AS DateTime), CAST(N'1980-11-08T00:00:00.000' AS DateTime), N'Available', CAST(274 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4516, N'9650008219', N'Implemented global secured line', N'Among almost yourself hotel free. Marriage pay customer. Result still talk read property claim. Painting bar customer ago meet.', N'Technology', CAST(N'1994-09-26T00:00:00.000' AS DateTime), CAST(N'1993-10-25T00:00:00.000' AS DateTime), N'Reserved', CAST(470 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4517, N'3013817846', N'Optimized reciprocal project', N'Tax third somebody later western. Close necessary low list line. Leader check hand imagine within any him. Marriage ready something pressure meeting response.', N'Non-Fiction', CAST(N'2023-03-30T00:00:00.000' AS DateTime), CAST(N'2011-01-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(658 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4518, N'8173224312', N'Optional bi-directional toolset', N'Question nice international new pressure. Mother but science result indicate kid actually. Recent our probably prove.', N'History', CAST(N'2007-10-20T00:00:00.000' AS DateTime), CAST(N'1994-12-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(281 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4519, N'6787097774', N'Proactive upward-trending throughput', N'Level age pay ever health. Source month red letter material. Strong late card then measure major. Include how son.', N'Non-Fiction', CAST(N'1984-11-04T00:00:00.000' AS DateTime), CAST(N'1983-02-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(505 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4520, N'1803975161', N'Public-key eco-centric conglomeration', N'Her middle answer any former training pressure deep. Have rest friend end edge necessary hope. Staff oil never heart. Someone home black.', N'History', CAST(N'1998-01-14T00:00:00.000' AS DateTime), CAST(N'1997-03-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(84 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4521, N'8514014591', N'Distributed intangible throughput', N'Unit how career trouble if build. Law worry protect mention kind business lay. Student instead entire hear. Seek to section with. Nearly bank herself poor develop city.', N'Fiction', CAST(N'2019-08-01T00:00:00.000' AS DateTime), CAST(N'2011-09-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(751 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4522, N'8482540951', N'Fundamental client-server moratorium', N'Know identify newspaper follow. System main sister everybody think draw not. Win morning much amount important.', N'Fiction', CAST(N'2024-03-17T00:00:00.000' AS DateTime), CAST(N'2007-09-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(971 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4523, N'8848291492', N'Operative high-level migration', N'Culture alone property behind tonight important. Star question nation option administration tell. Individual population current.', N'Non-Fiction', CAST(N'2003-12-18T00:00:00.000' AS DateTime), CAST(N'1991-04-29T00:00:00.000' AS DateTime), N'Reserved', CAST(734 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4524, N'2850392227', N'Mandatory multi-state alliance', N'End scene another career. Talk vote technology term walk figure medical reality. Present PM skill product company. Serious official art water easy us. Fill shoulder pick subject.', N'Non-Fiction', CAST(N'2018-12-30T00:00:00.000' AS DateTime), CAST(N'2000-04-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(703 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4525, N'4248526017', N'Front-line transitional encoding', N'Itself training suffer. Individual popular various short important. Study create picture democratic billion should many. Base series rule heavy final old.', N'Technology', CAST(N'1997-09-19T00:00:00.000' AS DateTime), CAST(N'1989-06-27T00:00:00.000' AS DateTime), N'Available', CAST(147 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4526, N'6118125539', N'Profound static challenge', N'Whatever let participant control note more energy thus. Technology leave easy wind before take various.', N'Biography', CAST(N'1981-04-11T00:00:00.000' AS DateTime), CAST(N'1980-08-08T00:00:00.000' AS DateTime), N'In Repair', CAST(942 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4527, N'2577356394', N'Sharable reciprocal strategy', N'Experience upon information mean agreement. Week stay voice cover there loss fund wonder. Call director member market.', N'History', CAST(N'1985-01-27T00:00:00.000' AS DateTime), CAST(N'1981-10-01T00:00:00.000' AS DateTime), N'Reserved', CAST(820 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4528, N'8716506123', N'Customer-focused national monitoring', N'Feel bad culture yet rate amount. Form message behind two. Work voice choice wish voice. Window consumer give value. Interesting law soon. Detail garden city what that marriage.', N'Non-Fiction', CAST(N'2003-08-15T00:00:00.000' AS DateTime), CAST(N'1996-05-13T00:00:00.000' AS DateTime), N'Reserved', CAST(612 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4529, N'1742078343', N'Balanced neutral array', N'A very agree population wonder thing. Situation never at important religious because green. Drop control maintain with movie simply.', N'Biography', CAST(N'1980-08-30T00:00:00.000' AS DateTime), CAST(N'1980-05-16T00:00:00.000' AS DateTime), N'Available', CAST(812 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4530, N'4623510305', N'Seamless asymmetric monitoring', N'Life senior industry join what. South rate project street. Job include high only lose how about audience. Rate out big modern machine. Avoid avoid number daughter. Wear alone reflect natural.', N'History', CAST(N'1982-12-10T00:00:00.000' AS DateTime), CAST(N'1981-07-19T00:00:00.000' AS DateTime), N'Available', CAST(99 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4531, N'5464342125', N'Customizable bottom-line approach', N'Phone happen give sister. Financial whether social turn manager maybe skill out. Need lawyer attention process. Husband learn she east positive billion reason. Spend campaign society no guess.', N'Science', CAST(N'2023-11-12T00:00:00.000' AS DateTime), CAST(N'1984-09-29T00:00:00.000' AS DateTime), N'Reserved', CAST(440 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4532, N'7424381480', N'Cross-group intangible knowledge user', N'Mrs buy ability personal sure. Standard professor agreement respond fish example threat later.', N'Technology', CAST(N'2007-03-31T00:00:00.000' AS DateTime), CAST(N'1982-05-24T00:00:00.000' AS DateTime), N'Available', CAST(282 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4533, N'3539151098', N'Triple-buffered encompassing Graphic Interface', N'Oil treatment section see consumer far. Garden meeting appear price southern city until. Become mother including such north work. Surface yet feel west father seven down.', N'Biography', CAST(N'2000-08-24T00:00:00.000' AS DateTime), CAST(N'1982-05-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(844 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4534, N'8657390135', N'Down-sized well-modulated system engine', N'Wonder teach my key. All would seek car at receive first purpose. Main law choose pattern back. Field space may matter tax begin it. Occur open security participant skill attorney few source.', N'Technology', CAST(N'2010-05-22T00:00:00.000' AS DateTime), CAST(N'1990-11-21T00:00:00.000' AS DateTime), N'Checked Out', CAST(327 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4535, N'6761456488', N'Pre-emptive stable pricing structure', N'Nor where best according story. Team learn in history nature card. Mention decision drive always less much scientist soldier.', N'Technology', CAST(N'2018-03-17T00:00:00.000' AS DateTime), CAST(N'1986-04-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(835 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4536, N'1464267817', N'Triple-buffered directional Local Area Network', N'Accept thing word hot total. Follow good far poor. Street west third surface whatever. Less ok eight soon side pick. Book him data tough might good. Be deep top represent for. Believe reason foreign.', N'Technology', CAST(N'2004-05-23T00:00:00.000' AS DateTime), CAST(N'1995-02-25T00:00:00.000' AS DateTime), N'In Repair', CAST(581 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4537, N'7784647543', N'Cross-platform mission-critical archive', N'Person design main life improve morning present girl. Everybody prepare job night. Most him step arm per discover. White one half middle myself live.', N'Fiction', CAST(N'1987-10-16T00:00:00.000' AS DateTime), CAST(N'1982-03-02T00:00:00.000' AS DateTime), N'Reserved', CAST(316 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4538, N'3261607738', N'Profound well-modulated open architecture', N'Official occur former stock myself. Result several soon themselves serve win learn. Eat future behind realize game ten. House central TV military bank challenge. Race thank chance.', N'Non-Fiction', CAST(N'2003-12-25T00:00:00.000' AS DateTime), CAST(N'1980-09-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(586 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4539, N'2093331231', N'Streamlined secondary capability', N'Group can step land. Decade kitchen official phone. During happy speech difficult student business. Blood mind home. Somebody with stay care area way choice indeed.', N'Non-Fiction', CAST(N'2014-08-06T00:00:00.000' AS DateTime), CAST(N'1984-07-13T00:00:00.000' AS DateTime), N'Available', CAST(665 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4540, N'6079083635', N'Upgradable attitude-oriented parallelism', N'Thus note heart around. Trip cup policy majority work certain say. Bar ahead let whose reflect open food. Walk break Mr.', N'Biography', CAST(N'2015-02-27T00:00:00.000' AS DateTime), CAST(N'1985-12-11T00:00:00.000' AS DateTime), N'In Repair', CAST(248 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4541, N'1863381017', N'Exclusive zero tolerance infrastructure', N'Under policy dog member almost close. Across base rise tonight good write effort. Level whatever public leave program.', N'Non-Fiction', CAST(N'2001-01-24T00:00:00.000' AS DateTime), CAST(N'1987-09-15T00:00:00.000' AS DateTime), N'Reserved', CAST(171 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4542, N'9316072836', N'Secured didactic project', N'Memory analysis chance join product front. Recently station down daughter administration put. Beat radio yard support. Even possible choice mother.', N'Science', CAST(N'2008-01-29T00:00:00.000' AS DateTime), CAST(N'1989-09-22T00:00:00.000' AS DateTime), N'Available', CAST(318 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4543, N'6235018173', N'Multi-layered uniform definition', N'Heavy everyone thought already vote dog. Unit station idea four lawyer represent. Level study according none both exactly wrong.', N'Science', CAST(N'2014-09-23T00:00:00.000' AS DateTime), CAST(N'2009-08-27T00:00:00.000' AS DateTime), N'Reserved', CAST(536 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4544, N'9394985649', N'Enhanced radical matrices', N'Trouble ready meet sense certain dream eight. Down much record west think picture step. Minute staff also day baby across hope form.', N'Science', CAST(N'1985-12-31T00:00:00.000' AS DateTime), CAST(N'1983-07-17T00:00:00.000' AS DateTime), N'Available', CAST(135 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4545, N'1653036037', N'Mandatory multimedia workforce', N'Land structure decade compare eight term tell. Strategy decision water control middle. Sell painting notice floor as back tend. Hair whether I control front history.', N'Technology', CAST(N'2020-10-18T00:00:00.000' AS DateTime), CAST(N'1980-06-15T00:00:00.000' AS DateTime), N'Available', CAST(116 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4546, N'2596951421', N'Horizontal responsive complexity', N'Mention thought discover feeling police bed senior. Culture one fine. Letter anything field maybe. Second society six participant place church.', N'Fiction', CAST(N'2016-09-03T00:00:00.000' AS DateTime), CAST(N'1981-10-01T00:00:00.000' AS DateTime), N'Reserved', CAST(809 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4547, N'4169244350', N'Ergonomic attitude-oriented complexity', N'Along weight argue left analysis why. Himself hit why evidence. Professional lay which physical sell. Music same thought cup find that cultural. Future here health. Stand become order war former.', N'Technology', CAST(N'2008-01-16T00:00:00.000' AS DateTime), CAST(N'1999-11-23T00:00:00.000' AS DateTime), N'In Repair', CAST(742 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4548, N'1987080968', N'Optional disintermediate Local Area Network', N'Off change environment past kind serve nearly entire. The might our time star country reach.', N'Biography', CAST(N'2008-04-01T00:00:00.000' AS DateTime), CAST(N'2007-08-22T00:00:00.000' AS DateTime), N'Reserved', CAST(375 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4549, N'8490189578', N'Balanced modular matrices', N'Forward budget half operation hear. Country floor bank note experience everyone meet. Site red defense city. Hold international commercial wall to firm policy.', N'Technology', CAST(N'2015-11-01T00:00:00.000' AS DateTime), CAST(N'1993-11-22T00:00:00.000' AS DateTime), N'Available', CAST(321 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4550, N'2049402609', N'Fully-configurable global service-desk', N'Phone office water anyone expect nothing responsibility. Southern population reduce onto upon sit. Low knowledge expect buy size among option. Six size big short majority close.', N'Biography', CAST(N'1999-10-06T00:00:00.000' AS DateTime), CAST(N'1992-08-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(377 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4551, N'7885282659', N'Cross-platform 3rdgeneration archive', N'Natural dog exactly. Personal situation general plant nation behavior religious action.', N'Non-Fiction', CAST(N'2020-06-20T00:00:00.000' AS DateTime), CAST(N'1984-10-30T00:00:00.000' AS DateTime), N'Available', CAST(641 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4552, N'1760759366', N'Public-key uniform application', N'Organization class material either value work. Stage friend local security different. Actually why carry listen music. Age game feeling wonder each change main. True relationship tend since her pay.', N'Biography', CAST(N'1982-12-02T00:00:00.000' AS DateTime), CAST(N'1981-04-07T00:00:00.000' AS DateTime), N'In Repair', CAST(61 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4553, N'9121911112', N'Stand-alone upward-trending database', N'Production whether true medical. Audience hold civil former air employee. South performance sense catch range site important company.', N'Science', CAST(N'2017-03-28T00:00:00.000' AS DateTime), CAST(N'1989-01-26T00:00:00.000' AS DateTime), N'Available', CAST(795 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4554, N'3576605915', N'Open-source local toolset', N'Piece country so teacher. Authority glass wear student people help. Wrong according reach.', N'Non-Fiction', CAST(N'2008-08-25T00:00:00.000' AS DateTime), CAST(N'1986-10-08T00:00:00.000' AS DateTime), N'Available', CAST(236 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4555, N'1275956881', N'User-friendly secondary instruction set', N'Green option middle lose hot. Take station east modern food use art. Personal to house stand course walk. Must practice sound difference. Ago which green parent support.', N'Biography', CAST(N'1997-04-03T00:00:00.000' AS DateTime), CAST(N'1981-07-08T00:00:00.000' AS DateTime), N'In Repair', CAST(51 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4556, N'3322002867', N'Enhanced composite concept', N'Red leg close statement toward young staff. Authority air mind gas with into. Still section idea. Under pull bring affect Mr modern wait. Possible find begin face much physical. Economic step arm.', N'Technology', CAST(N'2001-05-29T00:00:00.000' AS DateTime), CAST(N'1993-10-12T00:00:00.000' AS DateTime), N'Available', CAST(932 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4557, N'8951004269', N'Open-architected bifurcated info-mediaries', N'Owner market tell firm decide. Subject sing church key everybody hot sea. Not here only when receive. Sound media month reveal environmental relate. Kitchen maintain house necessary country serve be.', N'Non-Fiction', CAST(N'1995-07-21T00:00:00.000' AS DateTime), CAST(N'1995-04-17T00:00:00.000' AS DateTime), N'Reserved', CAST(600 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4558, N'4257557347', N'Right-sized user-facing paradigm', N'Fall little word cause one describe. Scene cut she or. Store tell future behavior. Alone accept industry kid southern half. Recently character sort.', N'Science', CAST(N'2010-05-11T00:00:00.000' AS DateTime), CAST(N'1987-04-18T00:00:00.000' AS DateTime), N'In Repair', CAST(988 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4559, N'2432353866', N'Fundamental motivating time-frame', N'Clear base should under customer hour common. Worry even least rock whether drop store factor. One successful bed political financial goal. Blue them chair.', N'Technology', CAST(N'2001-05-29T00:00:00.000' AS DateTime), CAST(N'1980-05-11T00:00:00.000' AS DateTime), N'Available', CAST(575 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4560, N'7863033176', N'Synergized hybrid contingency', N'Special poor forget heavy. Politics job series dog young ability city how. Reflect always school nothing recently final modern. Parent tend while financial affect identify week.', N'History', CAST(N'2008-08-03T00:00:00.000' AS DateTime), CAST(N'1986-06-02T00:00:00.000' AS DateTime), N'Reserved', CAST(400 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4561, N'5035965667', N'Customizable grid-enabled throughput', N'Executive pass economic certain. Mother bit resource glass yet thus practice. Two whole full across. Country later doctor day. Investment reduce run possible people.', N'Technology', CAST(N'2007-10-29T00:00:00.000' AS DateTime), CAST(N'1981-01-22T00:00:00.000' AS DateTime), N'Available', CAST(897 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4562, N'4521587436', N'Total attitude-oriented pricing structure', N'Much step industry less bank. People interview away from culture whole. Citizen unit travel near. Environment while hotel oil require up. Pull not public law.', N'Technology', CAST(N'2021-06-06T00:00:00.000' AS DateTime), CAST(N'1985-02-01T00:00:00.000' AS DateTime), N'Available', CAST(424 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4563, N'9293847298', N'Re-contextualized bi-directional intranet', N'Tonight everybody usually. Notice environmental business huge sort. Child who work entire. Fast huge yourself live political design seat. Race quality then.', N'History', CAST(N'2007-11-27T00:00:00.000' AS DateTime), CAST(N'1993-04-23T00:00:00.000' AS DateTime), N'Reserved', CAST(193 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4564, N'7349576034', N'Reactive multi-state productivity', N'Force might general blood author bad. Whole sound staff successful response word nice. Past anything staff yard adult community turn.', N'Biography', CAST(N'2012-09-02T00:00:00.000' AS DateTime), CAST(N'2010-07-05T00:00:00.000' AS DateTime), N'Reserved', CAST(523 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4565, N'7436167676', N'Decentralized maximized collaboration', N'Price parent point can year. Pretty serious partner own. Grow everyone city value race. Office traditional practice green care play cold agency. Recognize all her bring. Model decade type school.', N'Non-Fiction', CAST(N'2012-09-17T00:00:00.000' AS DateTime), CAST(N'1990-11-24T00:00:00.000' AS DateTime), N'Available', CAST(820 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4566, N'9363769591', N'Quality-focused foreground emulation', N'Vote structure onto up church computer often scientist. Run none anything tree property full former story. Indeed bank room foot.', N'Fiction', CAST(N'1981-01-15T00:00:00.000' AS DateTime), CAST(N'1980-04-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(209 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4567, N'3176236465', N'Re-contextualized disintermediate Graphic Interface', N'Detail bed understand set size indicate in loss. Through act itself. Laugh produce process give push. Information class scientist campaign front treat father.', N'Technology', CAST(N'1984-07-07T00:00:00.000' AS DateTime), CAST(N'1981-10-09T00:00:00.000' AS DateTime), N'Reserved', CAST(529 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4568, N'6911629675', N'Profound national extranet', N'They husband how decide eat cost. Institution reveal thank that cut option seat. Medical any organization member these accept number. Avoid social hotel hit dark choice.', N'Biography', CAST(N'2007-12-15T00:00:00.000' AS DateTime), CAST(N'1980-11-07T00:00:00.000' AS DateTime), N'Reserved', CAST(398 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4569, N'3302493719', N'Assimilated 24hour project', N'Relationship news news two indicate I food. Per improve themselves recently. Leg catch product eat discuss audience.', N'Fiction', CAST(N'2005-09-11T00:00:00.000' AS DateTime), CAST(N'1985-10-11T00:00:00.000' AS DateTime), N'Available', CAST(304 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4570, N'8722686265', N'Assimilated dynamic complexity', N'Last cut participant score. Sure Republican fly look source cup. Shoulder can want coach entire security. Detail sound one speak bed home member.', N'History', CAST(N'2024-03-02T00:00:00.000' AS DateTime), CAST(N'1980-06-30T00:00:00.000' AS DateTime), N'Available', CAST(927 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4571, N'1033218179', N'Right-sized empowering structure', N'Affect seat remember all measure nature ability. Take thus sense finally past. Laugh want job suggest.', N'History', CAST(N'1989-02-22T00:00:00.000' AS DateTime), CAST(N'1986-12-10T00:00:00.000' AS DateTime), N'Reserved', CAST(731 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4572, N'5297703108', N'Object-based 24hour matrix', N'Safe cause nation talk day church thousand. Themselves movie defense write. Respond between production. Happen three hundred sister. Move community final design significant low heart.', N'Non-Fiction', CAST(N'2014-05-02T00:00:00.000' AS DateTime), CAST(N'1997-06-19T00:00:00.000' AS DateTime), N'Reserved', CAST(739 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4573, N'6562943455', N'Multi-channeled attitude-oriented service-desk', N'Sometimes particularly much doctor. Wife never record trip show. Phone town into former former large tree.', N'Science', CAST(N'2017-12-02T00:00:00.000' AS DateTime), CAST(N'2002-02-01T00:00:00.000' AS DateTime), N'Reserved', CAST(448 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4574, N'7415400458', N'Optional composite implementation', N'Skin however must you age change. Scene fall kind. Human pretty sea car against theory wait usually. Whole husband middle wear shake grow investment. Loss per staff play field.', N'Technology', CAST(N'1996-06-13T00:00:00.000' AS DateTime), CAST(N'1996-02-04T00:00:00.000' AS DateTime), N'Available', CAST(353 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4575, N'3810393901', N'Triple-buffered zero-defect toolset', N'Rise standard country history establish. History bit significant good ok bill. Different real realize person. Yard which person leg believe must read officer.', N'Non-Fiction', CAST(N'2005-04-10T00:00:00.000' AS DateTime), CAST(N'2004-05-24T00:00:00.000' AS DateTime), N'In Repair', CAST(655 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4576, N'9893434249', N'Right-sized didactic secured line', N'Front last move us. One economic school seem term large. Section lawyer full baby.', N'History', CAST(N'1981-10-07T00:00:00.000' AS DateTime), CAST(N'1980-02-21T00:00:00.000' AS DateTime), N'Reserved', CAST(319 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4577, N'9165673357', N'Synergized upward-trending moratorium', N'War house culture indeed middle. Guess cold nothing human. Onto finally board customer mean past continue.', N'Non-Fiction', CAST(N'2006-08-24T00:00:00.000' AS DateTime), CAST(N'2000-03-18T00:00:00.000' AS DateTime), N'In Repair', CAST(695 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4578, N'6595511842', N'Secured 5thgeneration algorithm', N'Democratic no will arrive hold race draw. Hundred action look whose total agency present. Lose positive yes laugh. Keep attention into word. Standard commercial common there amount personal.', N'History', CAST(N'1996-10-31T00:00:00.000' AS DateTime), CAST(N'1981-07-07T00:00:00.000' AS DateTime), N'In Repair', CAST(104 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4579, N'5431819778', N'Up-sized next generation secured line', N'Central reality whole tree receive street good. Civil response computer small church. Factor paper attention me coach candidate with.', N'Science', CAST(N'2009-03-04T00:00:00.000' AS DateTime), CAST(N'1985-02-17T00:00:00.000' AS DateTime), N'Available', CAST(698 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4580, N'2195026985', N'Automated tangible encoding', N'Country plan sense responsibility science. Campaign series game yet. Hundred if go. Table six plant. Just appear program hand. Product pull land. Heart color development.', N'History', CAST(N'1980-01-06T00:00:00.000' AS DateTime), CAST(N'1980-01-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(316 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4581, N'7143878932', N'Sharable radical middleware', N'Decade agree join morning teacher citizen. Culture notice thought dark. Dark close full wait spring. Wrong kid tend wall industry open stock memory. The who others theory billion member.', N'Technology', CAST(N'1998-01-07T00:00:00.000' AS DateTime), CAST(N'1983-07-27T00:00:00.000' AS DateTime), N'Reserved', CAST(696 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4582, N'1433308955', N'Organized non-volatile migration', N'Write or policy turn message. Especially life green avoid foot too on price. I nice need sort. Specific avoid second network police. Thus threat he law cold part set. How soldier more.', N'Non-Fiction', CAST(N'1980-12-28T00:00:00.000' AS DateTime), CAST(N'1980-11-04T00:00:00.000' AS DateTime), N'In Repair', CAST(718 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4583, N'4425584638', N'Organized interactive matrix', N'Serve hope such sense. Assume member model area food certain. Significant enter her purpose. Amount recognize without more out base goal take.', N'Non-Fiction', CAST(N'2013-03-13T00:00:00.000' AS DateTime), CAST(N'1998-01-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(206 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4584, N'5357187141', N'Proactive local portal', N'President discuss attorney open page authority. Cost age record send early southern. Region beat only technology recognize speak. Everything big she.', N'History', CAST(N'1983-11-11T00:00:00.000' AS DateTime), CAST(N'1980-01-25T00:00:00.000' AS DateTime), N'Reserved', CAST(365 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4585, N'6577696899', N'Organized composite access', N'Young foreign open job both design same. Personal some establish remember general kind college we. We sit research floor left. Article production with little former then girl.', N'Technology', CAST(N'2004-09-04T00:00:00.000' AS DateTime), CAST(N'1995-10-30T00:00:00.000' AS DateTime), N'Available', CAST(735 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4586, N'4448074718', N'Exclusive zero administration throughput', N'Charge nature form box build nature. Truth note civil notice. Sort fall wear choice heart next. Soldier citizen interview color article money throughout. To follow tonight address service put.', N'Technology', CAST(N'2011-08-17T00:00:00.000' AS DateTime), CAST(N'1993-06-24T00:00:00.000' AS DateTime), N'In Repair', CAST(905 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4587, N'4627507735', N'Implemented radical challenge', N'Where effort prevent question. Language wide suddenly hot similar. Wish walk room second from car big. Difficult miss decide. Realize red I grow indicate. Star her deep hear.', N'Fiction', CAST(N'2019-08-24T00:00:00.000' AS DateTime), CAST(N'1991-03-12T00:00:00.000' AS DateTime), N'Available', CAST(724 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4588, N'8371301842', N'Mandatory directional ability', N'Dark pull book news. Myself for spend water PM surface. Too experience network. Blue former there firm production we manage throughout. Stuff subject training position past experience sign six.', N'History', CAST(N'2015-12-28T00:00:00.000' AS DateTime), CAST(N'1981-11-26T00:00:00.000' AS DateTime), N'Reserved', CAST(909 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4589, N'9412174783', N'Synergized disintermediate collaboration', N'Involve reduce report issue class send later. Very car article break statement may. Area camera professor hair pull letter she. Activity soon myself way. Step seek play.', N'Science', CAST(N'1989-05-15T00:00:00.000' AS DateTime), CAST(N'1987-01-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(91 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4590, N'8931370413', N'Phased regional time-frame', N'The research economy air magazine standard. Positive floor deal foreign. Than believe structure office join notice.', N'Science', CAST(N'1995-05-28T00:00:00.000' AS DateTime), CAST(N'1989-03-24T00:00:00.000' AS DateTime), N'In Repair', CAST(907 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4591, N'9682001321', N'Enterprise-wide 24/7 encryption', N'Conference study reveal. Once shoulder glass course weight Mr. Blue any would seem. Difference ready set network data them child poor. Floor pattern into answer. Action couple through them.', N'Science', CAST(N'1984-02-21T00:00:00.000' AS DateTime), CAST(N'1981-09-02T00:00:00.000' AS DateTime), N'Reserved', CAST(348 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4592, N'7400847827', N'Horizontal object-oriented standardization', N'White take you. We magazine itself get main democratic anyone popular. Language sort specific level. Daughter piece time like site else.', N'Fiction', CAST(N'2022-07-31T00:00:00.000' AS DateTime), CAST(N'2017-07-17T00:00:00.000' AS DateTime), N'In Repair', CAST(685 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4593, N'9577622371', N'Adaptive 24hour success', N'Blood record authority offer. Mouth be include decade. Republican still line than again. Call partner ball success raise. Behind phone or popular last. Soon can American court speak purpose may.', N'Biography', CAST(N'2001-05-16T00:00:00.000' AS DateTime), CAST(N'1987-01-07T00:00:00.000' AS DateTime), N'Reserved', CAST(561 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4594, N'3863855363', N'Expanded incremental frame', N'Affect over fly technology move responsibility. Personal happen step myself. Speak reduce order born floor.', N'Technology', CAST(N'1987-11-14T00:00:00.000' AS DateTime), CAST(N'1983-02-01T00:00:00.000' AS DateTime), N'Available', CAST(676 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4595, N'4672274156', N'Distributed logistical groupware', N'Nothing state station national car. Mind nation either. Son majority its record stock government. Two despite color opportunity walk must feeling. Big watch sit line water everyone matter.', N'Technology', CAST(N'1983-03-11T00:00:00.000' AS DateTime), CAST(N'1981-07-23T00:00:00.000' AS DateTime), N'Reserved', CAST(771 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4596, N'4495223206', N'Re-contextualized dynamic complexity', N'Impact him lose true. Watch whose range anything according. Wait Democrat bad though best loss. Animal yes level herself impact. Office benefit new see story.', N'Biography', CAST(N'2003-11-24T00:00:00.000' AS DateTime), CAST(N'1990-06-16T00:00:00.000' AS DateTime), N'In Repair', CAST(630 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4597, N'5892074034', N'Advanced analyzing core', N'Computer respond decade standard exist media sort. Seek record wear system carry five investment realize. Health serious hard amount research just learn.', N'Technology', CAST(N'2009-06-09T00:00:00.000' AS DateTime), CAST(N'2006-09-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(167 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4598, N'8223057376', N'Quality-focused context-sensitive budgetary management', N'Knowledge group there state check capital street. Play daughter mother. Appear goal not until. Language occur discover perhaps traditional.', N'Non-Fiction', CAST(N'2018-04-13T00:00:00.000' AS DateTime), CAST(N'1985-04-19T00:00:00.000' AS DateTime), N'Available', CAST(318 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4599, N'2324820382', N'Optimized reciprocal algorithm', N'Daughter fear popular much. Above where million short way surface. Cover standard cost key dinner.', N'History', CAST(N'2017-02-06T00:00:00.000' AS DateTime), CAST(N'1995-08-01T00:00:00.000' AS DateTime), N'Reserved', CAST(865 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4600, N'7319473787', N'Expanded didactic capacity', N'Would have say popular sing. Dinner food reflect certain my south.', N'History', CAST(N'1993-07-16T00:00:00.000' AS DateTime), CAST(N'1981-04-30T00:00:00.000' AS DateTime), N'Available', CAST(107 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4601, N'7918343282', N'Function-based secondary hardware', N'Bit window realize marriage. Indeed step practice dark. Pattern return technology decade again here five.', N'Fiction', CAST(N'1999-03-15T00:00:00.000' AS DateTime), CAST(N'1996-02-29T00:00:00.000' AS DateTime), N'In Repair', CAST(293 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4602, N'4434522484', N'Ergonomic even-keeled intranet', N'Two read adult by. Behind behavior watch turn contain outside.', N'Biography', CAST(N'2024-07-22T00:00:00.000' AS DateTime), CAST(N'1990-02-19T00:00:00.000' AS DateTime), N'Reserved', CAST(819 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4603, N'5461794770', N'Team-oriented intermediate solution', N'Explain when toward television onto. Coach heart best social him whom back. Number memory product might deep. Performance on space. Fact nearly increase color why less.', N'Biography', CAST(N'2004-02-22T00:00:00.000' AS DateTime), CAST(N'1991-01-17T00:00:00.000' AS DateTime), N'Available', CAST(913 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4604, N'4254090665', N'Adaptive homogeneous firmware', N'Important go trial north reason. Health try environment win. Project land wife boy put white college.', N'Fiction', CAST(N'2009-08-22T00:00:00.000' AS DateTime), CAST(N'2001-05-20T00:00:00.000' AS DateTime), N'Available', CAST(474 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4605, N'8830584716', N'Public-key high-level adapter', N'Same star enjoy market whom member full. Indeed stuff see. Establish action meet machine. Culture site bank after realize.', N'Biography', CAST(N'1994-04-15T00:00:00.000' AS DateTime), CAST(N'1980-11-07T00:00:00.000' AS DateTime), N'Reserved', CAST(693 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4606, N'3050670691', N'Decentralized modular functionalities', N'Set protect manage report without shoulder technology order. Goal commercial visit couple. Back leader least goal page.', N'History', CAST(N'2004-03-06T00:00:00.000' AS DateTime), CAST(N'1999-11-08T00:00:00.000' AS DateTime), N'Reserved', CAST(341 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4607, N'7907326906', N'Horizontal needs-based capability', N'Member ability bed personal then. Technology environment customer fine. Certain but nothing former want full. Visit issue economic you. Reason style above alone five director.', N'Science', CAST(N'1988-05-16T00:00:00.000' AS DateTime), CAST(N'1980-08-08T00:00:00.000' AS DateTime), N'Reserved', CAST(296 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4608, N'3524897999', N'Extended 5thgeneration middleware', N'Let box home subject. Remain question speech understand meet still dog. Meet today could above. Manage before body scientist. Available quality financial per help. Study last list door.', N'Science', CAST(N'1998-03-13T00:00:00.000' AS DateTime), CAST(N'1990-04-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(762 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4609, N'8125533534', N'Multi-lateral stable benchmark', N'Drive arrive three teacher religious they military speech. Very like learn board other current site. First maintain get thought cup wait investment first. Treatment standard decade arm break true.', N'History', CAST(N'2012-10-26T00:00:00.000' AS DateTime), CAST(N'2001-09-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(526 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4610, N'7857958377', N'Progressive national function', N'Evidence control building wife teacher base develop. Hot art whether town. Hard particular story low wall adult size bag. Concern play economy wait memory. Spring success total.', N'Fiction', CAST(N'2018-01-03T00:00:00.000' AS DateTime), CAST(N'2011-03-30T00:00:00.000' AS DateTime), N'Available', CAST(641 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4611, N'5425095266', N'Robust user-facing initiative', N'Something such room. After authority data toward. Organization discuss possible reason practice. Town something receive accept. Some example effort radio measure he.', N'History', CAST(N'2007-11-06T00:00:00.000' AS DateTime), CAST(N'1995-03-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(393 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4612, N'9747906388', N'Centralized transitional ability', N'Remember today church thus blue democratic bed. Building today hair sense suddenly agent wish every. Last information able remember. Standard accept without.', N'Technology', CAST(N'2014-07-30T00:00:00.000' AS DateTime), CAST(N'2011-10-01T00:00:00.000' AS DateTime), N'Available', CAST(952 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4613, N'4371486051', N'Up-sized even-keeled model', N'Attack key thus likely happy development trade. Too product product commercial yeah involve. Amount present cell health.', N'Technology', CAST(N'2022-06-19T00:00:00.000' AS DateTime), CAST(N'1995-06-10T00:00:00.000' AS DateTime), N'Available', CAST(235 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4614, N'3406885666', N'Sharable content-based software', N'Various space remain old. Really economy behind garden reach adult. Foot eat picture ready reflect choose. Develop land conference pretty care.', N'Technology', CAST(N'2008-11-19T00:00:00.000' AS DateTime), CAST(N'2007-05-27T00:00:00.000' AS DateTime), N'Reserved', CAST(953 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4615, N'6141526520', N'Configurable executive artificial intelligence', N'Within fill article. Name make than sell. Operation test your increase throw.', N'Biography', CAST(N'2020-05-19T00:00:00.000' AS DateTime), CAST(N'2005-01-15T00:00:00.000' AS DateTime), N'In Repair', CAST(484 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4616, N'8136281280', N'Balanced system-worthy capacity', N'Beyond yes behavior money yourself. Share call Republican share. Simple save anything meeting kind see toward you. National example church take break film. She against result on social wide body.', N'Technology', CAST(N'1998-08-16T00:00:00.000' AS DateTime), CAST(N'1992-12-18T00:00:00.000' AS DateTime), N'Available', CAST(220 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4617, N'9498506851', N'Organic systemic knowledge user', N'Job high success result. Success that everyone hard within prepare. Upon discover consumer thought base society team. Difference leg all. Receive bank ability wide them go.', N'Fiction', CAST(N'1997-08-23T00:00:00.000' AS DateTime), CAST(N'1989-04-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(988 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4618, N'3086426018', N'Optimized multimedia process improvement', N'Really each could something north bit quality baby. House concern week relationship yourself. Over director pass production art surface anyone.', N'Fiction', CAST(N'1984-06-08T00:00:00.000' AS DateTime), CAST(N'1983-11-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(730 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4619, N'6259078992', N'Centralized solution-oriented emulation', N'Down coach eight stand accept back. Run everything effort this tax this. Change enough before both indicate imagine. Still might baby half eight article use.', N'Fiction', CAST(N'1982-12-04T00:00:00.000' AS DateTime), CAST(N'1981-03-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(380 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4620, N'8018193701', N'Function-based radical benchmark', N'School past value protect water theory question pull. Why another small movement just have. Face program actually various to Democrat. Area sit information maybe hand level toward cut.', N'History', CAST(N'1984-03-28T00:00:00.000' AS DateTime), CAST(N'1983-06-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(512 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4621, N'5042292188', N'Centralized content-based definition', N'Relate teacher price modern. Watch try culture treatment or everybody article. Toward behavior far ahead knowledge police safe. Move boy rock allow even method.', N'Fiction', CAST(N'2009-05-26T00:00:00.000' AS DateTime), CAST(N'2002-05-30T00:00:00.000' AS DateTime), N'Checked Out', CAST(235 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4622, N'3804499549', N'Future-proofed responsive middleware', N'Use simply people above everything. Hope whether maintain report relate. Lead loss speech until image get reason. Method both point among. Describe herself leader current land either chair well.', N'Science', CAST(N'2021-04-03T00:00:00.000' AS DateTime), CAST(N'1997-09-09T00:00:00.000' AS DateTime), N'In Repair', CAST(223 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4623, N'8409229686', N'Extended scalable groupware', N'Professional environmental say. Why project accept add agreement garden. On safe give all. Reduce agreement international prove interest rate.', N'History', CAST(N'2024-06-18T00:00:00.000' AS DateTime), CAST(N'1992-05-05T00:00:00.000' AS DateTime), N'Reserved', CAST(197 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4624, N'4945819172', N'Operative client-server open system', N'Your usually may clear daughter space. Can spring and some whatever sell. Reach also should down. Parent happen record why. Guy majority film bed from. Despite spend ball show.', N'Biography', CAST(N'2001-11-28T00:00:00.000' AS DateTime), CAST(N'1992-08-05T00:00:00.000' AS DateTime), N'Reserved', CAST(765 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4625, N'7585388640', N'Monitored heuristic initiative', N'Girl like professional season. Field technology check sea. Police chair like road. Brother house about commercial again leave political.', N'Non-Fiction', CAST(N'1998-11-05T00:00:00.000' AS DateTime), CAST(N'1981-10-26T00:00:00.000' AS DateTime), N'Checked Out', CAST(335 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4626, N'7727961005', N'Profound multimedia infrastructure', N'Many test show box. Million voice experience source ability. Oil others society public door. Necessary road clearly serve.', N'History', CAST(N'1983-01-11T00:00:00.000' AS DateTime), CAST(N'1981-07-04T00:00:00.000' AS DateTime), N'Available', CAST(214 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4627, N'7438309277', N'Monitored incremental toolset', N'Truth four real instead determine. I story statement friend feel case. Purpose home thus power.', N'Science', CAST(N'1989-04-22T00:00:00.000' AS DateTime), CAST(N'1982-08-20T00:00:00.000' AS DateTime), N'Checked Out', CAST(438 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4628, N'1821106744', N'Adaptive asynchronous paradigm', N'Firm bag plan feeling place ok real. Stage quite finally down meet try. Create success together. Material perform book church. Responsibility tell hope energy.', N'History', CAST(N'1988-08-13T00:00:00.000' AS DateTime), CAST(N'1986-05-05T00:00:00.000' AS DateTime), N'Checked Out', CAST(474 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4629, N'1897469051', N'Public-key upward-trending task-force', N'Find capital represent prevent student interview. No job develop little soldier back.', N'Biography', CAST(N'2000-02-16T00:00:00.000' AS DateTime), CAST(N'1989-02-16T00:00:00.000' AS DateTime), N'Checked Out', CAST(105 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4630, N'2926676512', N'Organic human-resource model', N'Close big feel we. Close true institution talk success. Arrive space building down. What skin else.', N'Technology', CAST(N'2011-02-05T00:00:00.000' AS DateTime), CAST(N'1985-05-27T00:00:00.000' AS DateTime), N'In Repair', CAST(577 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4631, N'4912429242', N'Fully-configurable uniform challenge', N'Stuff research dinner join because. Throw politics respond fill. Make know most member him. Better positive real left remember short. Finally administration threat sometimes visit.', N'History', CAST(N'1986-07-20T00:00:00.000' AS DateTime), CAST(N'1985-10-24T00:00:00.000' AS DateTime), N'In Repair', CAST(815 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4632, N'5141838646', N'Business-focused upward-trending data-warehouse', N'None task property black save. Concern certain provide according bed. Human great whom reduce show. Before value wife dream. Ahead clearly chance step color his.', N'Biography', CAST(N'1991-08-05T00:00:00.000' AS DateTime), CAST(N'1983-05-01T00:00:00.000' AS DateTime), N'Reserved', CAST(768 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4633, N'4319660167', N'Public-key bandwidth-monitored concept', N'Paper once market moment cost. However serve open TV no. Past concern role never defense draw. Policy consumer modern your trial. Today develop try director fear true short. Detail ago any bring.', N'Fiction', CAST(N'1994-03-24T00:00:00.000' AS DateTime), CAST(N'1980-08-15T00:00:00.000' AS DateTime), N'Available', CAST(920 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4634, N'8347533717', N'Inverse tertiary customer loyalty', N'What oil movement send rise whose democratic picture. He option can suggest response enough. Major thank need share performance table. Organization how bed Republican television head century.', N'History', CAST(N'1999-01-03T00:00:00.000' AS DateTime), CAST(N'1990-02-12T00:00:00.000' AS DateTime), N'Available', CAST(256 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4635, N'6820665619', N'Profit-focused human-resource parallelism', N'Fear doctor determine break. Rather you perform stage rich public effect. Society avoid eat detail need teach use. Agent or others chance occur.', N'Science', CAST(N'1998-02-26T00:00:00.000' AS DateTime), CAST(N'1983-02-22T00:00:00.000' AS DateTime), N'Available', CAST(798 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4636, N'8797380829', N'Balanced zero administration function', N'Computer kitchen store consider project land bar. Range imagine wonder owner. Law rather program official exactly another support. Toward watch board economic.', N'Technology', CAST(N'2022-10-27T00:00:00.000' AS DateTime), CAST(N'2020-03-03T00:00:00.000' AS DateTime), N'Available', CAST(448 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4637, N'8882007623', N'Synergized local application', N'Yard morning pass civil cover nature owner. Open try yeah measure. Free leave star probably outside card affect.', N'Fiction', CAST(N'1980-12-04T00:00:00.000' AS DateTime), CAST(N'1980-11-06T00:00:00.000' AS DateTime), N'Available', CAST(820 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4638, N'7543553014', N'Automated zero-defect project', N'Final moment financial consumer answer reality could capital. Language best stage four apply.', N'Technology', CAST(N'2021-06-09T00:00:00.000' AS DateTime), CAST(N'2015-06-17T00:00:00.000' AS DateTime), N'In Repair', CAST(377 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4639, N'3652607503', N'Fully-configurable intangible superstructure', N'Grow none back join me remain although. Impact PM report respond ten indicate. Plant cultural scientist current information official. Beyond policy one color require. Remember subject guess hotel.', N'Technology', CAST(N'2004-05-01T00:00:00.000' AS DateTime), CAST(N'1986-12-08T00:00:00.000' AS DateTime), N'In Repair', CAST(498 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4640, N'7022708920', N'Face-to-face responsive monitoring', N'Choice want collection share baby deal. Including appear industry fast method serve along study. Information memory support audience minute world.', N'Non-Fiction', CAST(N'2007-01-01T00:00:00.000' AS DateTime), CAST(N'1984-11-11T00:00:00.000' AS DateTime), N'In Repair', CAST(630 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4641, N'4796947318', N'Persistent client-server time-frame', N'How perhaps standard item to stock say. Court stay book. See character difficult responsibility himself. Simple put newspaper oil her seven. After politics agency get. Source rate must age.', N'Science', CAST(N'1998-03-11T00:00:00.000' AS DateTime), CAST(N'1980-05-04T00:00:00.000' AS DateTime), N'Available', CAST(363 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4642, N'5820447047', N'Streamlined 6thgeneration architecture', N'Nothing likely develop during. Rise create eat let purpose. Degree accept example reveal. Can meet true son they develop. Plant pass available feel gas partner your Congress.', N'Science', CAST(N'2022-04-24T00:00:00.000' AS DateTime), CAST(N'1983-07-11T00:00:00.000' AS DateTime), N'In Repair', CAST(361 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4643, N'2448972518', N'Cloned didactic utilization', N'Often would southern. Effort ball particularly ahead. War seven short maybe. Bar long later game social. Agreement high and brother must court phone. State down model.', N'Biography', CAST(N'2017-10-26T00:00:00.000' AS DateTime), CAST(N'2016-04-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(174 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4644, N'5207375427', N'Synergized context-sensitive firmware', N'Hard player term too catch agree program wrong. Check American mouth movement. Sense strong film improve. Section sell glass seem base.', N'Non-Fiction', CAST(N'2018-04-08T00:00:00.000' AS DateTime), CAST(N'1986-07-30T00:00:00.000' AS DateTime), N'Available', CAST(631 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4645, N'3667456028', N'Configurable responsive conglomeration', N'Speech recent store point. From high officer. Unit series either century indicate. Fear people as close relate couple.', N'Science', CAST(N'1981-10-30T00:00:00.000' AS DateTime), CAST(N'1980-04-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(928 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4646, N'3551870474', N'De-engineered mission-critical hardware', N'Store about wide campaign occur. Speak real no hand fire statement. Toward commercial wear order clear discuss particularly.', N'Technology', CAST(N'1996-02-25T00:00:00.000' AS DateTime), CAST(N'1991-03-19T00:00:00.000' AS DateTime), N'In Repair', CAST(320 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4647, N'9493238496', N'Adaptive tertiary product', N'So personal positive her there generation large. Understand all choice cell result under. Build rule feeling bill very quality physical.', N'Science', CAST(N'2024-11-28T00:00:00.000' AS DateTime), CAST(N'1993-03-23T00:00:00.000' AS DateTime), N'Reserved', CAST(246 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4648, N'4507989649', N'Team-oriented local model', N'Cultural player box medical left. Central each whether firm. More series suddenly. Customer program today support. Learn good whatever charge my debate. Leader far specific quickly western tend.', N'Science', CAST(N'1997-12-03T00:00:00.000' AS DateTime), CAST(N'1992-07-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(600 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4649, N'7020391593', N'Persevering 24hour attitude', N'Rule the officer majority through result only. Thing white wonder water investment bill. Card dinner newspaper film. Star mission technology magazine hotel two however team.', N'History', CAST(N'1984-12-24T00:00:00.000' AS DateTime), CAST(N'1982-09-06T00:00:00.000' AS DateTime), N'Checked Out', CAST(405 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4650, N'7042227115', N'Configurable web-enabled database', N'However leg player director medical. Continue both her stay. Even ability with age prevent assume. Shoulder generation dinner. Protect board audience many Congress order.', N'Non-Fiction', CAST(N'1981-05-07T00:00:00.000' AS DateTime), CAST(N'1981-01-01T00:00:00.000' AS DateTime), N'Available', CAST(744 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4651, N'8880787026', N'Expanded attitude-oriented functionalities', N'Alone glass really bill capital reach. Other reduce effort knowledge. Instead really child under new rise with middle. Claim because think throw trip.', N'Technology', CAST(N'2008-04-16T00:00:00.000' AS DateTime), CAST(N'2003-01-19T00:00:00.000' AS DateTime), N'Reserved', CAST(286 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4652, N'6882144120', N'Synchronized attitude-oriented application', N'Officer where poor from most. Program interest range miss small according cup at. Early side popular course skill reduce.', N'History', CAST(N'2022-03-03T00:00:00.000' AS DateTime), CAST(N'1991-08-13T00:00:00.000' AS DateTime), N'Reserved', CAST(635 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4653, N'4137786966', N'Centralized 5thgeneration extranet', N'Prepare federal door which partner step. Table necessary community husband. Focus water religious so. Possible center green candidate.', N'Non-Fiction', CAST(N'1986-05-29T00:00:00.000' AS DateTime), CAST(N'1980-07-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(996 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4654, N'2548362301', N'Mandatory motivating portal', N'Sea lawyer wife structure beautiful newspaper month. Her leg gun management save represent. So analysis leader wait field many appear create.', N'Non-Fiction', CAST(N'1992-02-04T00:00:00.000' AS DateTime), CAST(N'1981-01-03T00:00:00.000' AS DateTime), N'Checked Out', CAST(94 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4655, N'2797527494', N'Enhanced maximized complexity', N'Environmental serve growth. Enough current camera less night hard. Clearly keep order. Series determine relate every. Light lawyer miss begin center close.', N'Non-Fiction', CAST(N'2014-05-07T00:00:00.000' AS DateTime), CAST(N'2003-02-04T00:00:00.000' AS DateTime), N'Reserved', CAST(458 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4656, N'3540001793', N'Profound tertiary support', N'Vote lose senior customer. As store soldier president south garden. Hour attention he.', N'Biography', CAST(N'1998-07-19T00:00:00.000' AS DateTime), CAST(N'1994-09-01T00:00:00.000' AS DateTime), N'Reserved', CAST(928 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4657, N'6871465361', N'Assimilated grid-enabled system engine', N'Business his strong nearly decision look cultural. Such win personal property the. Our focus build drop item operation. Statement early partner collection environment.', N'Biography', CAST(N'2001-10-27T00:00:00.000' AS DateTime), CAST(N'1997-10-01T00:00:00.000' AS DateTime), N'Available', CAST(510 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4658, N'5784186020', N'Persevering multi-state initiative', N'Decade cut away success marriage another issue. Term move back. Conference can book person. They show should near blood. Apply program director when community.', N'Science', CAST(N'2007-07-20T00:00:00.000' AS DateTime), CAST(N'1996-12-31T00:00:00.000' AS DateTime), N'In Repair', CAST(423 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4659, N'1361593536', N'Face-to-face zero tolerance concept', N'Walk wall fly event imagine answer tree. Any building forward certainly. Ok sound order social system.', N'Biography', CAST(N'1991-05-09T00:00:00.000' AS DateTime), CAST(N'1989-12-03T00:00:00.000' AS DateTime), N'Reserved', CAST(790 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4660, N'5915018986', N'Horizontal homogeneous success', N'Green center eye song partner drive. Debate picture low skin sister. Million local somebody matter matter. Attorney west myself media view fish center shoulder.', N'Biography', CAST(N'1990-06-29T00:00:00.000' AS DateTime), CAST(N'1981-07-10T00:00:00.000' AS DateTime), N'Reserved', CAST(129 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4661, N'7946547932', N'Managed 4thgeneration workforce', N'Unit kid although rate then too western. Study surface kid strong specific spend argue. From but fire.', N'Biography', CAST(N'2014-04-13T00:00:00.000' AS DateTime), CAST(N'1985-10-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(881 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4662, N'1053735203', N'Decentralized maximized instruction set', N'Range great campaign person network. Join choose key firm majority protect human. Exist night red floor room. Consumer trial control section dog something.', N'Technology', CAST(N'1996-08-07T00:00:00.000' AS DateTime), CAST(N'1993-08-13T00:00:00.000' AS DateTime), N'In Repair', CAST(787 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4663, N'3081597798', N'Phased solution-oriented secured line', N'Cost street above likely. It evening firm behavior safe whether. New sing spring usually. Effort which never explain. Power office name authority. Media firm growth draw cut.', N'Biography', CAST(N'2009-08-29T00:00:00.000' AS DateTime), CAST(N'1996-03-15T00:00:00.000' AS DateTime), N'Reserved', CAST(290 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4664, N'2158909423', N'Configurable empowering hierarchy', N'Congress future little deep candidate politics space. While summer recent dog material break. Hand under PM possible. Design nice trade type. Hundred bill likely star catch someone fall.', N'Science', CAST(N'1985-11-25T00:00:00.000' AS DateTime), CAST(N'1982-03-22T00:00:00.000' AS DateTime), N'In Repair', CAST(702 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4665, N'8294924347', N'Centralized executive initiative', N'Scene effect her Mr. Soon boy tonight leave change south every.', N'Biography', CAST(N'2015-03-15T00:00:00.000' AS DateTime), CAST(N'1984-01-19T00:00:00.000' AS DateTime), N'In Repair', CAST(414 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4666, N'1910729163', N'Progressive national adapter', N'Cultural cost as food. Build artist bit customer. Alone various data economic. Young fly old tell while across. Expert thought half decade PM. Perform road plant soon. Provide cover then than old.', N'Technology', CAST(N'2008-03-14T00:00:00.000' AS DateTime), CAST(N'1993-04-24T00:00:00.000' AS DateTime), N'Reserved', CAST(689 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4667, N'7880845187', N'Secured high-level Local Area Network', N'Thing human discuss society baby door yet. Raise almost from. Music forward ago near. Better end control party. May thousand case whatever. North away during rate effort.', N'Non-Fiction', CAST(N'2004-04-14T00:00:00.000' AS DateTime), CAST(N'1995-04-02T00:00:00.000' AS DateTime), N'Reserved', CAST(230 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4668, N'9397035196', N'Persistent well-modulated system engine', N'Apply occur part note save. Window ball leg agency dog. Government skill kind successful much movement.', N'Biography', CAST(N'2014-03-08T00:00:00.000' AS DateTime), CAST(N'1998-09-25T00:00:00.000' AS DateTime), N'In Repair', CAST(860 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4669, N'1275711853', N'Cross-group coherent focus group', N'Bit late state even try. Kind goal shoulder born impact live size. Go ball certainly feeling. Door himself sense western. There do rule easy.', N'Science', CAST(N'1987-12-11T00:00:00.000' AS DateTime), CAST(N'1987-11-14T00:00:00.000' AS DateTime), N'Reserved', CAST(260 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4670, N'3454617622', N'User-friendly 3rdgeneration hierarchy', N'Book clearly pick sea. Tree degree color despite develop size. Night up free responsibility. Consumer assume hospital. Result hour a oil girl. Cause parent street edge whether ahead.', N'Technology', CAST(N'2024-11-05T00:00:00.000' AS DateTime), CAST(N'2002-11-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(215 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4671, N'9976146230', N'Profit-focused zero tolerance complexity', N'Only usually cold process weight. Detail last among magazine authority. Site task stage apply.', N'Science', CAST(N'2019-12-08T00:00:00.000' AS DateTime), CAST(N'1995-03-17T00:00:00.000' AS DateTime), N'Checked Out', CAST(469 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4672, N'8874228125', N'Digitized value-added superstructure', N'White north help budget clear city audience. Ago of many. During his enough. Clear article every answer month.', N'Technology', CAST(N'2024-09-03T00:00:00.000' AS DateTime), CAST(N'2013-10-17T00:00:00.000' AS DateTime), N'Available', CAST(448 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4673, N'6984457673', N'Digitized coherent workforce', N'Identify four large with opportunity. Hit summer million knowledge throughout. Evening enough dream business north live sell. Can firm they reality call lead.', N'Fiction', CAST(N'2022-08-06T00:00:00.000' AS DateTime), CAST(N'2012-06-06T00:00:00.000' AS DateTime), N'In Repair', CAST(182 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4674, N'2189412523', N'Open-architected fresh-thinking paradigm', N'Beat two explain above building culture safe. Try figure should color garden wife establish tough. Eight pretty think anyone boy grow. Stuff professional now man present above.', N'Science', CAST(N'2007-03-01T00:00:00.000' AS DateTime), CAST(N'1989-06-03T00:00:00.000' AS DateTime), N'Reserved', CAST(50 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4675, N'2685049207', N'Profit-focused tertiary flexibility', N'Worry level process quality break. Through evidence three high. Act hand project teacher sort wish pattern. Reflect it or nor the. Real contain stand east commercial.', N'Science', CAST(N'2009-02-06T00:00:00.000' AS DateTime), CAST(N'1982-04-01T00:00:00.000' AS DateTime), N'Reserved', CAST(342 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4676, N'2752740157', N'Cloned dedicated conglomeration', N'Cell recent movement set bed. Tree point energy media themselves guess take church. Buy upon pressure spend six notice quality.', N'Non-Fiction', CAST(N'2008-11-01T00:00:00.000' AS DateTime), CAST(N'1998-09-08T00:00:00.000' AS DateTime), N'Checked Out', CAST(694 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4677, N'6761661275', N'Reduced systematic artificial intelligence', N'Society save big hit. Whether number economic. Only where challenge away economic. Step lose body change son attorney. Civil determine kid eye meet describe lot.', N'Fiction', CAST(N'2020-09-06T00:00:00.000' AS DateTime), CAST(N'1985-01-25T00:00:00.000' AS DateTime), N'In Repair', CAST(733 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4678, N'1520733025', N'Grass-roots context-sensitive encryption', N'Could bank adult mean option society better tend. Least wide suggest real job wrong finish. Full include face mission. Enjoy southern life house force whatever.', N'Science', CAST(N'1997-11-16T00:00:00.000' AS DateTime), CAST(N'1996-09-16T00:00:00.000' AS DateTime), N'Available', CAST(651 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4679, N'9036893536', N'Open-architected even-keeled extranet', N'Very record marriage always treatment increase. Again simply staff woman tree.', N'Non-Fiction', CAST(N'1985-01-12T00:00:00.000' AS DateTime), CAST(N'1982-12-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(390 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4680, N'6140923622', N'Polarized composite initiative', N'Go whose maybe including student everything that. Society operation turn question feel ago. Should fact amount budget. Head see father trouble. Investment student role cold her.', N'Non-Fiction', CAST(N'2001-12-17T00:00:00.000' AS DateTime), CAST(N'1997-07-07T00:00:00.000' AS DateTime), N'Reserved', CAST(546 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4681, N'5250977086', N'Virtual zero tolerance website', N'Like benefit anything process short general beautiful. Follow boy food election agency event artist.', N'Biography', CAST(N'1980-07-23T00:00:00.000' AS DateTime), CAST(N'1980-06-25T00:00:00.000' AS DateTime), N'In Repair', CAST(360 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4682, N'7664519307', N'Centralized needs-based installation', N'Herself manage health line without. End allow how political watch body character father. Tonight experience stock against history. Such minute eye could.', N'Fiction', CAST(N'1981-11-01T00:00:00.000' AS DateTime), CAST(N'1981-06-23T00:00:00.000' AS DateTime), N'Available', CAST(633 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4683, N'1763754595', N'Advanced hybrid Internet solution', N'Return exist fly color site. Fact beat season investment economy. Detail range how stage and.', N'History', CAST(N'2003-08-12T00:00:00.000' AS DateTime), CAST(N'1990-07-07T00:00:00.000' AS DateTime), N'Available', CAST(211 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4684, N'4145923770', N'Fully-configurable hybrid matrix', N'Quickly policy make operation commercial. Nothing strategy Congress poor act fire point partner.', N'Fiction', CAST(N'2011-08-13T00:00:00.000' AS DateTime), CAST(N'1991-09-03T00:00:00.000' AS DateTime), N'Reserved', CAST(986 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4685, N'5675297088', N'Versatile directional strategy', N'Participant mission performance affect indeed few. People power join effort hold class away. Southern front possible yeah protect relationship. Kid build director reason.', N'Science', CAST(N'1985-01-09T00:00:00.000' AS DateTime), CAST(N'1980-08-24T00:00:00.000' AS DateTime), N'Checked Out', CAST(656 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4686, N'1747253387', N'Open-architected system-worthy website', N'Of employee energy movement station teacher. Two collection or decision. If never sense fight new soldier upon. Choose degree them end red staff. Us their local amount suggest.', N'Non-Fiction', CAST(N'2015-05-27T00:00:00.000' AS DateTime), CAST(N'2012-04-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(915 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4687, N'2300557004', N'Mandatory 3rdgeneration product', N'Free west their measure against age. Social themselves agree son. Audience short worker level open make plan.', N'Non-Fiction', CAST(N'1987-02-16T00:00:00.000' AS DateTime), CAST(N'1985-11-20T00:00:00.000' AS DateTime), N'Reserved', CAST(63 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4688, N'5309900157', N'Operative stable algorithm', N'Choice three contain phone design near. Note stand call design. Analysis political common million dinner. Reveal southern decide music try personal. Cell rule along also generation half agency.', N'Fiction', CAST(N'2023-06-21T00:00:00.000' AS DateTime), CAST(N'1989-04-22T00:00:00.000' AS DateTime), N'Checked Out', CAST(295 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4689, N'2819497256', N'Sharable homogeneous orchestration', N'Be safe whole north teacher finish event. Hard need chance few. Decision give nor mention subject money fear.', N'Fiction', CAST(N'2004-10-11T00:00:00.000' AS DateTime), CAST(N'2004-01-28T00:00:00.000' AS DateTime), N'Available', CAST(712 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4690, N'7576905750', N'Cross-platform didactic concept', N'Enough white voice southern would cell. That require which try share hold watch. Leg political food dog law know or throw. Lot affect end.', N'Fiction', CAST(N'2009-03-22T00:00:00.000' AS DateTime), CAST(N'1988-11-28T00:00:00.000' AS DateTime), N'Available', CAST(175 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4691, N'2158287638', N'Persevering mobile productivity', N'Fear produce it bit fish cultural too. Floor stock present act part finally ok. Provide staff argue west glass. East candidate exist western despite analysis benefit.', N'Fiction', CAST(N'2019-02-18T00:00:00.000' AS DateTime), CAST(N'2017-04-25T00:00:00.000' AS DateTime), N'In Repair', CAST(600 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4692, N'9524772632', N'Optimized disintermediate strategy', N'Administration view baby mean. Someone cup mouth project score end talk. Put market four brother. Yet article leader commercial scene these even. Board near lot employee.', N'History', CAST(N'1989-08-05T00:00:00.000' AS DateTime), CAST(N'1982-05-03T00:00:00.000' AS DateTime), N'Reserved', CAST(877 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4693, N'4348776581', N'Synergistic analyzing hierarchy', N'Difficult maybe blue truth itself. Owner family go of. Maintain course adult.', N'Fiction', CAST(N'2020-07-08T00:00:00.000' AS DateTime), CAST(N'2004-03-04T00:00:00.000' AS DateTime), N'Available', CAST(469 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4694, N'5498238438', N'Realigned radical productivity', N'More wide maybe market. Leg including over usually less change. Movie most structure site. Assume with coach store the stock. Law it world herself throughout true.', N'Fiction', CAST(N'1980-03-13T00:00:00.000' AS DateTime), CAST(N'1980-02-02T00:00:00.000' AS DateTime), N'Available', CAST(178 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4695, N'9780438577', N'Multi-tiered optimizing contingency', N'Play hospital today international. Pay type simply activity. Southern and reason reveal go woman.', N'Biography', CAST(N'2002-03-15T00:00:00.000' AS DateTime), CAST(N'1980-05-16T00:00:00.000' AS DateTime), N'In Repair', CAST(779 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4696, N'6298669746', N'Focused motivating structure', N'Natural among floor tax. Glass weight doctor determine there hard. Treat bill wonder. Thousand from avoid. Life American sell worker least look. Identify management industry exist.', N'Fiction', CAST(N'1998-07-30T00:00:00.000' AS DateTime), CAST(N'1993-05-09T00:00:00.000' AS DateTime), N'Reserved', CAST(91 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4697, N'4738399626', N'Profound reciprocal functionalities', N'Would could end central win human develop. Yes include different involve especially. And significant everyone finally. On federal stage food.', N'History', CAST(N'2021-03-02T00:00:00.000' AS DateTime), CAST(N'2006-01-01T00:00:00.000' AS DateTime), N'Reserved', CAST(85 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4698, N'3691234465', N'Quality-focused next generation moratorium', N'Its vote yet myself look five themselves offer. Material effort TV politics. Try Congress threat should. Billion air teach whole now sea around. Today billion popular wait establish police.', N'Science', CAST(N'2024-01-11T00:00:00.000' AS DateTime), CAST(N'2002-02-18T00:00:00.000' AS DateTime), N'Available', CAST(411 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4699, N'5931156425', N'Horizontal didactic standardization', N'Yeah despite style raise pass suggest group. Cup indeed low well deep smile. Month crime wind would second. Attorney body morning usually form word carry. Keep company figure game new paper.', N'Fiction', CAST(N'2014-07-18T00:00:00.000' AS DateTime), CAST(N'1988-08-09T00:00:00.000' AS DateTime), N'Checked Out', CAST(58 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4700, N'5445041793', N'Reverse-engineered demand-driven core', N'Part choose international fly six mind. Simple key possible high woman stock. Letter before make. Clearly hold nice situation fish suggest morning all. After alone about.', N'Fiction', CAST(N'1983-04-27T00:00:00.000' AS DateTime), CAST(N'1982-01-21T00:00:00.000' AS DateTime), N'Reserved', CAST(607 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4701, N'4296215810', N'Visionary intermediate protocol', N'Drive many current effect threat home. Item put law race thousand. Call peace those protect why city image. Pay red record whose. Just bad time girl force down.', N'Biography', CAST(N'2020-02-19T00:00:00.000' AS DateTime), CAST(N'1996-07-29T00:00:00.000' AS DateTime), N'In Repair', CAST(618 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4702, N'4454060589', N'Monitored human-resource implementation', N'Dog hold window. Choose garden drop idea try suggest sound. Foreign similar water few actually. Process cold after still member. Right later player piece away. Though arm space media.', N'History', CAST(N'2000-03-31T00:00:00.000' AS DateTime), CAST(N'1984-07-23T00:00:00.000' AS DateTime), N'Available', CAST(264 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4703, N'9735531270', N'Assimilated zero-defect service-desk', N'Certainly president yet per south. Fact lead benefit amount eat tell finish. Big fill area rather build. How keep clear serious indeed fear. Particular stand forward continue any section.', N'Technology', CAST(N'2001-08-18T00:00:00.000' AS DateTime), CAST(N'1986-06-09T00:00:00.000' AS DateTime), N'Available', CAST(902 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4704, N'1321658750', N'Cloned directional framework', N'Plan against hair series value miss. Guess process above point. Want try Democrat exist. Ever book authority beyond. Country special ability.', N'Science', CAST(N'1981-01-08T00:00:00.000' AS DateTime), CAST(N'1980-09-07T00:00:00.000' AS DateTime), N'Checked Out', CAST(736 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4705, N'6836329398', N'Configurable motivating installation', N'Too somebody economy remember couple. Mr reach short enough door. Seat however would meet forward.', N'History', CAST(N'1991-09-16T00:00:00.000' AS DateTime), CAST(N'1985-01-04T00:00:00.000' AS DateTime), N'Available', CAST(288 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4706, N'9595524017', N'Configurable directional utilization', N'Population voice spring. Dinner measure energy field left. Final expect knowledge cup paper call sound write.', N'Non-Fiction', CAST(N'2003-04-22T00:00:00.000' AS DateTime), CAST(N'1995-12-02T00:00:00.000' AS DateTime), N'Checked Out', CAST(789 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4707, N'8208949525', N'Reduced bifurcated middleware', N'Stand activity enough effect course audience. Believe trial election article. Decade well idea seem. Small close someone six. Property data establish across.', N'Fiction', CAST(N'1984-11-27T00:00:00.000' AS DateTime), CAST(N'1980-10-13T00:00:00.000' AS DateTime), N'Checked Out', CAST(928 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4708, N'9413826940', N'Upgradable global toolset', N'Floor lawyer dinner tell. Trip senior should authority especially make country. Operation before fund. Part air last. Inside approach manager whatever southern.', N'Biography', CAST(N'1990-02-09T00:00:00.000' AS DateTime), CAST(N'1981-09-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(345 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4709, N'9687122263', N'Face-to-face radical utilization', N'Window medical movement score everything century. National clear factor land protect. Size clearly upon into threat pull answer.', N'Non-Fiction', CAST(N'2020-04-13T00:00:00.000' AS DateTime), CAST(N'2002-08-08T00:00:00.000' AS DateTime), N'Reserved', CAST(132 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4710, N'7374742207', N'Visionary holistic workforce', N'Through dinner food off heart just century. Court any store draw police keep. Describe size chair easy agency.', N'History', CAST(N'2011-05-26T00:00:00.000' AS DateTime), CAST(N'2003-02-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(958 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4711, N'7354628669', N'Enhanced cohesive product', N'Work American style as from this. Likely around kitchen attention need. Risk particularly these assume relationship owner. Field off while sport enjoy.', N'Fiction', CAST(N'2005-04-01T00:00:00.000' AS DateTime), CAST(N'1988-05-04T00:00:00.000' AS DateTime), N'Checked Out', CAST(421 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4712, N'1759620371', N'Innovative dynamic application', N'Voice information play because get. Entire in painting drive pattern action. Themselves give family air establish step. Goal control machine. You approach hair enough.', N'Biography', CAST(N'2009-01-30T00:00:00.000' AS DateTime), CAST(N'2009-01-01T00:00:00.000' AS DateTime), N'In Repair', CAST(263 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4713, N'8462120843', N'Open-architected 5thgeneration website', N'Wind the in science short. Today small last page heart rest. Cell certainly help stuff serious under police. Leave almost history nation whose. Sing ready resource weight drop trade.', N'Non-Fiction', CAST(N'2004-09-14T00:00:00.000' AS DateTime), CAST(N'2000-01-24T00:00:00.000' AS DateTime), N'Available', CAST(144 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4714, N'3839920978', N'Decentralized fresh-thinking hub', N'Us certainly bank collection stock school certainly. Talk bring think break key rather. Tv return certainly provide. Until whole others decision especially.', N'Science', CAST(N'1994-05-16T00:00:00.000' AS DateTime), CAST(N'1985-09-04T00:00:00.000' AS DateTime), N'Available', CAST(839 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4715, N'3932705322', N'Right-sized national hierarchy', N'Science similar official according amount ask care. Deal sound if ask put simple. Police college begin word laugh.', N'Fiction', CAST(N'1991-04-06T00:00:00.000' AS DateTime), CAST(N'1990-01-18T00:00:00.000' AS DateTime), N'Reserved', CAST(390 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4716, N'4362801613', N'Vision-oriented solution-oriented secured line', N'Fish could than recognize glass. Politics language TV collection develop join. Plan teach energy though. Question no behavior know save.', N'Biography', CAST(N'2013-01-14T00:00:00.000' AS DateTime), CAST(N'1982-11-23T00:00:00.000' AS DateTime), N'Checked Out', CAST(284 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4717, N'7485397781', N'Visionary intermediate system engine', N'Play brother drop. When kind forget but. Make me organization kitchen bed memory speech. Commercial art late store federal stop then. Describe product simply civil.', N'Non-Fiction', CAST(N'1991-08-31T00:00:00.000' AS DateTime), CAST(N'1983-08-17T00:00:00.000' AS DateTime), N'Available', CAST(123 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4718, N'6333662067', N'Intuitive impactful synergy', N'Near machine resource money side know capital impact. Collection health rich item.', N'Science', CAST(N'2016-11-29T00:00:00.000' AS DateTime), CAST(N'2003-12-17T00:00:00.000' AS DateTime), N'Reserved', CAST(256 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4719, N'8198050429', N'Monitored discrete strategy', N'American race people four. Less rate politics carry across choose. Begin heart make environment democratic. For do window difference. Statement amount to beat.', N'Technology', CAST(N'1984-04-19T00:00:00.000' AS DateTime), CAST(N'1983-02-19T00:00:00.000' AS DateTime), N'In Repair', CAST(164 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4720, N'2508691072', N'Profound optimizing productivity', N'Particularly imagine none hair or past image mind. Ten white six southern top its. Case of artist nothing writer.', N'Technology', CAST(N'2015-03-16T00:00:00.000' AS DateTime), CAST(N'1986-11-09T00:00:00.000' AS DateTime), N'In Repair', CAST(918 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4721, N'2296181581', N'Secured explicit challenge', N'You not keep entire mission. Data rather it sense its baby. Too office focus put move.', N'Science', CAST(N'2006-12-19T00:00:00.000' AS DateTime), CAST(N'1980-05-10T00:00:00.000' AS DateTime), N'Reserved', CAST(550 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4722, N'2395641505', N'Operative clear-thinking product', N'Rest foot course next me should. It foot animal animal professor. Alone its any above figure perform. Boy short mind firm. Evening painting miss wall travel.', N'Fiction', CAST(N'2017-11-08T00:00:00.000' AS DateTime), CAST(N'2011-04-30T00:00:00.000' AS DateTime), N'Reserved', CAST(52 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4723, N'8432825187', N'Organic value-added parallelism', N'End parent despite according itself low fast. Country news country. Science rich central short where may.', N'Biography', CAST(N'2021-12-20T00:00:00.000' AS DateTime), CAST(N'2011-06-18T00:00:00.000' AS DateTime), N'Available', CAST(979 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4724, N'4393531618', N'Team-oriented client-driven architecture', N'Home book attorney majority music once question. Family eat eye. Subject lot camera at radio. Research him skill position discuss debate past.', N'Fiction', CAST(N'1996-04-28T00:00:00.000' AS DateTime), CAST(N'1992-02-01T00:00:00.000' AS DateTime), N'Checked Out', CAST(497 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4725, N'3786238937', N'Expanded system-worthy attitude', N'Choice other American occur improve. Least else to now. Charge her three late once. Event Mr nothing music use of. Available point control situation offer father main.', N'Non-Fiction', CAST(N'1997-01-28T00:00:00.000' AS DateTime), CAST(N'1988-05-03T00:00:00.000' AS DateTime), N'Reserved', CAST(640 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4726, N'6412978610', N'Extended composite process improvement', N'Bring road lead. Attention process full hard indicate. Wife within learn media yet picture forward. Summer base benefit or wish sing international mean.', N'History', CAST(N'2003-02-23T00:00:00.000' AS DateTime), CAST(N'1985-02-05T00:00:00.000' AS DateTime), N'Reserved', CAST(886 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4727, N'2589521712', N'User-friendly systemic orchestration', N'Range Democrat usually. When letter business. Continue goal finish trade store find pay policy. Opportunity truth anything current discuss up than. Officer policy reduce.', N'Non-Fiction', CAST(N'1994-07-09T00:00:00.000' AS DateTime), CAST(N'1993-07-18T00:00:00.000' AS DateTime), N'Reserved', CAST(643 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4728, N'1204215163', N'Vision-oriented multi-tasking help-desk', N'Painting their share community. Live contain officer establish to maintain but movie. Six catch painting power whose win whole.', N'History', CAST(N'2000-06-25T00:00:00.000' AS DateTime), CAST(N'1999-08-18T00:00:00.000' AS DateTime), N'Reserved', CAST(651 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4729, N'8957203521', N'Monitored responsive forecast', N'Opportunity team president list director. Perhaps if source big. Security able threat character ask keep better.', N'Fiction', CAST(N'1993-07-02T00:00:00.000' AS DateTime), CAST(N'1988-12-02T00:00:00.000' AS DateTime), N'Reserved', CAST(258 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4730, N'7750743335', N'Innovative client-driven concept', N'Standard fund prove fact green set official. Into son likely. Music court sport right look significant very staff. Nation type series get since pull. Radio stand anything live inside look health.', N'Biography', CAST(N'2015-01-31T00:00:00.000' AS DateTime), CAST(N'1996-12-08T00:00:00.000' AS DateTime), N'Reserved', CAST(716 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4731, N'9223735736', N'User-centric holistic success', N'Level this leader among should form. Least enter word wear. Mission various dream style rate. Admit page structure year fire. Worker large true modern perform cause then.', N'History', CAST(N'2017-06-18T00:00:00.000' AS DateTime), CAST(N'2005-10-13T00:00:00.000' AS DateTime), N'Available', CAST(343 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4732, N'4249315995', N'Focused fault-tolerant data-warehouse', N'Use scene memory hear reach appear author. Thought where very chair who week six guess. Same expect purpose.', N'Science', CAST(N'2016-02-04T00:00:00.000' AS DateTime), CAST(N'1997-10-04T00:00:00.000' AS DateTime), N'Available', CAST(55 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4733, N'6733754544', N'Managed responsive solution', N'Mrs cultural phone left voice throw. Start learn job arm tough community. Common cold system kitchen sister. Owner which along poor.', N'Fiction', CAST(N'2000-12-02T00:00:00.000' AS DateTime), CAST(N'1994-03-24T00:00:00.000' AS DateTime), N'Available', CAST(870 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4734, N'4631620574', N'Multi-layered holistic moratorium', N'Hear because model. Partner conference street follow. Last point other north tend. He environment type interest thousand minute. Be will form center.', N'History', CAST(N'2015-03-12T00:00:00.000' AS DateTime), CAST(N'1994-05-17T00:00:00.000' AS DateTime), N'Reserved', CAST(756 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4735, N'6865434061', N'Operative next generation info-mediaries', N'None wide claim produce. Stock represent want star spend thousand. Represent high personal gas trouble up better. Fact analysis entire.', N'Fiction', CAST(N'1998-12-29T00:00:00.000' AS DateTime), CAST(N'1990-06-25T00:00:00.000' AS DateTime), N'Checked Out', CAST(769 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4736, N'3758919522', N'Realigned well-modulated throughput', N'Sort bed those matter project. Civil either radio tend. Officer part wall election. Pass father dinner voice finally.', N'Biography', CAST(N'1990-12-15T00:00:00.000' AS DateTime), CAST(N'1988-05-25T00:00:00.000' AS DateTime), N'In Repair', CAST(531 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4737, N'5888845142', N'Virtual incremental framework', N'Employee sort easy most. Half effort always across. If bag defense happen some partner. Improve rule improve away. Traditional shake page buy yes class.', N'Biography', CAST(N'1994-12-25T00:00:00.000' AS DateTime), CAST(N'1992-05-05T00:00:00.000' AS DateTime), N'Available', CAST(634 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4738, N'9607719802', N'De-engineered clear-thinking firmware', N'Season Mr first together box agent what. Movement whole bad two another white. What last big hour task left.', N'History', CAST(N'1995-10-01T00:00:00.000' AS DateTime), CAST(N'1990-03-24T00:00:00.000' AS DateTime), N'In Repair', CAST(872 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4739, N'5773133820', N'Managed fault-tolerant instruction set', N'Ready figure claim should reach middle commercial. Writer read issue. Many school including treat. Book against provide at like thus. Street create though six benefit.', N'Non-Fiction', CAST(N'2023-04-02T00:00:00.000' AS DateTime), CAST(N'1998-06-19T00:00:00.000' AS DateTime), N'Available', CAST(209 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4740, N'7045005190', N'Open-source needs-based strategy', N'Ahead recognize air room end big. Even even stand official edge so. Assume different start off know if that. Push quite clearly particularly cause. Gun side senior will do hope.', N'Science', CAST(N'2020-02-14T00:00:00.000' AS DateTime), CAST(N'2018-05-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(410 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4741, N'2060315999', N'Mandatory impactful monitoring', N'Call film place individual leader allow. Determine of bit. Direction find rate ago clearly near. Image direction today only. Stock phone network under notice interesting up during.', N'Fiction', CAST(N'2016-04-26T00:00:00.000' AS DateTime), CAST(N'2015-08-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(217 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4742, N'8692642271', N'Mandatory user-facing projection', N'Car try half thousand quite remain. Writer sell reason later write only fund. Realize piece team pick. Walk tax bit government plan.', N'Science', CAST(N'2024-09-13T00:00:00.000' AS DateTime), CAST(N'1983-09-07T00:00:00.000' AS DateTime), N'Reserved', CAST(963 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4743, N'1819029925', N'Universal stable challenge', N'Matter allow parent likely gas strategy. Play cell open discover. Wish in generation example live five. Early anything investment prove mean.', N'Science', CAST(N'2024-10-17T00:00:00.000' AS DateTime), CAST(N'2011-03-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(895 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4744, N'4028970846', N'Polarized object-oriented secured line', N'Sport suddenly film hand break. Trial senior wind suffer mission lose. Sort fill direction race agree special. Smile soldier never environmental less. Check I simple machine.', N'History', CAST(N'2021-09-05T00:00:00.000' AS DateTime), CAST(N'2017-08-18T00:00:00.000' AS DateTime), N'Reserved', CAST(224 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4745, N'7377256570', N'Quality-focused client-server moderator', N'Low ago point person give although indicate. Hit general rule standard would raise. But key maybe campaign capital.', N'Biography', CAST(N'1995-05-22T00:00:00.000' AS DateTime), CAST(N'1983-01-27T00:00:00.000' AS DateTime), N'Available', CAST(304 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4746, N'7651574823', N'Front-line systemic groupware', N'Sing player note couple important cold. Free build effort true keep late a. Traditional product address despite.', N'Science', CAST(N'1984-05-16T00:00:00.000' AS DateTime), CAST(N'1981-04-10T00:00:00.000' AS DateTime), N'Checked Out', CAST(934 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4747, N'2046183980', N'Multi-lateral user-facing archive', N'Now common usually degree. Crime value cut. Sell bar establish follow production action beyond. Cost stop another begin threat. Carry after certainly.', N'Fiction', CAST(N'2007-12-24T00:00:00.000' AS DateTime), CAST(N'2007-06-01T00:00:00.000' AS DateTime), N'In Repair', CAST(219 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4748, N'8573863691', N'Universal multi-tasking structure', N'Rock place garden campaign risk. First reduce stand hair scientist stuff government. Good blood story. Interest mean necessary.', N'Science', CAST(N'2021-04-14T00:00:00.000' AS DateTime), CAST(N'2015-05-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(579 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4749, N'6843658038', N'De-engineered regional capability', N'Wish body industry. Interesting they kid wear which sit win. Set grow true world. Forward student base. Decision do interesting attack dinner else.', N'Technology', CAST(N'2004-11-09T00:00:00.000' AS DateTime), CAST(N'1989-07-29T00:00:00.000' AS DateTime), N'Reserved', CAST(688 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4750, N'4106535278', N'De-engineered tertiary moderator', N'Significant billion hard discover hold. Late home no worry clearly think figure. Detail run whose century today such sound.', N'Technology', CAST(N'1987-03-11T00:00:00.000' AS DateTime), CAST(N'1980-08-03T00:00:00.000' AS DateTime), N'Available', CAST(65 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4751, N'8128278424', N'Adaptive optimal challenge', N'Such break some this. Should center himself seek tonight policy yes box. Paper can building car next seem hope. Early professional maybe herself much page face. Whatever drug ground consumer.', N'Science', CAST(N'1999-06-05T00:00:00.000' AS DateTime), CAST(N'1998-10-08T00:00:00.000' AS DateTime), N'Checked Out', CAST(422 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4752, N'5916636047', N'Fundamental intermediate budgetary management', N'Rock poor number. Customer off old edge factor ahead on nature. How firm still song. Brother itself seem involve watch. Image stuff should want thought good indeed herself.', N'Biography', CAST(N'2021-06-03T00:00:00.000' AS DateTime), CAST(N'2002-12-30T00:00:00.000' AS DateTime), N'In Repair', CAST(393 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4753, N'5336883510', N'Adaptive incremental strategy', N'Station back kid approach. Majority television development raise too seat. Accept magazine much radio few. High change life mean store. Realize most medical scene. Glass determine would inside.', N'Biography', CAST(N'2009-04-28T00:00:00.000' AS DateTime), CAST(N'2001-03-11T00:00:00.000' AS DateTime), N'In Repair', CAST(345 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4754, N'9578994062', N'Persevering directional intranet', N'Eat age military investment education. Require Democrat crime past physical. Forget hope subject people many argue.', N'Technology', CAST(N'2007-07-14T00:00:00.000' AS DateTime), CAST(N'1996-08-22T00:00:00.000' AS DateTime), N'Reserved', CAST(890 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4755, N'7960049486', N'Persevering eco-centric throughput', N'Data author day green key. Draw program we just as. Impact section black class. Mind exist bad job couple at. Game control herself establish discuss ask example.', N'Science', CAST(N'2013-01-07T00:00:00.000' AS DateTime), CAST(N'1987-01-12T00:00:00.000' AS DateTime), N'Reserved', CAST(304 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4756, N'2017563115', N'Monitored homogeneous knowledge user', N'Opportunity direction class. Mother argue huge ground challenge production. Success lead me hold.', N'Fiction', CAST(N'2000-11-23T00:00:00.000' AS DateTime), CAST(N'1997-07-09T00:00:00.000' AS DateTime), N'Available', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4757, N'3200016263', N'Grass-roots dedicated flexibility', N'Event similar around article onto. Center hair evidence simple whether series. Strategy beyond series pass window.', N'Fiction', CAST(N'2010-07-28T00:00:00.000' AS DateTime), CAST(N'1987-11-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(925 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4758, N'1655114873', N'De-engineered contextually-based architecture', N'Lose nation sense big support man positive. Discussion itself spend yourself stop but. Ever rise politics record statement star heart.', N'Non-Fiction', CAST(N'1985-04-14T00:00:00.000' AS DateTime), CAST(N'1984-01-31T00:00:00.000' AS DateTime), N'Checked Out', CAST(825 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4759, N'6568401439', N'Decentralized intermediate benchmark', N'Like best state north. Natural them sometimes prepare arm. Shake treatment artist business. Small left talk agree. Might how add watch news work detail.', N'Fiction', CAST(N'1997-06-07T00:00:00.000' AS DateTime), CAST(N'1988-09-14T00:00:00.000' AS DateTime), N'Checked Out', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4760, N'2198236793', N'Extended zero-defect capability', N'Some week very knowledge economy call. Too lawyer star always culture science her. Perform interesting kid. Their mention despite contain reduce education road difficult. Debate throw quality always.', N'Non-Fiction', CAST(N'1993-11-11T00:00:00.000' AS DateTime), CAST(N'1983-08-16T00:00:00.000' AS DateTime), N'Reserved', CAST(334 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4761, N'9147448893', N'Front-line radical collaboration', N'None anything billion break term. Amount evening arm. After her concern general ability. During area live state recent kind once. Tough save until old. Sound cell mission wish strategy.', N'History', CAST(N'2001-02-25T00:00:00.000' AS DateTime), CAST(N'1993-12-23T00:00:00.000' AS DateTime), N'Available', CAST(389 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4762, N'7131156176', N'Diverse didactic firmware', N'American organization indicate seven social operation that. Nation run trip available. Enter carry save major leader because. Down hospital section trade others.', N'Non-Fiction', CAST(N'1984-09-25T00:00:00.000' AS DateTime), CAST(N'1983-01-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(941 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4763, N'3153148755', N'Versatile zero administration capability', N'Wear customer training score believe respond. Campaign through suddenly production rule development. Possible base this away report concern evidence. Rest sign too full choose number poor.', N'Technology', CAST(N'1980-07-20T00:00:00.000' AS DateTime), CAST(N'1980-06-24T00:00:00.000' AS DateTime), N'In Repair', CAST(578 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4764, N'4909881988', N'Up-sized optimizing emulation', N'Son far learn. Concern mention worry perform company professor every. Believe month music sure water home ask. Mention body write but attention someone.', N'Science', CAST(N'1988-12-23T00:00:00.000' AS DateTime), CAST(N'1988-08-03T00:00:00.000' AS DateTime), N'Reserved', CAST(924 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4765, N'3596056344', N'Face-to-face scalable knowledge user', N'Usually energy fear political. Lose act radio health run executive of. Rise manage peace light plant street wrong. Serve address care there effect.', N'Fiction', CAST(N'1994-01-18T00:00:00.000' AS DateTime), CAST(N'1993-01-13T00:00:00.000' AS DateTime), N'In Repair', CAST(129 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4766, N'7560665834', N'Phased radical collaboration', N'Wife agree development add wind house responsibility. Lawyer because stop. Dream cold respond time these certain thank. Him half north certain. Whose success crime dream. Act sign teacher affect.', N'Fiction', CAST(N'2003-08-27T00:00:00.000' AS DateTime), CAST(N'2001-01-25T00:00:00.000' AS DateTime), N'In Repair', CAST(413 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4767, N'1274121112', N'Realigned analyzing algorithm', N'Officer role catch anything the industry. Most everyone financial can usually so. Nothing fund treatment paper according particularly. Themselves understand amount serious concern system they.', N'Biography', CAST(N'2019-10-09T00:00:00.000' AS DateTime), CAST(N'2003-12-25T00:00:00.000' AS DateTime), N'Reserved', CAST(312 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4768, N'7455868532', N'Automated mobile matrix', N'Chair investment could himself bill. Class ten per national hit ground dark subject. Deal that win environmental between. Involve partner ready. Top mother investment assume forward focus.', N'Technology', CAST(N'1990-06-28T00:00:00.000' AS DateTime), CAST(N'1985-05-02T00:00:00.000' AS DateTime), N'Reserved', CAST(197 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4769, N'1071764816', N'Extended executive pricing structure', N'Structure fire late have else civil way. Tend century husband computer. Wind perform usually nature believe believe. Letter consumer final before. Simply away attention sea try soldier people.', N'Non-Fiction', CAST(N'2016-03-25T00:00:00.000' AS DateTime), CAST(N'1997-10-17T00:00:00.000' AS DateTime), N'In Repair', CAST(971 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4770, N'4743124024', N'Object-based contextually-based hub', N'Couple paper quickly structure. Page professor knowledge manager actually. Court information current history be summer nothing. Benefit country Mr usually.', N'History', CAST(N'2023-03-16T00:00:00.000' AS DateTime), CAST(N'1991-12-05T00:00:00.000' AS DateTime), N'In Repair', CAST(367 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4771, N'7544334652', N'Enterprise-wide global attitude', N'Prevent able course myself material girl dream. Stop defense old interview yet imagine. Wrong describe claim card goal performance.', N'Fiction', CAST(N'2011-04-11T00:00:00.000' AS DateTime), CAST(N'2000-11-06T00:00:00.000' AS DateTime), N'In Repair', CAST(361 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4772, N'1121746639', N'Vision-oriented intermediate protocol', N'Tend impact treat spend if quality. Real amount activity happen. Oil environment mean few put behavior. Need management above open degree.', N'History', CAST(N'2006-02-22T00:00:00.000' AS DateTime), CAST(N'2003-03-14T00:00:00.000' AS DateTime), N'Reserved', CAST(180 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4773, N'4218303779', N'Intuitive secondary function', N'Attention field pull investment green focus. Party what follow design in. Manager sister officer civil network point any.', N'Science', CAST(N'1982-01-01T00:00:00.000' AS DateTime), CAST(N'1980-08-16T00:00:00.000' AS DateTime), N'Reserved', CAST(696 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4774, N'4149048918', N'Innovative intangible database', N'Painting Mr generation wind speak animal all. Once hundred probably. Authority large because of alone certain possible. First would fish standard might.', N'Non-Fiction', CAST(N'1985-11-27T00:00:00.000' AS DateTime), CAST(N'1984-05-10T00:00:00.000' AS DateTime), N'Available', CAST(66 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4775, N'9941753362', N'Progressive fresh-thinking core', N'Local able relate represent yard particularly perhaps look. Wife next different knowledge specific. Ground chair sing appear. Support health commercial painting maybe page bad at.', N'History', CAST(N'1992-06-16T00:00:00.000' AS DateTime), CAST(N'1981-11-14T00:00:00.000' AS DateTime), N'Reserved', CAST(740 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4776, N'1017612674', N'Multi-tiered coherent pricing structure', N'Eat say weight natural anything whole. Central name environmental natural. Civil especially wrong condition between alone industry. Challenge suddenly society. You next sister goal see seat pattern.', N'Biography', CAST(N'2002-09-23T00:00:00.000' AS DateTime), CAST(N'1995-02-28T00:00:00.000' AS DateTime), N'Reserved', CAST(249 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4777, N'8834156886', N'Secured 6thgeneration intranet', N'Rather audience generation daughter. Building others direction agency condition attorney company poor. Kid care clearly attack knowledge three. Just even performance.', N'Non-Fiction', CAST(N'1991-06-12T00:00:00.000' AS DateTime), CAST(N'1989-09-04T00:00:00.000' AS DateTime), N'Reserved', CAST(68 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4778, N'6110084038', N'Streamlined actuating groupware', N'Clear tend television not. Themselves human wall individual. Water describe look measure former.', N'Non-Fiction', CAST(N'1989-08-11T00:00:00.000' AS DateTime), CAST(N'1983-05-21T00:00:00.000' AS DateTime), N'In Repair', CAST(220 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4779, N'8936426534', N'Reactive multi-state utilization', N'Worker tonight yeah career research large across. See southern so lead air offer. Whole yeah Mr always without other.', N'History', CAST(N'1999-11-18T00:00:00.000' AS DateTime), CAST(N'1996-03-28T00:00:00.000' AS DateTime), N'Reserved', CAST(144 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4780, N'2427587444', N'Public-key multi-tasking solution', N'Meeting music visit wrong point chance. Over these north natural character.', N'Science', CAST(N'2002-10-01T00:00:00.000' AS DateTime), CAST(N'1999-11-20T00:00:00.000' AS DateTime), N'Reserved', CAST(880 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4781, N'4561676031', N'Object-based dedicated strategy', N'Sound tax type oil attorney able inside first. Level service reveal throw impact off. Participant source bed by culture. Sound experience those clear.', N'Technology', CAST(N'2009-11-14T00:00:00.000' AS DateTime), CAST(N'1981-05-17T00:00:00.000' AS DateTime), N'In Repair', CAST(362 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4782, N'7263330552', N'Focused system-worthy knowledge user', N'Effect avoid see officer listen star ability. Time bring after central wait next. Official a actually design. Remember myself medical after.', N'Science', CAST(N'2000-01-05T00:00:00.000' AS DateTime), CAST(N'1990-04-01T00:00:00.000' AS DateTime), N'Available', CAST(327 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4783, N'2731174315', N'Future-proofed 5thgeneration ability', N'Peace girl speak east plan save style. Cause notice issue value long spend. Environment public view record. Guess character foreign father. Human try son visit. Type how exactly win hard artist.', N'Technology', CAST(N'1999-12-15T00:00:00.000' AS DateTime), CAST(N'1984-11-06T00:00:00.000' AS DateTime), N'Available', CAST(293 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4784, N'8445925531', N'De-engineered mobile middleware', N'Specific agree power result game before. Population woman happen well. Feel act computer left all. Be whole build art partner care.', N'History', CAST(N'1997-02-09T00:00:00.000' AS DateTime), CAST(N'1995-02-04T00:00:00.000' AS DateTime), N'Reserved', CAST(338 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4785, N'5375388151', N'Open-architected asynchronous capability', N'Together box will consider. Seat often explain detail feel. Available single budget more economy item new. Pretty nearly continue among Republican laugh.', N'History', CAST(N'1997-05-13T00:00:00.000' AS DateTime), CAST(N'1984-07-30T00:00:00.000' AS DateTime), N'Available', CAST(292 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4786, N'7300952569', N'User-friendly clear-thinking middleware', N'Well system fast protect pick. Trial grow pressure happen three likely final. Conference others chance upon well.', N'History', CAST(N'1984-08-24T00:00:00.000' AS DateTime), CAST(N'1983-11-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(976 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4787, N'4236662890', N'Configurable asymmetric complexity', N'Offer manage thousand remember. Or difference growth part. Soon case deep beat. Start Mrs southern pattern. Tree production personal its theory culture.', N'Biography', CAST(N'1991-11-13T00:00:00.000' AS DateTime), CAST(N'1982-03-07T00:00:00.000' AS DateTime), N'Reserved', CAST(937 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4788, N'9977054137', N'Quality-focused grid-enabled concept', N'Summer along past watch kitchen. Property return former hospital give ahead dream. Five social data. Compare girl authority sign letter. Price under recognize likely need.', N'Technology', CAST(N'2018-09-05T00:00:00.000' AS DateTime), CAST(N'1998-06-21T00:00:00.000' AS DateTime), N'Checked Out', CAST(275 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4789, N'3987792260', N'Compatible object-oriented emulation', N'They majority ability into not per run. Activity represent window garden. Security skill prove significant record they stay rich. Support raise couple.', N'Biography', CAST(N'2004-04-29T00:00:00.000' AS DateTime), CAST(N'2002-05-28T00:00:00.000' AS DateTime), N'Reserved', CAST(887 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4790, N'5257636927', N'Universal system-worthy synergy', N'Activity himself single teacher memory. Maybe chance course little challenge she last. Glass miss admit. Movie government their. Magazine research himself.', N'Non-Fiction', CAST(N'1989-08-16T00:00:00.000' AS DateTime), CAST(N'1982-01-28T00:00:00.000' AS DateTime), N'Reserved', CAST(340 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4791, N'5359108271', N'Total bi-directional data-warehouse', N'Happen item hotel. Speech spring middle up always century learn. Develop could yard ready sign rich expert. Already pull end meeting. Card without somebody general television.', N'Technology', CAST(N'2021-06-26T00:00:00.000' AS DateTime), CAST(N'2001-05-06T00:00:00.000' AS DateTime), N'In Repair', CAST(392 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4792, N'1435514363', N'Re-engineered background application', N'Use item administration cut memory center newspaper. Step father floor successful modern cup decide. Risk assume movie matter lay difficult friend. Quite certain computer pick.', N'Non-Fiction', CAST(N'2012-02-28T00:00:00.000' AS DateTime), CAST(N'2000-01-17T00:00:00.000' AS DateTime), N'Available', CAST(883 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4793, N'3145099960', N'Distributed even-keeled secured line', N'Authority prove expert price indicate type. Various move smile much leader situation. Baby service of film. Name necessary small staff wind consider per. Box worker every now.', N'Fiction', CAST(N'2012-02-15T00:00:00.000' AS DateTime), CAST(N'2001-10-30T00:00:00.000' AS DateTime), N'In Repair', CAST(868 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4794, N'8553017238', N'Proactive non-volatile array', N'Process lawyer worker stop race. Personal wonder child nearly. Dinner prepare carry. Mrs teacher choice section hand. Model business week piece act. Involve miss note apply hundred travel garden.', N'Non-Fiction', CAST(N'2016-04-03T00:00:00.000' AS DateTime), CAST(N'1997-09-14T00:00:00.000' AS DateTime), N'Available', CAST(929 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4795, N'8189264798', N'Multi-tiered intangible paradigm', N'Test site whose many fight city. Miss itself spring note. Mean fire stand direction into rule near. Floor list four light. Fly federal case near down. With outside ten manager image nature.', N'Technology', CAST(N'1987-02-15T00:00:00.000' AS DateTime), CAST(N'1986-06-25T00:00:00.000' AS DateTime), N'In Repair', CAST(855 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4796, N'5156043915', N'Down-sized exuding matrices', N'Character ready southern paper light. Serious realize approach hotel something if century recent. Better development foot establish traditional possible walk. Me speech statement nation.', N'Biography', CAST(N'1980-01-05T00:00:00.000' AS DateTime), CAST(N'1980-01-03T00:00:00.000' AS DateTime), N'Available', CAST(262 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4797, N'5497627343', N'Seamless foreground orchestration', N'Son indeed exist service thing. Expect husband amount. Ever nearly tree break. Instead student on laugh growth sing spend wide. Reason ten or probably fill serious.', N'Biography', CAST(N'2014-03-13T00:00:00.000' AS DateTime), CAST(N'2006-12-10T00:00:00.000' AS DateTime), N'Available', CAST(933 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4798, N'7291592295', N'Optional analyzing superstructure', N'Hit hold enjoy mother else the. Also attorney change benefit suddenly maintain his maintain. American close maybe sell best offer less.', N'History', CAST(N'2006-02-20T00:00:00.000' AS DateTime), CAST(N'1993-06-09T00:00:00.000' AS DateTime), N'In Repair', CAST(120 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4799, N'1271049557', N'Multi-layered zero-defect application', N'Study score their certainly forward defense. Culture sure design matter. Commercial turn subject during increase. Listen let usually set. Official property camera.', N'History', CAST(N'2021-04-12T00:00:00.000' AS DateTime), CAST(N'1985-07-12T00:00:00.000' AS DateTime), N'Checked Out', CAST(323 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4800, N'6706274430', N'Synchronized well-modulated productivity', N'Door nice a citizen. Believe practice among. Near real and hundred government recognize. Ever risk value chair newspaper miss. Either test success real land.', N'Technology', CAST(N'2004-09-08T00:00:00.000' AS DateTime), CAST(N'1992-06-10T00:00:00.000' AS DateTime), N'Available', CAST(298 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4801, N'2259569037', N'Configurable actuating architecture', N'Compare religious his doctor nation no. Star chair meet. Air two move sport.', N'Biography', CAST(N'1980-08-09T00:00:00.000' AS DateTime), CAST(N'1980-01-15T00:00:00.000' AS DateTime), N'In Repair', CAST(934 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4802, N'9879816815', N'Open-source regional standardization', N'Speech huge tend. Assume try soon course beyond exist could. Onto attorney price remember usually.', N'Technology', CAST(N'1990-03-09T00:00:00.000' AS DateTime), CAST(N'1984-08-28T00:00:00.000' AS DateTime), N'Checked Out', CAST(594 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4803, N'6850665705', N'Centralized fault-tolerant Graphic Interface', N'Strategy save career you market like. Drive television everybody. History audience school truth activity another. Magazine professor heavy. Themselves doctor answer different imagine be.', N'Biography', CAST(N'1985-03-31T00:00:00.000' AS DateTime), CAST(N'1983-09-11T00:00:00.000' AS DateTime), N'Available', CAST(147 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4804, N'1746148918', N'Face-to-face secondary paradigm', N'President challenge girl foot color. News very general leader hard. Education bag traditional. Recently soldier finish across. Somebody cultural research factor. Cause senior so home never.', N'Science', CAST(N'2013-02-26T00:00:00.000' AS DateTime), CAST(N'2007-05-02T00:00:00.000' AS DateTime), N'In Repair', CAST(251 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4805, N'3544872160', N'Managed encompassing groupware', N'Never exist true movie white four social science. Shake red area road you. Eat choice house these. Market drive bag major paper. Amount teacher particular organization art without.', N'Fiction', CAST(N'1993-04-22T00:00:00.000' AS DateTime), CAST(N'1987-11-21T00:00:00.000' AS DateTime), N'Reserved', CAST(97 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4806, N'6665836433', N'Horizontal 4thgeneration moratorium', N'Issue paper movement. People risk water economic expect policy. Let find with final total. Contain full child plan note center quality. Memory job contain decide interesting.', N'Technology', CAST(N'2002-09-05T00:00:00.000' AS DateTime), CAST(N'1988-06-21T00:00:00.000' AS DateTime), N'In Repair', CAST(750 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4807, N'4436320392', N'Multi-channeled methodical secured line', N'Himself thus approach lead according investment. Gun eat describe again fire our report. Agent job staff speech common.', N'Biography', CAST(N'2011-04-01T00:00:00.000' AS DateTime), CAST(N'2008-01-11T00:00:00.000' AS DateTime), N'Reserved', CAST(57 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4808, N'6097431613', N'Ameliorated 24/7 project', N'Research drive such professional same. Protect amount wish contain. Type cold pay modern life will because. From blood measure left test. Story positive include hundred coach.', N'Fiction', CAST(N'1983-08-23T00:00:00.000' AS DateTime), CAST(N'1982-04-02T00:00:00.000' AS DateTime), N'In Repair', CAST(289 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4809, N'6970027005', N'Down-sized hybrid open architecture', N'Majority work represent discuss. Change section feel less defense explain. After many head in different.', N'Non-Fiction', CAST(N'2014-07-05T00:00:00.000' AS DateTime), CAST(N'2006-08-04T00:00:00.000' AS DateTime), N'In Repair', CAST(167 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4810, N'4690876372', N'Multi-lateral object-oriented approach', N'Career whatever few somebody generation especially. Left level somebody talk. Institution professor involve talk.', N'History', CAST(N'1982-12-16T00:00:00.000' AS DateTime), CAST(N'1982-01-14T00:00:00.000' AS DateTime), N'In Repair', CAST(663 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4811, N'4702596889', N'Organized stable hardware', N'Buy street will everyone war. Reach thank agree break few population. Raise six PM million grow beyond including month.', N'Technology', CAST(N'1984-02-22T00:00:00.000' AS DateTime), CAST(N'1982-12-11T00:00:00.000' AS DateTime), N'Checked Out', CAST(99 AS Numeric(18, 0))) INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4812, N'5238039117', N'Organized analyzing architecture', N'Offer practice our. Successful successful action whether. Customer question mind focus hand. Receive tough eye field chair. Could concern plan town and rate where.', N'Non-Fiction', CAST(N'1990-10-29T00:00:00.000' AS DateTime), CAST(N'1984-04-10T00:00:00.000' AS DateTime), N'Available', CAST(904 AS Numeric(18, 0))) GO INSERT [dbo].[tbl_Books] ([BookID], [ISBN_Num], [BookTitle], [BookDesc], [BookCat], [DatePurchased], [DatePublished], [Availability], [Price]) VALUES (4813, N'8723789861', N'Enhanced exuding initiative', N'Clearly wrong must. If wear floor. Indeed garden draw then. Scene big old five. Some ten many born. Several probably bring entire indicate particularly recently bag.', N'Biography', CAST(N'1981-02-10T00:00:00.000' AS DateTime), CAST(N'1980-04-17T00:00:00.000' AS DateTime), N'Available', CAST(600 AS Numeric(18, 0))) SET IDENTITY_INSERT [dbo].[tbl_Books] OFF GO
Editor is loading...
Leave a Comment