reymota-0.18.sql 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. --
  2. -- PostgreSQL database dump
  3. --
  4. -- Dumped from database version 15.8 (Debian 15.8-1.pgdg120+1)
  5. -- Dumped by pg_dump version 15.8 (Debian 15.8-1.pgdg120+1)
  6. SET statement_timeout = 0;
  7. SET lock_timeout = 0;
  8. SET idle_in_transaction_session_timeout = 0;
  9. SET client_encoding = 'UTF8';
  10. SET standard_conforming_strings = on;
  11. SELECT pg_catalog.set_config('search_path', '', false);
  12. SET check_function_bodies = false;
  13. SET xmloption = content;
  14. SET client_min_messages = warning;
  15. SET row_security = off;
  16. SET default_tablespace = '';
  17. SET default_table_access_method = heap;
  18. --
  19. -- Name: auth_group; Type: TABLE; Schema: public; Owner: creylopez
  20. --
  21. CREATE TABLE public.auth_group (
  22. id integer NOT NULL,
  23. name character varying(150) NOT NULL
  24. );
  25. ALTER TABLE public.auth_group OWNER TO creylopez;
  26. --
  27. -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  28. --
  29. ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  30. SEQUENCE NAME public.auth_group_id_seq
  31. START WITH 1
  32. INCREMENT BY 1
  33. NO MINVALUE
  34. NO MAXVALUE
  35. CACHE 1
  36. );
  37. --
  38. -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: creylopez
  39. --
  40. CREATE TABLE public.auth_group_permissions (
  41. id bigint NOT NULL,
  42. group_id integer NOT NULL,
  43. permission_id integer NOT NULL
  44. );
  45. ALTER TABLE public.auth_group_permissions OWNER TO creylopez;
  46. --
  47. -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  48. --
  49. ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  50. SEQUENCE NAME public.auth_group_permissions_id_seq
  51. START WITH 1
  52. INCREMENT BY 1
  53. NO MINVALUE
  54. NO MAXVALUE
  55. CACHE 1
  56. );
  57. --
  58. -- Name: auth_permission; Type: TABLE; Schema: public; Owner: creylopez
  59. --
  60. CREATE TABLE public.auth_permission (
  61. id integer NOT NULL,
  62. name character varying(255) NOT NULL,
  63. content_type_id integer NOT NULL,
  64. codename character varying(100) NOT NULL
  65. );
  66. ALTER TABLE public.auth_permission OWNER TO creylopez;
  67. --
  68. -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  69. --
  70. ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  71. SEQUENCE NAME public.auth_permission_id_seq
  72. START WITH 1
  73. INCREMENT BY 1
  74. NO MINVALUE
  75. NO MAXVALUE
  76. CACHE 1
  77. );
  78. --
  79. -- Name: django_admin_log; Type: TABLE; Schema: public; Owner: creylopez
  80. --
  81. CREATE TABLE public.django_admin_log (
  82. id integer NOT NULL,
  83. action_time timestamp with time zone NOT NULL,
  84. object_id text,
  85. object_repr character varying(200) NOT NULL,
  86. action_flag smallint NOT NULL,
  87. change_message text NOT NULL,
  88. content_type_id integer,
  89. user_id bigint NOT NULL,
  90. CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
  91. );
  92. ALTER TABLE public.django_admin_log OWNER TO creylopez;
  93. --
  94. -- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  95. --
  96. ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  97. SEQUENCE NAME public.django_admin_log_id_seq
  98. START WITH 1
  99. INCREMENT BY 1
  100. NO MINVALUE
  101. NO MAXVALUE
  102. CACHE 1
  103. );
  104. --
  105. -- Name: django_content_type; Type: TABLE; Schema: public; Owner: creylopez
  106. --
  107. CREATE TABLE public.django_content_type (
  108. id integer NOT NULL,
  109. app_label character varying(100) NOT NULL,
  110. model character varying(100) NOT NULL
  111. );
  112. ALTER TABLE public.django_content_type OWNER TO creylopez;
  113. --
  114. -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  115. --
  116. ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  117. SEQUENCE NAME public.django_content_type_id_seq
  118. START WITH 1
  119. INCREMENT BY 1
  120. NO MINVALUE
  121. NO MAXVALUE
  122. CACHE 1
  123. );
  124. --
  125. -- Name: django_migrations; Type: TABLE; Schema: public; Owner: creylopez
  126. --
  127. CREATE TABLE public.django_migrations (
  128. id bigint NOT NULL,
  129. app character varying(255) NOT NULL,
  130. name character varying(255) NOT NULL,
  131. applied timestamp with time zone NOT NULL
  132. );
  133. ALTER TABLE public.django_migrations OWNER TO creylopez;
  134. --
  135. -- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  136. --
  137. ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  138. SEQUENCE NAME public.django_migrations_id_seq
  139. START WITH 1
  140. INCREMENT BY 1
  141. NO MINVALUE
  142. NO MAXVALUE
  143. CACHE 1
  144. );
  145. --
  146. -- Name: django_session; Type: TABLE; Schema: public; Owner: creylopez
  147. --
  148. CREATE TABLE public.django_session (
  149. session_key character varying(40) NOT NULL,
  150. session_data text NOT NULL,
  151. expire_date timestamp with time zone NOT NULL
  152. );
  153. ALTER TABLE public.django_session OWNER TO creylopez;
  154. --
  155. -- Name: gestion_autor; Type: TABLE; Schema: public; Owner: creylopez
  156. --
  157. CREATE TABLE public.gestion_autor (
  158. id bigint NOT NULL,
  159. nombre character varying(200) NOT NULL,
  160. biografia text,
  161. foto character varying(100)
  162. );
  163. ALTER TABLE public.gestion_autor OWNER TO creylopez;
  164. --
  165. -- Name: gestion_autor_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  166. --
  167. ALTER TABLE public.gestion_autor ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  168. SEQUENCE NAME public.gestion_autor_id_seq
  169. START WITH 1
  170. INCREMENT BY 1
  171. NO MINVALUE
  172. NO MAXVALUE
  173. CACHE 1
  174. );
  175. --
  176. -- Name: gestion_libro; Type: TABLE; Schema: public; Owner: creylopez
  177. --
  178. CREATE TABLE public.gestion_libro (
  179. id bigint NOT NULL,
  180. titulo character varying(200) NOT NULL,
  181. fecha_publicacion bigint NOT NULL,
  182. descripcion text,
  183. archivo character varying(100) NOT NULL,
  184. portada character varying(100),
  185. autor_id bigint NOT NULL,
  186. CONSTRAINT gestion_libro_fecha_publicacion_check CHECK ((fecha_publicacion >= 0))
  187. );
  188. ALTER TABLE public.gestion_libro OWNER TO creylopez;
  189. --
  190. -- Name: gestion_libro_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  191. --
  192. ALTER TABLE public.gestion_libro ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  193. SEQUENCE NAME public.gestion_libro_id_seq
  194. START WITH 1
  195. INCREMENT BY 1
  196. NO MINVALUE
  197. NO MAXVALUE
  198. CACHE 1
  199. );
  200. --
  201. -- Name: gestion_reymotauser; Type: TABLE; Schema: public; Owner: creylopez
  202. --
  203. CREATE TABLE public.gestion_reymotauser (
  204. id bigint NOT NULL,
  205. password character varying(128) NOT NULL,
  206. last_login timestamp with time zone,
  207. is_superuser boolean NOT NULL,
  208. email character varying(254) NOT NULL,
  209. foto character varying(100) NOT NULL,
  210. is_staff boolean NOT NULL,
  211. is_active boolean NOT NULL,
  212. nombre character varying(200)
  213. );
  214. ALTER TABLE public.gestion_reymotauser OWNER TO creylopez;
  215. --
  216. -- Name: gestion_reymotauser_groups; Type: TABLE; Schema: public; Owner: creylopez
  217. --
  218. CREATE TABLE public.gestion_reymotauser_groups (
  219. id bigint NOT NULL,
  220. reymotauser_id bigint NOT NULL,
  221. group_id integer NOT NULL
  222. );
  223. ALTER TABLE public.gestion_reymotauser_groups OWNER TO creylopez;
  224. --
  225. -- Name: gestion_reymotauser_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  226. --
  227. ALTER TABLE public.gestion_reymotauser_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  228. SEQUENCE NAME public.gestion_reymotauser_groups_id_seq
  229. START WITH 1
  230. INCREMENT BY 1
  231. NO MINVALUE
  232. NO MAXVALUE
  233. CACHE 1
  234. );
  235. --
  236. -- Name: gestion_reymotauser_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  237. --
  238. ALTER TABLE public.gestion_reymotauser ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  239. SEQUENCE NAME public.gestion_reymotauser_id_seq
  240. START WITH 1
  241. INCREMENT BY 1
  242. NO MINVALUE
  243. NO MAXVALUE
  244. CACHE 1
  245. );
  246. --
  247. -- Name: gestion_reymotauser_user_permissions; Type: TABLE; Schema: public; Owner: creylopez
  248. --
  249. CREATE TABLE public.gestion_reymotauser_user_permissions (
  250. id bigint NOT NULL,
  251. reymotauser_id bigint NOT NULL,
  252. permission_id integer NOT NULL
  253. );
  254. ALTER TABLE public.gestion_reymotauser_user_permissions OWNER TO creylopez;
  255. --
  256. -- Name: gestion_reymotauser_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  257. --
  258. ALTER TABLE public.gestion_reymotauser_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  259. SEQUENCE NAME public.gestion_reymotauser_user_permissions_id_seq
  260. START WITH 1
  261. INCREMENT BY 1
  262. NO MINVALUE
  263. NO MAXVALUE
  264. CACHE 1
  265. );
  266. --
  267. -- Name: libros_autor; Type: TABLE; Schema: public; Owner: creylopez
  268. --
  269. CREATE TABLE public.libros_autor (
  270. id bigint NOT NULL,
  271. nombre character varying(200) NOT NULL,
  272. biografia text,
  273. foto character varying(100)
  274. );
  275. ALTER TABLE public.libros_autor OWNER TO creylopez;
  276. --
  277. -- Name: libros_autor_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  278. --
  279. ALTER TABLE public.libros_autor ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  280. SEQUENCE NAME public.libros_autor_id_seq
  281. START WITH 1
  282. INCREMENT BY 1
  283. NO MINVALUE
  284. NO MAXVALUE
  285. CACHE 1
  286. );
  287. --
  288. -- Name: libros_libro; Type: TABLE; Schema: public; Owner: creylopez
  289. --
  290. CREATE TABLE public.libros_libro (
  291. id bigint NOT NULL,
  292. titulo character varying(200) NOT NULL,
  293. fecha_publicacion bigint NOT NULL,
  294. descripcion text,
  295. archivo character varying(100) NOT NULL,
  296. portada character varying(100),
  297. autor_id bigint NOT NULL,
  298. CONSTRAINT libros_libro_fecha_publicacion_check CHECK ((fecha_publicacion >= 0))
  299. );
  300. ALTER TABLE public.libros_libro OWNER TO creylopez;
  301. --
  302. -- Name: libros_libro_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  303. --
  304. ALTER TABLE public.libros_libro ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  305. SEQUENCE NAME public.libros_libro_id_seq
  306. START WITH 1
  307. INCREMENT BY 1
  308. NO MINVALUE
  309. NO MAXVALUE
  310. CACHE 1
  311. );
  312. --
  313. -- Name: lyrics_album; Type: TABLE; Schema: public; Owner: creylopez
  314. --
  315. CREATE TABLE public.lyrics_album (
  316. id bigint NOT NULL,
  317. name character varying(200) NOT NULL,
  318. year bigint NOT NULL,
  319. cover_image character varying(100),
  320. artist_id bigint NOT NULL,
  321. CONSTRAINT lyrics_album_year_check CHECK ((year >= 0))
  322. );
  323. ALTER TABLE public.lyrics_album OWNER TO creylopez;
  324. --
  325. -- Name: lyrics_album_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  326. --
  327. ALTER TABLE public.lyrics_album ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  328. SEQUENCE NAME public.lyrics_album_id_seq
  329. START WITH 1
  330. INCREMENT BY 1
  331. NO MINVALUE
  332. NO MAXVALUE
  333. CACHE 1
  334. );
  335. --
  336. -- Name: lyrics_artista; Type: TABLE; Schema: public; Owner: creylopez
  337. --
  338. CREATE TABLE public.lyrics_artista (
  339. id bigint NOT NULL,
  340. nombre character varying(200) NOT NULL,
  341. biografia text,
  342. foto character varying(100)
  343. );
  344. ALTER TABLE public.lyrics_artista OWNER TO creylopez;
  345. --
  346. -- Name: lyrics_artista_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  347. --
  348. ALTER TABLE public.lyrics_artista ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  349. SEQUENCE NAME public.lyrics_artista_id_seq
  350. START WITH 1
  351. INCREMENT BY 1
  352. NO MINVALUE
  353. NO MAXVALUE
  354. CACHE 1
  355. );
  356. --
  357. -- Name: lyrics_song; Type: TABLE; Schema: public; Owner: creylopez
  358. --
  359. CREATE TABLE public.lyrics_song (
  360. id bigint NOT NULL,
  361. title character varying(200) NOT NULL,
  362. year bigint NOT NULL,
  363. lyrics character varying(10000) NOT NULL,
  364. pista numeric(5,0),
  365. album_id bigint NOT NULL,
  366. artist_id bigint NOT NULL,
  367. CONSTRAINT lyrics_song_year_check CHECK ((year >= 0))
  368. );
  369. ALTER TABLE public.lyrics_song OWNER TO creylopez;
  370. --
  371. -- Name: lyrics_song_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  372. --
  373. ALTER TABLE public.lyrics_song ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  374. SEQUENCE NAME public.lyrics_song_id_seq
  375. START WITH 1
  376. INCREMENT BY 1
  377. NO MINVALUE
  378. NO MAXVALUE
  379. CACHE 1
  380. );
  381. --
  382. -- Name: repostajes_repostaje; Type: TABLE; Schema: public; Owner: creylopez
  383. --
  384. CREATE TABLE public.repostajes_repostaje (
  385. id bigint NOT NULL,
  386. fecha date NOT NULL,
  387. kms numeric(10,0),
  388. litros numeric(10,2),
  389. descuento numeric(10,2),
  390. importe numeric(10,2),
  391. precioxlitro numeric(10,2),
  392. kmsrecorridos numeric(10,0),
  393. consumo numeric(10,2),
  394. vehiculo_id bigint NOT NULL
  395. );
  396. ALTER TABLE public.repostajes_repostaje OWNER TO creylopez;
  397. --
  398. -- Name: repostajes_repostaje_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  399. --
  400. ALTER TABLE public.repostajes_repostaje ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  401. SEQUENCE NAME public.repostajes_repostaje_id_seq
  402. START WITH 1
  403. INCREMENT BY 1
  404. NO MINVALUE
  405. NO MAXVALUE
  406. CACHE 1
  407. );
  408. --
  409. -- Name: repostajes_vehiculo; Type: TABLE; Schema: public; Owner: creylopez
  410. --
  411. CREATE TABLE public.repostajes_vehiculo (
  412. id bigint NOT NULL,
  413. marca character varying(200) NOT NULL,
  414. modelo character varying(200) NOT NULL,
  415. matricula character varying(200) NOT NULL,
  416. foto character varying(100)
  417. );
  418. ALTER TABLE public.repostajes_vehiculo OWNER TO creylopez;
  419. --
  420. -- Name: repostajes_vehiculo_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  421. --
  422. ALTER TABLE public.repostajes_vehiculo ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  423. SEQUENCE NAME public.repostajes_vehiculo_id_seq
  424. START WITH 1
  425. INCREMENT BY 1
  426. NO MINVALUE
  427. NO MAXVALUE
  428. CACHE 1
  429. );
  430. --
  431. -- Name: reymotausers_reymotauser; Type: TABLE; Schema: public; Owner: creylopez
  432. --
  433. CREATE TABLE public.reymotausers_reymotauser (
  434. id bigint NOT NULL,
  435. password character varying(128) NOT NULL,
  436. last_login timestamp with time zone,
  437. is_superuser boolean NOT NULL,
  438. email character varying(254) NOT NULL,
  439. foto character varying(100) NOT NULL,
  440. is_staff boolean NOT NULL,
  441. is_active boolean NOT NULL,
  442. nombre character varying(200)
  443. );
  444. ALTER TABLE public.reymotausers_reymotauser OWNER TO creylopez;
  445. --
  446. -- Name: reymotausers_reymotauser_groups; Type: TABLE; Schema: public; Owner: creylopez
  447. --
  448. CREATE TABLE public.reymotausers_reymotauser_groups (
  449. id bigint NOT NULL,
  450. reymotauser_id bigint NOT NULL,
  451. group_id integer NOT NULL
  452. );
  453. ALTER TABLE public.reymotausers_reymotauser_groups OWNER TO creylopez;
  454. --
  455. -- Name: reymotausers_reymotauser_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  456. --
  457. ALTER TABLE public.reymotausers_reymotauser_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  458. SEQUENCE NAME public.reymotausers_reymotauser_groups_id_seq
  459. START WITH 1
  460. INCREMENT BY 1
  461. NO MINVALUE
  462. NO MAXVALUE
  463. CACHE 1
  464. );
  465. --
  466. -- Name: reymotausers_reymotauser_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  467. --
  468. ALTER TABLE public.reymotausers_reymotauser ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  469. SEQUENCE NAME public.reymotausers_reymotauser_id_seq
  470. START WITH 1
  471. INCREMENT BY 1
  472. NO MINVALUE
  473. NO MAXVALUE
  474. CACHE 1
  475. );
  476. --
  477. -- Name: reymotausers_reymotauser_user_permissions; Type: TABLE; Schema: public; Owner: creylopez
  478. --
  479. CREATE TABLE public.reymotausers_reymotauser_user_permissions (
  480. id bigint NOT NULL,
  481. reymotauser_id bigint NOT NULL,
  482. permission_id integer NOT NULL
  483. );
  484. ALTER TABLE public.reymotausers_reymotauser_user_permissions OWNER TO creylopez;
  485. --
  486. -- Name: reymotausers_reymotauser_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: creylopez
  487. --
  488. ALTER TABLE public.reymotausers_reymotauser_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
  489. SEQUENCE NAME public.reymotausers_reymotauser_user_permissions_id_seq
  490. START WITH 1
  491. INCREMENT BY 1
  492. NO MINVALUE
  493. NO MAXVALUE
  494. CACHE 1
  495. );
  496. --
  497. -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: creylopez
  498. --
  499. COPY public.auth_group (id, name) FROM stdin;
  500. \.
  501. --
  502. -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: creylopez
  503. --
  504. COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
  505. \.
  506. --
  507. -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: creylopez
  508. --
  509. COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
  510. 1 Can add log entry 1 add_logentry
  511. 2 Can change log entry 1 change_logentry
  512. 3 Can delete log entry 1 delete_logentry
  513. 4 Can view log entry 1 view_logentry
  514. 5 Can add permission 2 add_permission
  515. 6 Can change permission 2 change_permission
  516. 7 Can delete permission 2 delete_permission
  517. 8 Can view permission 2 view_permission
  518. 9 Can add group 3 add_group
  519. 10 Can change group 3 change_group
  520. 11 Can delete group 3 delete_group
  521. 12 Can view group 3 view_group
  522. 13 Can add content type 4 add_contenttype
  523. 14 Can change content type 4 change_contenttype
  524. 15 Can delete content type 4 delete_contenttype
  525. 16 Can view content type 4 view_contenttype
  526. 17 Can add session 5 add_session
  527. 18 Can change session 5 change_session
  528. 19 Can delete session 5 delete_session
  529. 20 Can view session 5 view_session
  530. 21 Can add vehiculo 6 add_vehiculo
  531. 22 Can change vehiculo 6 change_vehiculo
  532. 23 Can delete vehiculo 6 delete_vehiculo
  533. 24 Can view vehiculo 6 view_vehiculo
  534. 25 Can add repostaje 7 add_repostaje
  535. 26 Can change repostaje 7 change_repostaje
  536. 27 Can delete repostaje 7 delete_repostaje
  537. 28 Can view repostaje 7 view_repostaje
  538. 29 Can add autor 8 add_autor
  539. 30 Can change autor 8 change_autor
  540. 31 Can delete autor 8 delete_autor
  541. 32 Can view autor 8 view_autor
  542. 33 Can add libro 9 add_libro
  543. 34 Can change libro 9 change_libro
  544. 35 Can delete libro 9 delete_libro
  545. 36 Can view libro 9 view_libro
  546. 37 Can add rey mota user 10 add_reymotauser
  547. 38 Can change rey mota user 10 change_reymotauser
  548. 39 Can delete rey mota user 10 delete_reymotauser
  549. 40 Can view rey mota user 10 view_reymotauser
  550. 41 Can add album 11 add_album
  551. 42 Can change album 11 change_album
  552. 43 Can delete album 11 delete_album
  553. 44 Can view album 11 view_album
  554. 45 Can add artista 12 add_artista
  555. 46 Can change artista 12 change_artista
  556. 47 Can delete artista 12 delete_artista
  557. 48 Can view artista 12 view_artista
  558. 49 Can add song 13 add_song
  559. 50 Can change song 13 change_song
  560. 51 Can delete song 13 delete_song
  561. 52 Can view song 13 view_song
  562. \.
  563. --
  564. -- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: creylopez
  565. --
  566. COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
  567. 1 2024-09-17 09:19:31.766082+00 115 2024-09-17 3 7 1
  568. 72 2024-09-19 15:34:25.587924+00 7 Born In The U.S.A. 2 [] 11 1
  569. \.
  570. --
  571. -- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: creylopez
  572. --
  573. COPY public.django_content_type (id, app_label, model) FROM stdin;
  574. 1 admin logentry
  575. 2 auth permission
  576. 3 auth group
  577. 4 contenttypes contenttype
  578. 5 sessions session
  579. 6 repostajes vehiculo
  580. 7 repostajes repostaje
  581. 8 libros autor
  582. 9 libros libro
  583. 10 reymotausers reymotauser
  584. 11 lyrics album
  585. 12 lyrics artista
  586. 13 lyrics song
  587. \.
  588. --
  589. -- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: creylopez
  590. --
  591. COPY public.django_migrations (id, app, name, applied) FROM stdin;
  592. 1 contenttypes 0001_initial 2024-09-17 07:48:21.287836+00
  593. 2 contenttypes 0002_remove_content_type_name 2024-09-17 07:48:21.338367+00
  594. 3 auth 0001_initial 2024-09-17 07:48:21.908087+00
  595. 4 auth 0002_alter_permission_name_max_length 2024-09-17 07:48:21.935858+00
  596. 5 auth 0003_alter_user_email_max_length 2024-09-17 07:48:21.965632+00
  597. 6 auth 0004_alter_user_username_opts 2024-09-17 07:48:21.993085+00
  598. 7 auth 0005_alter_user_last_login_null 2024-09-17 07:48:22.020456+00
  599. 8 auth 0006_require_contenttypes_0002 2024-09-17 07:48:22.041482+00
  600. 9 auth 0007_alter_validators_add_error_messages 2024-09-17 07:48:22.0802+00
  601. 10 auth 0008_alter_user_username_max_length 2024-09-17 07:48:22.141962+00
  602. 11 auth 0009_alter_user_last_name_max_length 2024-09-17 07:48:22.167269+00
  603. 12 auth 0010_alter_group_name_max_length 2024-09-17 07:48:22.200027+00
  604. 13 auth 0011_update_proxy_permissions 2024-09-17 07:48:22.237478+00
  605. 14 auth 0012_alter_user_first_name_max_length 2024-09-17 07:48:22.261674+00
  606. 15 reymotausers 0001_initial 2024-09-17 07:48:23.713843+00
  607. 16 admin 0001_initial 2024-09-17 07:48:24.006966+00
  608. 17 admin 0002_logentry_remove_auto_add 2024-09-17 07:48:24.042665+00
  609. 18 admin 0003_logentry_add_action_flag_choices 2024-09-17 07:48:24.076686+00
  610. 19 libros 0001_initial 2024-09-17 07:48:24.388201+00
  611. 20 lyrics 0001_initial 2024-09-17 07:48:25.095885+00
  612. 21 repostajes 0001_initial 2024-09-17 07:48:26.394494+00
  613. 22 sessions 0001_initial 2024-09-17 07:48:26.729142+00
  614. 30 lyrics 0002_alter_album_year_alter_song_lyrics 2024-09-20 09:39:56.105275+00
  615. \.
  616. --
  617. -- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: creylopez
  618. --
  619. COPY public.django_session (session_key, session_data, expire_date) FROM stdin;
  620. 5zuanr6zjachsizqvqycnlxzlepye3t4 .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1sqU9u:V497pdjbo9MywXttM-vP3_4ESzPGxNQGnK3ZWmD08XY 2024-10-01 09:06:06.653668+00
  621. 7r0imy7eaq9b1yaeals7xfemcltza59a .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1sh5QD:B1NIQ3Y0leC4wcVas3z6a-pRYoUhU37R1keIAL1oi2E 2024-09-05 10:52:05.846202+00
  622. kkl3yjxrg5ol67trj071x4t32u3ornn2 .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1shu6h:ipd0PXI8ukLO5l8yA_VGqOPIgORKz1jyGUCU6mzd89k 2024-09-07 16:59:19.42358+00
  623. xfwjiyp1mu7t7tmd94vvpi3ix08ej0hr .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1shwRH:ER8oYlU28KS7AJnY2FnwZ0ECYlhXY_SiT3CTkn4intQ 2024-09-07 19:28:43.940346+00
  624. enwgci71ixexwroegget7p9rttorulti .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1skTDY:9qT-7DMB_hCtyPY8nZqSi8-JWcX6-Ur30BPuGWJjqNc 2024-09-14 18:53:00.929394+00
  625. pt250xoqgoox8fq1eajhpy35wxud5o18 .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1skTSb:Zf2BRiXULAAg5h_NpUhwffgxWF_qFD0-hXh38cgC6sw 2024-09-14 19:08:33.870687+00
  626. ih1x91oxc0jeskxlpkl6j5g8zm0i0ojv .eJxVjDsOwjAQRO_iGln-b0xJnzNYa6-DA8iW4qRC3J1ESgHNFPPezJsF3NYStp6XMBO7Mskuv13E9Mz1APTAem88tbouc-SHwk_a-dgov26n-3dQsJd9PVhFltBql60XTqgok7dJgUHMUgkAI_SAMCGBIaOj8knARHtQ1ODY5wvH6Tdo:1snZAx:-BPhzjR6Sz8dtAdKDYg-tIz_MtLl_h9SPilDfR0VNeY 2024-09-23 07:51:07.900258+00
  627. m3fhgp0v0hks8g1z5fcqe7q89kr9qcz0 .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1srJNP:r9wiDgzYQz1EDoQMl7ECKFl7pTvyHhaS8MVf9dRT7lw 2024-10-03 15:47:27.794086+00
  628. cvwxmljxwzuads1vbt1wj69wiesalqhp .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1ssGn4:97eCxAQTiicSEWaYszFE49YW07yZXU3VV_0Px9D5UF0 2024-10-06 07:13:54.625421+00
  629. iwt1tbknb667vfs75ivz65mqg7p38kl5 .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1suobz:hKtOX8ucYy5o0-HOWcG7kqMA3nPVnvQ8PXcI6ZXl8_Q 2024-10-13 07:44:59.355171+00
  630. ndr5869jq3rqy9mzqaxsffx52cpz7arc .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1sw1jP:Y1I_2Ise4QN4GcY0gLT7oQEJ2kqNaZZSFRQoe5gEcNc 2024-10-16 15:57:39.760263+00
  631. 26fdv4z4efbr0q7rjte78fmqdeu12666 .eJxVjEsOAiEQBe_C2hDabhBcuvcMpPnJqIFkmFkZ766TzEK3r6reS3hel-rXkWc_JXEWIA6_W-D4yG0D6c7t1mXsbZmnIDdF7nTIa0_5edndv4PKo35ryzEgagtWBdRRMRti0kigo3aglEOrwJIzhoAMUtFHFVIJJyoIzoj3B6ofNhQ:1t0Ezx:k1YW_uRpOfrddKwt3Eq9hXBlFOZzXwmZcl3aISL7ARc 2024-10-28 06:56:09.75228+00
  632. \.
  633. --
  634. -- Data for Name: gestion_autor; Type: TABLE DATA; Schema: public; Owner: creylopez
  635. --
  636. COPY public.gestion_autor (id, nombre, biografia, foto) FROM stdin;
  637. 1 Paul Auster Vivió en Brooklin autores/auster_B9ItUZY.jpg
  638. 2 Ad Absurdum \N
  639. 3 Adams Douglas \N
  640. 4 Álber Vázquez \N
  641. 5 Almudena Grandes \N
  642. 6 Amin Maalouf \N
  643. 7 Amos Oz \N
  644. 8 Antonio Muñoz Molina \N
  645. 9 Arthur Conan Doyle \N
  646. 10 Arturo Pérez Reverte \N
  647. 11 Atwood Margaret \N
  648. 12 Bernal Díaz del Castillo \N
  649. 13 Bill Bryson \N
  650. 14 Bruce Springsteen \N
  651. 15 Camilla Läckberg \N
  652. 16 Carlos Ruiz Zafón \N
  653. 17 Carmen Gurruchaga \N
  654. 18 Celestino Rey López \N
  655. 19 Charles Darwin \N
  656. 20 Cormac McCarthy \N
  657. 21 Daniel Glattauer \N
  658. 77 Paul Auster \N
  659. 94 Tom Wolfe ddd autores/tom-wolfe-trabalibros.jpg
  660. 33 Falsarius Chef autores/falsarius.jpeg
  661. 70 Miguel Cervantes autores/Cervantes_Jáuregui.jpg
  662. 22 David S. Kidder & Noah D. Oppenheim a
  663. 83 Sebastian Haffner autores/Sebastian_Haffner.jpg
  664. 96 Walter Isaacson Walter Isaacson (Nueva Orleans, 20 de mayo de 1952) es un periodista, escritor y biógrafo estadounidense. autores/Walter_Isaacson_VF_2012_Shankbone_2.JPG
  665. 100 Woody Allen Heywood «Woody» Allen (registrado al nacer como Allan Stewart Konigsberg; Nueva York, 30 de noviembre de 1935)nota 1​ es un director de cine, actor y comediante estadounidense. Su prolífica carrera abarca más de seis décadas durante las cuales ha filmado en torno a medio centenar de películas. autores/220px-Woody_Allen_Cannes_2016.jpg
  666. 101 Yuval Noah Harari Yuval Noah Harari (Kiryat Atta, 24 de febrero de 1976) es un historiador y escritor israelí de origen judeopolaco, profesor en la Universidad Hebrea de Jerusalén. Entre sus obras se encuentran Sapiens: De animales a dioses, Homo Deus: Breve historia del mañana1​ y 21 lecciones para el siglo XXI autores/noahyuvalharari.jpg
  667. 99 Winston Groom autores/220px-Winston_Groom_cropped.jpg
  668. 98 William Faulkner autores/Carl_Van_Vechten_-_William_Faulkner.jpg
  669. 97 Warren Zanes Warren Zanes is an American musician and writer who has been known as guitarist for The Del Fuegos, a solo artist, and the biographer of Tom Petty. A Ph.D. in Visual and Cultural Studies,[1] Zanes is the former vice president of education and public programs for the Rock and Roll Hall of Fame and Museum and executive director of Steven Van Zandt's Rock and Roll Forever Foundation.[2] Zanes has taught at several American universities, including Case Western Reserve University, University of Rochester, and New York University, where he has been teaching since 2015. autores/Warren_Zanes_49586174627_cropped.jpg
  670. 95 Umberto Eco Umberto Eco (Alessandria, 5 de enero de 1932-Milán, 19 de febrero de 2016)1​ fue un semiólogo, filósofo y escritor italiano, autor de numerosos ensayos sobre semiótica, estética, lingüística y filosofía, así como de varias novelas, entre ellas El nombre de la rosa. autores/Italiaanse_schrijver_Umberto_Eco_portret.jpg
  671. 93 Timur Vermes Timur Vermes (Nuremberg, 1967) es un escritor y periodista alemán. autores/220px-Frankfurter_Buchmesse_2015_-_Timur_Vermes_1.jpeg
  672. 91 Ted Chiang Ted Chiang (nacido en 1967) es un escritor estadounidense de ficción especulativa. Su nombre chino es Chiang Feng-nan (姜峯楠). Sus trabajos de ficción breve le han supuesto cuatro premios Hugo y cuatro premios Nébula, además de otros prestigiosos premios de dicho género. autores/Chiang_Ted_Villarrubia_cropped.jpg
  673. 85 Sonia Fernández Vidal Sonia Fernández-Vidal (Barcelona, 8 de marzo de 1978) es una escritora, investigadora, emprendedora y divulgadora científica española. autores/sfv.jpg
  674. 84 Lorenzo Silva Lorenzo Manuel Silva Amador (Madrid, 7 de junio de 1966) es un escritor español conocido por sus novelas policíacas, que protagonizan los guardias civiles Rubén Bevilacqua y Virginia Chamorro. autores/Lorenzo_Silva_-_Buch_Wien_2023.JPG
  675. 82 Rudyard Kipling autores/220px-Kipling_nd.jpg
  676. 81 Rosa Montero autores/220px-Rosa_Montero.jpg
  677. 79 Pedro Vallín autores/vallin.jpg
  678. 78 Pauline Gedge autores/pauline.jpg
  679. 74 Patricia Cornwell autores/Patricia_Cornwell_2011_b.jpg
  680. 72 Julia Navarro a autores/AVT_Julia-Navarro_9103.jpg
  681. 69 Michel Houellebecq autores/michel.jpg
  682. 25 Edgar Allan Poe autores/Edgar_Allan_Poe_circa_1849_restored_squared_off.jpg
  683. 67 Mary Beard autores/beard.jpeg
  684. 65 Mario Vargas Llosa autores/Mario_Vargas_Llosa_crop_2.jpg
  685. 63 León Tolstói autores/L.N.Tolstoy_Prokudin-Gorsky.jpg
  686. 61 Kate Morton autores/morton.jpg
  687. 60 Joseph Conrad autores/220px-Joseph_Conrad.png
  688. 58 John Verdon autores/verdon.jpg
  689. 56 John LE CARRÉ autores/220px-John_le_Carré_cropped.jpg
  690. 55 Joël Dicker autores/250px-Joel_Dicker_2016.jpg
  691. 53 Javier Marías autores/marias.jpg
  692. 52 Javier Cercas autores/cercas.jpg
  693. 50 Jack Kerouac autores/Kerouac_by_Palumbo.jpg
  694. 47 J. M. Coetzee autores/220px-J.M._Coetzee.jpeg
  695. 46 Isaac Asimov autores/Isaac.Asimov01.jpg
  696. 44 Homero autores/homero.jpg
  697. 41 Henning Mankell autores/220px-Henning_Mankell_3_2011_Shankbone.jpg
  698. 39 H. G. Wells autores/H.G._Wells_by_Beresford.jpg
  699. 38 Greil Marcus autores/Greil_Marcus_SRN_cropped.jpg
  700. 32 Enrique Jardiel Poncela autores/Enrique_Jardiel_Poncela.jpeg
  701. 31 Eloy Moreno autores/Eloymoreno.jpg
  702. 30 Eliot Marc autores/wliot.jpeg
  703. 29 Edward Rutherfurd autores/edward.jpg
  704. 28 Eduardo Vaquerizo autores/Eduvaq.jpg
  705. 26 Eduardo Mendoza \N autores/mendoza.jpg
  706. 24 Dominique Lapierre & Larry Collins autores/lapierre.jpg
  707. 90 Stieg Larsson Karl Stig-Erland Larsson [/kɑɭ sti:g 'ɛɭɑnd 'lɑʂʊn/] (Skelleftehamn, Västerbotten; 15 de agosto de 1954-Estocolmo; 9 de noviembre de 2004), conocido simplemente como Stieg Larsson, fue un periodista y escritor sueco. Saltó a la fama tras su muerte, con la publicación de la trilogía de novelas policíacas Millennium, formada por Los hombres que no amaban a las mujeres (2005), La chica que soñaba con una cerilla y un bidón de gasolina (2006) y La reina en el palacio de las corrientes de aire (2007). autores/Stieg_Larsson.jpg
  708. 87 Stephen Hawking Stephen William Hawking (pronunciación en inglés: /stiːvən_ˈhɔːkɪŋ/ (escucharⓘ); Oxford, 8 de enero de 1942-Cambridge, 14 de marzo de 2018)2​3​ fue un físico teórico, astrofísico, cosmólogo y divulgador científico británico. Sus trabajos más importantes consistieron en aportar, junto con Roger Penrose, teoremas respecto a las singularidades espaciotemporales en el marco de la relatividad general y la predicción teórica de que los agujeros negros emitirían radiación,4​ lo que se conoce hoy en día como radiación de Hawking (o a veces radiación Bekenstein-Hawking). Una de las principales características de su personalidad fue su contribución al debate científico, a veces apostando públicamente con otros científicos. El caso más conocido es su participación en la discusión sobre la conservación de la información en los agujeros negros.5​ autores/Stephen_Hawking.StarChild.jpg
  709. 86 Stanislaw Lem Stanisław Herman Lem (pronunciación en polaco: [staˈɲiswaf ˈlɛm]ⓘ) (12 de septiembre de 1921-27 de marzo de 2006) fue un escritor polaco cuya obra se ha caracterizado por su tono satírico y filosófico. Sus libros, entre los cuales se encuentran Ciberíada y Solaris, se han traducido a 40 lenguas y ha vendido 27 millones de ejemplares. Es considerado como uno de los mayores exponentes del género de la ciencia ficción y uno de los pocos escritores que siendo de habla no inglesa ha alcanzado fama mundial en el género. autores/St_Lem_resize.jpg
  710. 80 Philip K. Dick autores/Philip_K_Dick.jpg
  711. 76 Patricia Highsmith autores/Highsmith_on_After_Dark.JPG
  712. 66 Mark Twain autores/Mark_Twain_by_AF_Bradley.jpg
  713. 64 Maria Dueñas autores/Maria_Dueñas_02.JPG
  714. 62 Ken Follett autores/Ken_Follett_official.jpg
  715. 59 José Enrique Campillo Álvarez autores/000024349_1_Campillo_Alvarez_Jose_Enrique__200_201603170002.jpg
  716. 54 Jens Lapidus autores/Jens_Lapidus_Bok__Bibliotek_2008.jpg
  717. 51 James Joyce autores/Jamesjoyce_tuohy-ohne.jpg
  718. 48 J. R. R. Tolkien autores/J._R._R._Tolkien_ca._1925.jpg
  719. 45 Ildefonso Falcones autores/falcones.jpg
  720. 43 Herman Melville autores/220px-Herman_Melville_by_Joseph_O_Eaton.jpg
  721. 40 Haruki Murakami autores/Murakami_Haruki_2009.jpg
  722. 37 George Orwell autores/George_Orwell_c._1940_41928180381.jpg
  723. 36 Francisco de Quevedo autores/250px-Quevedo_copia_de_Velázquez.jpg
  724. 27 Eduardo Punset autores/Eduard_Punset.jpg
  725. \.
  726. --
  727. -- Data for Name: gestion_libro; Type: TABLE DATA; Schema: public; Owner: creylopez
  728. --
  729. COPY public.gestion_libro (id, titulo, fecha_publicacion, descripcion, archivo, portada, autor_id) FROM stdin;
  730. 255 Guía del Autoestopista Galáctico 1 2024 \N libros/Guia del Autoestopista Galactico 1 - Adams Douglas.epub 3
  731. 256 Inés y la alegría 2024 \N libros/Ines y la alegria - Almudena Grandes.epub 5
  732. 257 Orígenes (El libro de bolsillo - Bibliotecas de autor - Biblioteca Maalouf) (Spanish Edition) 2024 \N libros/Origenes (El libro de bolsillo - Bibliotec - Amin Maalouf.epub 6
  733. 258 Una historia de amor y oscuridad 2024 \N libros/Una historia de amor y oscuridad - Amos Oz.epub 7
  734. 259 La noche de los tiempos 2024 \N libros/La noche de los tiempos - Antonio Munoz Molina.epub 8
  735. 260 No te veré morir (Biblioteca Breve) (Spanish Edition) 2024 \N libros/No te vere morir (Biblioteca Breve) (Spani - Antonio Munoz Molina.epub 8
  736. 261 The Blind Assassin 2024 \N libros/The Blind Assassin - Atwood Margaret.epub 11
  737. 263 Fantasmas 2024 \N libros/Fantasmas - Auster Paul.epub 1
  738. 264 País de las últimas cosas, El 2024 \N libros/Pais de las ultimas cosas, El - Auster Paul.epub 1
  739. 265 Leviatán 2024 \N libros/Leviatan - Auster Paul.epub 1
  740. 266 Palacio de la Luna, El 2024 \N libros/Palacio de la Luna, El - Auster Paul.epub 1
  741. 267 Verdadera historia de los sucesos de la conquista de la Nueva-España (2 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo I.epub 12
  742. 268 Verdadera historia de los sucesos de la conquista de la Nueva-España (3 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo II.epub 12
  743. 269 Verdadera historia de los sucesos de la conquista de la Nueva-España (1 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo.epub 12
  744. 270 In a Sunburned Country 2024 \N libros/In a Sunburned Country - Bill Bryson.epub 13
  745. 271 Born to Run 2024 \N libros/Born to Run - Bruce Springsteen.epub 14
  746. 272 La princesa de hielo 2024 \N libros/La princesa de hielo - Camilla Lackberg.epub 15
  747. 273 Las huellas imborrables 2024 \N libros/Las huellas imborrables - Camilla Lackberg.epub 15
  748. 274 Gritos del pasado, Los 2024 \N libros/Gritos del pasado, Los - Camilla Lackberg.epub 15
  749. 275 Hijas del frío, Las 2024 \N libros/Hijas del frio, Las - Camilla Lackberg.epub 15
  750. 276 La prueba 2024 \N libros/La prueba - Carmen Gurruchaga.epub 17
  751. 277 The White Lioness (Revisado) 2024 \N libros/The White Lioness (Revisado) - Celestino Rey Lopez.epub 41
  752. 278 El origen de las especies 2024 \N libros/El origen de las especies - Charles Darwin.epub 19
  753. 279 La historia de tu vida 2024 \N libros/La historia de tu vida - Chiang, Ted.epub 91
  754. 280 Youth 2024 \N libros/Youth - Coetzee, J. M_.epub 47
  755. 281 The Complete Sherlock Holmes (1930) 2024 \N libros/The Complete Sherlock Holmes (1930) - Conan Doyle Arthur.epub 9
  756. 282 The Road (Vintage International) 2024 \N libros/The Road (Vintage International) - Cormac McCarthy.epub 20
  757. 283 POSTMORTEM 2024 \N libros/POSTMORTEM - Cornwell, Patricia.epub 74
  758. 284 365 días para ser más culto 2024 \N libros/365 dias para ser mas culto - David S. Kidder.epub 22
  759. 285 Sueñan los androides con ovejas eléctricas 2024 \N libros/Suenan los androides con ovejas electricas - Dick, Philip K_.epub 80
  760. 286 Oh, Jerusalén 2024 \N libros/Oh, Jerusalen - Dominique Lapierre.epub 24
  761. 287 El cuervo 2024 \N libros/El cuervo - Edgar Allan Poe.epub 25
  762. 288 El escarabajo de oro 2024 \N libros/El escarabajo de oro - Edgar Allan Poe.epub 25
  763. 289 Sin noticias de Gurb 2024 \N libros/Sin noticias de Gurb - Eduardo Mendoza.epub 26
  764. 290 La verdad sobre el caso Savolta 2024 \N libros/La verdad sobre el caso Savolta - Eduardo Mendoza.epub 26
  765. 291 El laberinto de las aceitunas 2024 \N libros/El laberinto de las aceitunas - Eduardo Mendoza.epub 26
  766. 292 Riña de gatos. Madrid 1936 2024 \N libros/Rina de gatos. Madrid 1936 - Eduardo Mendoza.epub 26
  767. 293 La ciudad de los prodigios 2024 \N libros/La ciudad de los prodigios - Eduardo Mendoza.epub 26
  768. 294 El misterio de la cripta embrujada 2024 \N libros/El misterio de la cripta embrujada - Eduardo Mendoza.epub 26
  769. 295 El año del diluvio 2024 \N libros/El ano del diluvio - Eduardo Mendoza.epub 26
  770. 296 La aventura del tocador de señoras 2024 \N libros/La aventura del tocador de senoras - Eduardo Mendoza.epub 26
  771. 297 El asombroso viaje de Pomponio Flato 2024 \N libros/El asombroso viaje de Pomponio Flato - Eduardo Mendoza.epub 26
  772. 298 El último Trayecto de Horacio Dos 2024 \N libros/El ultimo Trayecto de Horacio Dos - Eduardo Mendoza.epub 26
  773. 299 La Isla Inaudita 2024 \N libros/La Isla Inaudita - Eduardo Mendoza.epub 26
  774. 300 Nueva York 2024 \N libros/Nueva York - Eduardo Mendoza.epub 26
  775. 301 El viaje al poder de la mente 2024 \N libros/El viaje al poder de la mente - Eduardo Punset.epub 27
  776. 302 La última noche de Hipatia 2024 \N libros/La ultima noche de Hipatia - Eduardo Vaquerizo.epub 28
  777. 303 New York 2024 \N libros/New York - Edward Rutherfurd.epub 29
  778. 304 American Rebel: The Life of Clint Eastwood 2024 \N libros/American Rebel_ The Life of Clint Eastwood - Eliot Marc.epub 30
  779. 305 El bolígrafo de gel verde 2024 \N libros/El boligrafo de gel verde - Eloy Moreno.epub 31
  780. 306 Diez minutos antes de la medianoche: Novela para muchachas y hombres tímidos (Breviarios de Rey Lear nº 44) (Spanish Edition) 2024 \N libros/Diez minutos antes de la medianoche_ Novel - Enrique Jardiel Poncela.epub 32
  781. 307 Cocina Para Impostores 2024 \N libros/Cocina Para Impostores - Falsarius Chef.epub 33
  782. 308 Fall of Giants 2024 \N libros/Fall of Giants - Follett, Ken.epub 62
  783. 262 Libro de las ilusiones, El 2024 libros/Libro de las ilusiones, El - Auster Paul.epub portadas/devilsanddust.jpg 1
  784. 309 España defendida 2024 \N libros/Espana defendida - Francisco de Quevedo.epub 36
  785. 310 El Faraon 2024 \N libros/El Faraon - Gedge, Pauline.epub 78
  786. 311 Nineteen eighty-four 2024 \N libros/Nineteen eighty-four - George Orwell.epub 37
  787. 312 Contra el viento del Norte 2024 \N libros/Contra el viento del Norte - Glattauer, Daniel.epub 21
  788. 313 Folk Music 2024 \N libros/Folk Music - Greil Marcus.epub 38
  789. 314 H. G. Wells - Gesammelte Werke: (Der Krieg der Welten. Die Zeitmaschine. Die Insel des Dr. Moreau. Die ersten Menschen im Mond. Wenn der Schläfer erwacht. Der Unsichtbare ...) (German Edition) 2024 \N libros/H. G. Wells - Gesammelte Werke_ (Der Krieg - H. G. Wells.epub 39
  790. 315 Baila, baila, baila (Volumen independiente) (Spanish Edition) 2024 \N libros/Baila, baila, baila (Volumen independiente - Haruki Murakami.epub 40
  791. 316 After Dark 2024 \N libros/After Dark - Haruki Murakami.epub 40
  792. 317 1q84 Libro 3 2024 \N libros/1q84 Libro 3 - Haruki Murakami.epub 40
  793. 318 The Wind-Up Bird Chronicle 2024 \N libros/The Wind-Up Bird Chronicle - Haruki Murakami.epub 40
  794. 319 El fin del mundo y un despiadado país de las maravillas 2024 \N libros/El fin del mundo y un despiadado pais de l - Haruki Murakami.epub 40
  795. 320 What I Talk About When I Talk About Running 2024 \N libros/What I Talk About When I Talk About Runnin - Haruki Murakami.epub 40
  796. 321 Retorno del profesor de baile, El 2024 \N libros/Retorno del profesor de baile, El - Henning Mankell.epub 41
  797. 322 Pisando los talones 2024 \N libros/Pisando los talones - Henning Mankell.epub 41
  798. 323 Quinta mujer, La 2024 \N libros/Quinta mujer, La - Henning Mankell.epub 41
  799. 324 Antes de que hiele 2024 \N libros/Antes de que hiele - Henning Mankell.epub 41
  800. 325 Pirámide, La 2024 \N libros/Piramide, La - Henning Mankell.epub 41
  801. 326 Comedia Infantil 2024 \N libros/Comedia Infantil - Henning Mankell.epub 41
  802. 327 La Leona Blanca 2024 \N libros/La Leona Blanca - Henning Mankell.epub 41
  803. 328 The White Lioness 2024 \N libros/The White Lioness - Henning Mankell.epub 41
  804. 329 Secreto del fuego, El 2024 \N libros/Secreto del fuego, El - Henning Mankell.epub 41
  805. 330 Before the Frost 2024 \N libros/Before the Frost - Henning Mankell.epub 41
  806. 331 Cerebro De Kennedy, El 2024 \N libros/Cerebro De Kennedy, El - Henning Mankell.epub 41
  807. 332 Zapatos italianos 2024 \N libros/Zapatos italianos - Henning Mankell.epub 41
  808. 333 Asesinos sin rostro 2024 \N libros/Asesinos sin rostro - Henning Mankell.epub 41
  809. 334 Hombre sonriente, El 2024 \N libros/Hombre sonriente, El - Henning Mankell.epub 41
  810. 335 Los Perros de Riga 2024 \N libros/Los Perros de Riga - Henning Mankell.epub 41
  811. 336 Hijo del viento, El 2024 \N libros/Hijo del viento, El - Henning Mankell.epub 41
  812. 337 Profundidades 2024 \N libros/Profundidades - Henning Mankell.epub 41
  813. 338 Hombre inquieto, El 2024 \N libros/Hombre inquieto, El - Henning Mankell.epub 41
  814. 339 Return of the Dancing Master 2024 \N libros/Return of the Dancing Master - Henning Mankell.epub 41
  815. 340 Falsa pista, La 2024 \N libros/Falsa pista, La - Henning Mankell.epub 41
  816. 341 Moby Dick 2024 \N libros/Moby Dick - Herman Melville.epub 43
  817. 342 Ripley en peligro 2024 \N libros/Ripley en peligro - Highsmith, Patricia.epub 76
  818. 343 Relatos 2024 \N libros/Relatos - Highsmith, Patricia.epub 76
  819. 344 El talento de Mr. Ripley 2024 \N libros/El talento de Mr. Ripley - Highsmith, Patricia.epub 76
  820. 345 Extraños en un tren 2024 \N libros/Extranos en un tren - Highsmith, Patricia.epub 76
  821. 346 Ilíada (NUEVA BCG) (Spanish Edition) 2024 \N libros/Iliada (NUEVA BCG) (Spanish Edition) - , Homero.epub 44
  822. 347 La Catedral del Mar 2024 \N libros/La Catedral del Mar - Ildefonso Falcones.epub 45
  823. 348 Imperio 3: Un guijarro en el cielo 2024 \N libros/Imperio 3_ Un guijarro en el cielo - Isaac Asimov.epub 46
  824. 349 Segunda Fundación 2024 \N libros/Segunda Fundacion - Isaac Asimov.epub 46
  825. 350 Fundación 2024 \N libros/Fundacion - Isaac Asimov.epub 46
  826. 351 Trilogía de la fundación 2024 \N libros/Trilogia de la fundacion - Isaac Asimov.epub 46
  827. 352 Preludio a La Fundación 2024 \N libros/Preludio a La Fundacion - Isaac Asimov.epub 46
  828. 353 Hacia La Fundación 2024 \N libros/Hacia La Fundacion - Isaac Asimov.epub 46
  829. 354 Imperio 2: Las corrientes del espacio 2024 \N libros/Imperio 2_ Las corrientes del espacio - Isaac Asimov.epub 46
  830. 355 Yo, robot 2024 \N libros/Yo, robot - Isaac Asimov.epub 46
  831. 356 Los robots del amanecer 2024 \N libros/Los robots del amanecer - Isaac Asimov.epub 46
  832. 357 Fundación e Imperio 2024 \N libros/Fundacion e Imperio - Isaac Asimov.epub 46
  833. 358 Bóvedas de acero 2024 \N libros/Bovedas de acero - Isaac Asimov.epub 46
  834. 359 Robots e Imperio 2024 \N libros/Robots e Imperio - Isaac Asimov.epub 46
  835. 360 I, Robot 2024 \N libros/I, Robot - Isaac Asimov.epub 46
  836. 361 En la arena estelar 2024 \N libros/En la arena estelar - Isaac Asimov.epub 46
  837. 362 Fundación y Tierra 2024 \N libros/Fundacion y Tierra - Isaac Asimov.epub 46
  838. 363 Los limites de la fundación 2024 \N libros/Los limites de la fundacion - Isaac Asimov.epub 46
  839. 364 El sol desnudo 2024 \N libros/El sol desnudo - Isaac Asimov.epub 46
  840. 365 La comunidad del anillo (ilustrado) 2024 \N libros/La comunidad del anillo (ilustrado) - J. R. R. Tolkien.epub 48
  841. 366 On The Road 2024 \N libros/On The Road - Jack Kerouac.epub 50
  842. 367 Ulises 2024 \N libros/Ulises - James Joyce.epub 51
  843. 368 Anatomia De Un Instante 2024 \N libros/Anatomia De Un Instante - Javier Cercas.epub 52
  844. 369 Los Enamoramientos 2024 \N libros/Los Enamoramientos - Javier Marias.epub 53
  845. 370 Corazón tan blanco 2024 \N libros/Corazon tan blanco - Javier Marias.epub 53
  846. 371 Tu rostro mañana 2024 \N libros/Tu rostro manana - Javier Marias.epub 53
  847. 372 Todas las almas 2024 \N libros/Todas las almas - Javier Marias.epub 53
  848. 373 El hombre sentimental 2024 \N libros/El hombre sentimental - Javier Marias.epub 53
  849. 374 El siglo 2024 \N libros/El siglo - Javier Marias.epub 53
  850. 375 Los dominios del lobo 2024 \N libros/Los dominios del lobo - Javier Marias.epub 53
  851. 376 Travesía del horizonte 2024 \N libros/Travesia del horizonte - Javier Marias.epub 53
  852. 377 Una vida de lujo 2024 \N libros/Una vida de lujo - Jens Lapidus.epub 54
  853. 378 Nunca la jodas 2024 \N libros/Nunca la jodas - Jens Lapidus.epub 54
  854. 379 Dinero fácil 2024 \N libros/Dinero facil - Jens Lapidus.epub 54
  855. 380 La verdad sobre el caso Harry Quebert 2024 \N libros/La verdad sobre el caso Harry Quebert - Joel Dicker.epub 55
  856. 381 El espía que surgió del frío 2024 \N libros/El espia que surgio del frio - John LE CARRE.epub 56
  857. 384 El mono obeso (Drakontos) (Spanish Edition) 2024 \N libros/El mono obeso (Drakontos) (Spanish Edition - Jose Enrique Campillo Alvarez.epub 59
  858. 385 Heart of Darkness 2024 \N libros/Heart of Darkness - Joseph Conrad.epub 60
  859. 386 Las horas distantes 2024 \N libros/Las horas distantes - Kate Morton.epub 61
  860. 387 El jardín olvidado 2024 \N libros/El jardin olvidado - Kate Morton.epub 61
  861. 388 La casa de Riverton 2024 \N libros/La casa de Riverton - Kate Morton.epub 61
  862. 389 El umbral de la eternidad 2024 \N libros/El umbral de la eternidad - Ken Follett.epub 62
  863. 390 Pilares de la Tierra, Los 2024 \N libros/Pilares de la Tierra, Los - Ken Follett.epub 62
  864. 391 Sturz der Titanen 2024 \N libros/Sturz der Titanen - Ken Follett.epub 62
  865. 392 Crimen En Directo 2024 \N libros/Crimen En Directo - Lackberg, Camilla.epub 15
  866. 393 Solaris 2024 \N libros/Solaris - Lem, Stanislaw.epub 86
  867. 394 Ana Karenina 2024 \N libros/Ana Karenina - Leon Tolstoi.epub 63
  868. 395 León el Africano 2024 \N libros/Leon el Africano - Maalouf, Amin.epub 6
  869. 396 Depths 2024 \N libros/Depths - Mankell Henning.epub 41
  870. 397 Firewall 2024 \N libros/Firewall - Mankell Henning.epub 41
  871. 398 A Bridge to the Stars 2024 \N libros/A Bridge to the Stars - Mankell Henning.epub 41
  872. 399 Chronicler Of The Winds 2024 \N libros/Chronicler Of The Winds - Mankell Henning.epub 41
  873. 400 Faceless Killers 2024 \N libros/Faceless Killers - Mankell Henning.epub 41
  874. 401 Shadows in the Twilight 2024 \N libros/Shadows in the Twilight - Mankell Henning.epub 41
  875. 402 The Fifth Woman 2024 \N libros/The Fifth Woman - Mankell Henning.epub 41
  876. 403 El tiempo entre costuras 2024 \N libros/El tiempo entre costuras - Maria Duenas.epub 64
  877. 404 La tía Julia y el escribidor 2024 \N libros/La tia Julia y el escribidor - Mario Vargas Llosa.epub 65
  878. 405 El hablador 2024 \N libros/El hablador - Mario Vargas Llosa.epub 65
  879. 406 El sueño del celta 2024 \N libros/El sueno del celta - Mario Vargas Llosa.epub 65
  880. 407 Travesuras de la niña mala 2024 \N libros/Travesuras de la nina mala - Mario Vargas Llosa.epub 65
  881. 408 La Fiesta del Chivo 2024 \N libros/La Fiesta del Chivo - Mario Vargas Llosa.epub 65
  882. 409 Los cuadernos de don Rigoberto 2024 \N libros/Los cuadernos de don Rigoberto - Mario Vargas Llosa.epub 65
  883. 410 La ciudad y los perros 2024 \N libros/La ciudad y los perros - Mario Vargas Llosa.epub 65
  884. 411 La verdad de las mentiras, ensayos sobre literatura 2024 \N libros/La verdad de las mentiras, ensayos sobre l - Mario Vargas Llosa.epub 65
  885. 412 La casa verde 2024 \N libros/La casa verde - Mario Vargas Llosa.epub 65
  886. 413 Historia de Mayta 2024 \N libros/Historia de Mayta - Mario Vargas Llosa.epub 65
  887. 414 Quién mató a Palomino Molero 2024 \N libros/Quien mato a Palomino Molero - Mario Vargas Llosa.epub 65
  888. 415 La guerra del fin del mundo 2024 \N libros/La guerra del fin del mundo - Mario Vargas Llosa.epub 65
  889. 416 Historia secreta de una novela 2024 \N libros/Historia secreta de una novela - Mario Vargas Llosa.epub 65
  890. 417 Conversación en la catedral 2024 \N libros/Conversacion en la catedral - Mario Vargas Llosa.epub 65
  891. 418 Lituma en los Andes 2024 \N libros/Lituma en los Andes - Mario Vargas Llosa.epub 65
  892. 419 Elogio de la Madrastra 2024 \N libros/Elogio de la Madrastra - Mario Vargas Llosa.epub 65
  893. 420 El loco de los balcones 2024 \N libros/El loco de los balcones - Mario Vargas Llosa.epub 65
  894. 421 Pantaleón y las visitadoras 2024 \N libros/Pantaleon y las visitadoras - Mario Vargas Llosa.epub 65
  895. 422 El pez en el agua 2024 \N libros/El pez en el agua - Mario Vargas Llosa.epub 65
  896. 423 El Paraíso en la otra esquina 2024 \N libros/El Paraiso en la otra esquina - Mario Vargas Llosa.epub 65
  897. 424 Following the Equator 2024 \N libros/Following the Equator - Mark Twain.epub 66
  898. 425 Las aventuras de Tom Sawyer 2024 \N libros/Las aventuras de Tom Sawyer - Mark Twain.epub 66
  899. 426 Meine Reise um die WeltErste Abteilung (German Edition) 2024 \N libros/Meine Reise um die WeltErste Abteilung (Ge - Mark Twain.epub 66
  900. 427 SPQR (Spanish Edition) 2024 \N libros/SPQR (Spanish Edition) - Mary Beard.epub 67
  901. 428 El enredo de la bolsa y la vida (Biblioteca Eduardo Mendoza) (Spanish Edition) 2024 \N libros/El enredo de la bolsa y la vida (Bibliotec - Mendoza Eduardo.epub 26
  902. 429 H.P. Lovecraft: Contre Le Monde, Contre La Vie 2024 \N libros/H.P. Lovecraft_ Contre Le Monde, Contre La - Michel Houellebecq.epub 69
  903. 430 Novelas ejemplares 2024 \N libros/Novelas ejemplares - Miguel Cervantes.epub 70
  904. 431 El ingenioso hidalgo Don Quijote de la Mancha 2024 \N libros/El ingenioso hidalgo Don Quijote de la Man - Miguel Cervantes.epub 70
  905. 433 Los años de peregrinación del chico sin color (Spanish Edition) 2024 \N libros/Los anos de peregrinacion del chico sin co - Murakami, Haruki, Haruki Murakami.epub 40
  906. 434 Dime quién soy 2024 \N libros/Dime quien soy - Navarro, Julia.epub 72
  907. 435 The Last Precinct #11 2024 \N libros/The Last Precinct #11 - Patricia Cornwell.epub 74
  908. 436 Cruel and Unusual 2024 \N libros/Cruel and Unusual - Patricia Cornwell.epub 74
  909. 437 At Risk 2024 \N libros/At Risk - Patricia Cornwell.epub 74
  910. 438 Black Notice 2024 \N libros/Black Notice - Patricia Cornwell.epub 74
  911. 439 Book of the Dead 2024 \N libros/Book of the Dead - Patricia Cornwell.epub 74
  912. 440 The Scarpetta Factor #17 2024 \N libros/The Scarpetta Factor #17 - Patricia Cornwell.epub 74
  913. 441 Body of Evidence: A Scarpetta Novel #2 2024 \N libros/Body of Evidence_ A Scarpetta Novel #2 - Patricia Cornwell.epub 74
  914. 442 Point of Origin #9 2024 \N libros/Point of Origin #9 - Patricia Cornwell.epub 74
  915. 443 Hornet's Nest #1 2024 \N libros/Hornet's Nest #1 - Patricia Cornwell.epub 74
  916. 457 El juego de Ripley 2024 \N libros/El juego de Ripley - Patricia Highsmith.epub 76
  917. 458 Sunset Park 2024 \N libros/Sunset Park - Paul Auster.epub 1
  918. 459 Invisible 2024 \N libros/Invisible - Paul Auster.epub 1
  919. 460 ¡Me cago en Godard!: Por qué deberías adorar el cine americano (y desconfiar del cine de autor) si eres culto y progre (Spanish Edition) 2024 \N libros/!Me cago en Godard!_ Por que deberias ador - Pedro Vallin.epub 79
  920. 461 El Asedio 2024 \N libros/El Asedio - Perez Reverte, Arturo.epub 10
  921. 462 Lágrimas en la lluvia 2024 \N libros/Lagrimas en la lluvia - Rosa Montero.epub 81
  922. 463 El hombre que pudo reinar 2024 \N libros/El hombre que pudo reinar - Rudyard Kipling.epub 82
  923. 464 Juego del Ángel, El 2024 \N libros/Juego del Angel, El - Ruiz Zafon Carlos.epub 16
  924. 465 Sombra del Viento, La 2024 \N libros/Sombra del Viento, La - Ruiz Zafon Carlos.epub 16
  925. 466 Sarum 2024 \N libros/Sarum - Rutherfurd, Edward.epub 29
  926. 467 Rebels of Ireland 2024 \N libros/Rebels of Ireland - Rutherfurd, Edward.epub 29
  927. 468 London 2024 \N libros/London - Rutherfurd, Edward.epub 29
  928. 469 Russka 2024 \N libros/Russka - Rutherfurd, Edward.epub 29
  929. 470 Princes of Ireland 2024 \N libros/Princes of Ireland - Rutherfurd, Edward.epub 29
  930. 471 Forest 2024 \N libros/Forest - Rutherfurd, Edward.epub 29
  931. 472 Historia de un alemán (Memorias 1914-1933) 2024 \N libros/Historia de un aleman (Memorias 1914-1933) - Sebastian Haffner.epub 83
  932. 473 Un asunto rutinario 2024 \N libros/Un asunto rutinario - Silva Lorenzo.epub 84
  933. 474 La Reina sin Espejo 2024 \N libros/La Reina sin Espejo - Silva Lorenzo.epub 84
  934. 475 Carta Blanca 2024 \N libros/Carta Blanca - Silva Lorenzo.epub 84
  935. 476 El lejano país de los estanques 2024 \N libros/El lejano pais de los estanques - Silva Lorenzo.epub 84
  936. 477 La Sustancia Interior 2024 \N libros/La Sustancia Interior - Silva Lorenzo.epub 84
  937. 478 El nombre de los nuestros 2024 \N libros/El nombre de los nuestros - Silva Lorenzo.epub 84
  938. 479 La flaqueza del bolchevique 2024 \N libros/La flaqueza del bolchevique - Silva Lorenzo.epub 84
  939. 480 El alquimista impaciente 2024 \N libros/El alquimista impaciente - Silva Lorenzo.epub 84
  940. 481 Del Rif a Yebela 2024 \N libros/Del Rif a Yebela - Silva Lorenzo.epub 84
  941. 482 Desayuno con partículas (Spanish Edition) 2024 \N libros/Desayuno con particulas (Spanish Edition) - Sonia Fernandez Vidal.epub 85
  942. 483 El universo en una cascara de nuez 2024 \N libros/El universo en una cascara de nuez - Stephen Hawking.epub 87
  943. 484 The Grand Design 2024 \N libros/The Grand Design - Stephen Hawking.epub 87
  944. 485 Girl with the Dragon Tattoo, The 2024 \N libros/Girl with the Dragon Tattoo, The - Stieg Larsson.epub 90
  945. 486 Girl Who Played with Fire, The 2024 \N libros/Girl Who Played with Fire, The - Stieg Larsson.epub 90
  946. 432 Predator 2012 libros/Predator - Monica.epub portadas/predator.jpg 74
  947. 487 La Chica Que Soñaba Con Una Cerilla Y Un Bidon De Gasolina 2024 \N libros/La Chica Que Sonaba Con Una Cerilla Y Un B - Stieg Larsson.epub 90
  948. 488 Los Hombres Que No Amaban A Las Mujeres 2024 \N libros/Los Hombres Que No Amaban A Las Mujeres - Stieg Larsson.epub 90
  949. 489 La Reina en el Palacio de las Corrientes de Aire 2024 \N libros/La Reina en el Palacio de las Corrientes d - Stieg Larsson.epub 90
  950. 490 Stories of Your Life and Others 2024 \N libros/Stories of Your Life and Others - Ted Chiang.epub 91
  951. 491 Ha Vuelto 2024 \N libros/Ha Vuelto - Timur Vermes.epub 93
  952. 492 Er ist wieder da 2024 \N libros/Er ist wieder da - Timur Vermes.epub 93
  953. 493 El Hobbit 2024 \N libros/El Hobbit - Tolkien, J. R. R_.epub 48
  954. 494 El cementerio de Praga 2024 \N libros/El cementerio de Praga - Umberto Eco.epub 95
  955. 495 Mediohombre (Novela histórica) (Spanish Edition) 2024 \N libros/Mediohombre (Novela historica) (Spanish Ed - Vazquez, Alber.epub 4
  956. 496 Se lo que estas pensando 2024 \N libros/Se lo que estas pensando - Verdon, John.epub 58
  957. 497 Steve Jobs. La biografía 2024 \N libros/Steve Jobs. La biografia - Walter Isaacson.epub 96
  958. 498 Deliver Me from Nowhere 2024 \N libros/Deliver Me from Nowhere_ The Making of Bru - Warren Zanes.epub 97
  959. 499 The Sound and the Fury 2024 \N libros/The Sound and the Fury - William Faulkner.epub 98
  960. 500 Forrest Gump 2024 \N libros/Forrest Gump - Winston Groom.epub 99
  961. 501 La hoguera de las vanidades 2024 \N libros/La hoguera de las vanidades - Wolfe, Tom.epub 94
  962. 502 Como acabar de una vez por todas con la cultura 2024 \N libros/Como acabar de una vez por todas con la cu - Woody Allen.epub 100
  963. 503 Sapiens. De animales a dioses (Spanish Edition) 2024 \N libros/Sapiens. De animales a dioses (Spanish Edi - Yuval Noah Harari.epub 101
  964. 504 21 lecciones para el siglo XXI (Spanish Edition) 2024 \N libros/21 lecciones para el siglo XXI (Spanish Ed - Yuval Noah Harari.epub 101
  965. 505 Homo Deus (Spanish Edition) 2024 \N libros/Homo Deus (Spanish Edition) - Yuval Noah Harari.epub 101
  966. 254 Historia absurda de España (Spanish Edition) 2024 libros/Historia absurda de Espana (Spanish Editio - Ad Absurdum.epub portadas/historiaabsurda.jpg 2
  967. 444 Port Mortuary #18 2024 \N libros/Port Mortuary #18 - Patricia D Cornwell.epub 74
  968. 445 Unnatural Exposure #8 2024 \N libros/Unnatural Exposure #8 - Patricia Daniels Cornwell.epub 74
  969. 446 Portrait of a Killer: Jack the Ripper Case Closed 2024 \N libros/Portrait of a Killer_ Jack the Ripper Case - Patricia Daniels Cornwell.epub 74
  970. 447 Trace #13 2024 \N libros/Trace #13 - Patricia Daniels Cornwell.epub 74
  971. 448 Scarpetta 2024 \N libros/Scarpetta - Patricia Daniels Cornwell.epub 74
  972. 449 Blow Fly 2024 \N libros/Blow Fly - Patricia Daniels Cornwell.epub 74
  973. 450 Scarpetta's Winter Table 2024 \N libros/Scarpetta's Winter Table - Patricia Daniels Cornwell.epub 74
  974. 451 The Body Farm #5 2024 \N libros/The Body Farm #5 - Patricia Daniels Cornwell.epub 74
  975. 452 Isle of Dogs #3 2024 \N libros/Isle of Dogs #3 - Patricia Daniels Cornwell.epub 74
  976. 453 Cause of Death 2024 \N libros/Cause of Death - Patricia Daniels Cornwell.epub 74
  977. 454 Southern Cross #2 2024 \N libros/Southern Cross #2 - Patricia Daniels Cornwell.epub 74
  978. 455 From Potter's Field #6 2024 \N libros/From Potter's Field #6 - Patricia Daniels Cornwell.epub 74
  979. 456 All That Remains: A Novel #3 2024 \N libros/All That Remains_ A Novel #3 - Patricia Daniels Cornwell.epub 74
  980. \.
  981. --
  982. -- Data for Name: gestion_reymotauser; Type: TABLE DATA; Schema: public; Owner: creylopez
  983. --
  984. COPY public.gestion_reymotauser (id, password, last_login, is_superuser, email, foto, is_staff, is_active, nombre) FROM stdin;
  985. 1 pbkdf2_sha256$600000$TVsm8trBUsRBrds8hbJu9D$sFbfGXNW7bsMTmkyXL7wqGDLGV7rS8f5j4KxIIp0KZI= 2024-09-09 07:51:07.881522+00 t creylopez@yahoo.es profile_images/gravatar-tino_2e6WGmE.jpeg t t Celestino Rey
  986. \.
  987. --
  988. -- Data for Name: gestion_reymotauser_groups; Type: TABLE DATA; Schema: public; Owner: creylopez
  989. --
  990. COPY public.gestion_reymotauser_groups (id, reymotauser_id, group_id) FROM stdin;
  991. \.
  992. --
  993. -- Data for Name: gestion_reymotauser_user_permissions; Type: TABLE DATA; Schema: public; Owner: creylopez
  994. --
  995. COPY public.gestion_reymotauser_user_permissions (id, reymotauser_id, permission_id) FROM stdin;
  996. \.
  997. --
  998. -- Data for Name: libros_autor; Type: TABLE DATA; Schema: public; Owner: creylopez
  999. --
  1000. COPY public.libros_autor (id, nombre, biografia, foto) FROM stdin;
  1001. 1 Paul Auster Vivió en Brooklin autores/auster_B9ItUZY.jpg
  1002. 2 Ad Absurdum \N
  1003. 3 Adams Douglas \N
  1004. 4 Álber Vázquez \N
  1005. 5 Almudena Grandes \N
  1006. 6 Amin Maalouf \N
  1007. 7 Amos Oz \N
  1008. 8 Antonio Muñoz Molina \N
  1009. 9 Arthur Conan Doyle \N
  1010. 10 Arturo Pérez Reverte \N
  1011. 11 Atwood Margaret \N
  1012. 12 Bernal Díaz del Castillo \N
  1013. 13 Bill Bryson \N
  1014. 14 Bruce Springsteen \N
  1015. 15 Camilla Läckberg \N
  1016. 16 Carlos Ruiz Zafón \N
  1017. 17 Carmen Gurruchaga \N
  1018. 18 Celestino Rey López \N
  1019. 19 Charles Darwin \N
  1020. 20 Cormac McCarthy \N
  1021. 21 Daniel Glattauer \N
  1022. 77 Paul Auster \N
  1023. 94 Tom Wolfe ddd autores/tom-wolfe-trabalibros.jpg
  1024. 33 Falsarius Chef autores/falsarius.jpeg
  1025. 70 Miguel Cervantes autores/Cervantes_Jáuregui.jpg
  1026. 22 David S. Kidder & Noah D. Oppenheim a
  1027. 83 Sebastian Haffner autores/Sebastian_Haffner.jpg
  1028. 96 Walter Isaacson Walter Isaacson (Nueva Orleans, 20 de mayo de 1952) es un periodista, escritor y biógrafo estadounidense. autores/Walter_Isaacson_VF_2012_Shankbone_2.JPG
  1029. 100 Woody Allen Heywood «Woody» Allen (registrado al nacer como Allan Stewart Konigsberg; Nueva York, 30 de noviembre de 1935)nota 1​ es un director de cine, actor y comediante estadounidense. Su prolífica carrera abarca más de seis décadas durante las cuales ha filmado en torno a medio centenar de películas. autores/220px-Woody_Allen_Cannes_2016.jpg
  1030. 101 Yuval Noah Harari Yuval Noah Harari (Kiryat Atta, 24 de febrero de 1976) es un historiador y escritor israelí de origen judeopolaco, profesor en la Universidad Hebrea de Jerusalén. Entre sus obras se encuentran Sapiens: De animales a dioses, Homo Deus: Breve historia del mañana1​ y 21 lecciones para el siglo XXI autores/noahyuvalharari.jpg
  1031. 99 Winston Groom autores/220px-Winston_Groom_cropped.jpg
  1032. 98 William Faulkner autores/Carl_Van_Vechten_-_William_Faulkner.jpg
  1033. 97 Warren Zanes Warren Zanes is an American musician and writer who has been known as guitarist for The Del Fuegos, a solo artist, and the biographer of Tom Petty. A Ph.D. in Visual and Cultural Studies,[1] Zanes is the former vice president of education and public programs for the Rock and Roll Hall of Fame and Museum and executive director of Steven Van Zandt's Rock and Roll Forever Foundation.[2] Zanes has taught at several American universities, including Case Western Reserve University, University of Rochester, and New York University, where he has been teaching since 2015. autores/Warren_Zanes_49586174627_cropped.jpg
  1034. 95 Umberto Eco Umberto Eco (Alessandria, 5 de enero de 1932-Milán, 19 de febrero de 2016)1​ fue un semiólogo, filósofo y escritor italiano, autor de numerosos ensayos sobre semiótica, estética, lingüística y filosofía, así como de varias novelas, entre ellas El nombre de la rosa. autores/Italiaanse_schrijver_Umberto_Eco_portret.jpg
  1035. 93 Timur Vermes Timur Vermes (Nuremberg, 1967) es un escritor y periodista alemán. autores/220px-Frankfurter_Buchmesse_2015_-_Timur_Vermes_1.jpeg
  1036. 91 Ted Chiang Ted Chiang (nacido en 1967) es un escritor estadounidense de ficción especulativa. Su nombre chino es Chiang Feng-nan (姜峯楠). Sus trabajos de ficción breve le han supuesto cuatro premios Hugo y cuatro premios Nébula, además de otros prestigiosos premios de dicho género. autores/Chiang_Ted_Villarrubia_cropped.jpg
  1037. 85 Sonia Fernández Vidal Sonia Fernández-Vidal (Barcelona, 8 de marzo de 1978) es una escritora, investigadora, emprendedora y divulgadora científica española. autores/sfv.jpg
  1038. 84 Lorenzo Silva Lorenzo Manuel Silva Amador (Madrid, 7 de junio de 1966) es un escritor español conocido por sus novelas policíacas, que protagonizan los guardias civiles Rubén Bevilacqua y Virginia Chamorro. autores/Lorenzo_Silva_-_Buch_Wien_2023.JPG
  1039. 82 Rudyard Kipling autores/220px-Kipling_nd.jpg
  1040. 81 Rosa Montero autores/220px-Rosa_Montero.jpg
  1041. 79 Pedro Vallín autores/vallin.jpg
  1042. 78 Pauline Gedge autores/pauline.jpg
  1043. 74 Patricia Cornwell autores/Patricia_Cornwell_2011_b.jpg
  1044. 72 Julia Navarro a autores/AVT_Julia-Navarro_9103.jpg
  1045. 69 Michel Houellebecq autores/michel.jpg
  1046. 25 Edgar Allan Poe autores/Edgar_Allan_Poe_circa_1849_restored_squared_off.jpg
  1047. 67 Mary Beard autores/beard.jpeg
  1048. 65 Mario Vargas Llosa autores/Mario_Vargas_Llosa_crop_2.jpg
  1049. 63 León Tolstói autores/L.N.Tolstoy_Prokudin-Gorsky.jpg
  1050. 61 Kate Morton autores/morton.jpg
  1051. 60 Joseph Conrad autores/220px-Joseph_Conrad.png
  1052. 58 John Verdon autores/verdon.jpg
  1053. 56 John LE CARRÉ autores/220px-John_le_Carré_cropped.jpg
  1054. 55 Joël Dicker autores/250px-Joel_Dicker_2016.jpg
  1055. 53 Javier Marías autores/marias.jpg
  1056. 52 Javier Cercas autores/cercas.jpg
  1057. 50 Jack Kerouac autores/Kerouac_by_Palumbo.jpg
  1058. 47 J. M. Coetzee autores/220px-J.M._Coetzee.jpeg
  1059. 46 Isaac Asimov autores/Isaac.Asimov01.jpg
  1060. 44 Homero autores/homero.jpg
  1061. 41 Henning Mankell autores/220px-Henning_Mankell_3_2011_Shankbone.jpg
  1062. 39 H. G. Wells autores/H.G._Wells_by_Beresford.jpg
  1063. 38 Greil Marcus autores/Greil_Marcus_SRN_cropped.jpg
  1064. 32 Enrique Jardiel Poncela autores/Enrique_Jardiel_Poncela.jpeg
  1065. 31 Eloy Moreno autores/Eloymoreno.jpg
  1066. 30 Eliot Marc autores/wliot.jpeg
  1067. 29 Edward Rutherfurd autores/edward.jpg
  1068. 28 Eduardo Vaquerizo autores/Eduvaq.jpg
  1069. 26 Eduardo Mendoza \N autores/mendoza.jpg
  1070. 24 Dominique Lapierre & Larry Collins autores/lapierre.jpg
  1071. 90 Stieg Larsson Karl Stig-Erland Larsson [/kɑɭ sti:g 'ɛɭɑnd 'lɑʂʊn/] (Skelleftehamn, Västerbotten; 15 de agosto de 1954-Estocolmo; 9 de noviembre de 2004), conocido simplemente como Stieg Larsson, fue un periodista y escritor sueco. Saltó a la fama tras su muerte, con la publicación de la trilogía de novelas policíacas Millennium, formada por Los hombres que no amaban a las mujeres (2005), La chica que soñaba con una cerilla y un bidón de gasolina (2006) y La reina en el palacio de las corrientes de aire (2007). autores/Stieg_Larsson.jpg
  1072. 87 Stephen Hawking Stephen William Hawking (pronunciación en inglés: /stiːvən_ˈhɔːkɪŋ/ (escucharⓘ); Oxford, 8 de enero de 1942-Cambridge, 14 de marzo de 2018)2​3​ fue un físico teórico, astrofísico, cosmólogo y divulgador científico británico. Sus trabajos más importantes consistieron en aportar, junto con Roger Penrose, teoremas respecto a las singularidades espaciotemporales en el marco de la relatividad general y la predicción teórica de que los agujeros negros emitirían radiación,4​ lo que se conoce hoy en día como radiación de Hawking (o a veces radiación Bekenstein-Hawking). Una de las principales características de su personalidad fue su contribución al debate científico, a veces apostando públicamente con otros científicos. El caso más conocido es su participación en la discusión sobre la conservación de la información en los agujeros negros.5​ autores/Stephen_Hawking.StarChild.jpg
  1073. 86 Stanislaw Lem Stanisław Herman Lem (pronunciación en polaco: [staˈɲiswaf ˈlɛm]ⓘ) (12 de septiembre de 1921-27 de marzo de 2006) fue un escritor polaco cuya obra se ha caracterizado por su tono satírico y filosófico. Sus libros, entre los cuales se encuentran Ciberíada y Solaris, se han traducido a 40 lenguas y ha vendido 27 millones de ejemplares. Es considerado como uno de los mayores exponentes del género de la ciencia ficción y uno de los pocos escritores que siendo de habla no inglesa ha alcanzado fama mundial en el género. autores/St_Lem_resize.jpg
  1074. 80 Philip K. Dick autores/Philip_K_Dick.jpg
  1075. 76 Patricia Highsmith autores/Highsmith_on_After_Dark.JPG
  1076. 66 Mark Twain autores/Mark_Twain_by_AF_Bradley.jpg
  1077. 64 Maria Dueñas autores/Maria_Dueñas_02.JPG
  1078. 62 Ken Follett autores/Ken_Follett_official.jpg
  1079. 59 José Enrique Campillo Álvarez autores/000024349_1_Campillo_Alvarez_Jose_Enrique__200_201603170002.jpg
  1080. 54 Jens Lapidus autores/Jens_Lapidus_Bok__Bibliotek_2008.jpg
  1081. 51 James Joyce autores/Jamesjoyce_tuohy-ohne.jpg
  1082. 48 J. R. R. Tolkien autores/J._R._R._Tolkien_ca._1925.jpg
  1083. 45 Ildefonso Falcones autores/falcones.jpg
  1084. 43 Herman Melville autores/220px-Herman_Melville_by_Joseph_O_Eaton.jpg
  1085. 40 Haruki Murakami autores/Murakami_Haruki_2009.jpg
  1086. 37 George Orwell autores/George_Orwell_c._1940_41928180381.jpg
  1087. 36 Francisco de Quevedo autores/250px-Quevedo_copia_de_Velázquez.jpg
  1088. 27 Eduardo Punset autores/Eduard_Punset.jpg
  1089. \.
  1090. --
  1091. -- Data for Name: libros_libro; Type: TABLE DATA; Schema: public; Owner: creylopez
  1092. --
  1093. COPY public.libros_libro (id, titulo, fecha_publicacion, descripcion, archivo, portada, autor_id) FROM stdin;
  1094. 255 Guía del Autoestopista Galáctico 1 2024 \N libros/Guia del Autoestopista Galactico 1 - Adams Douglas.epub 3
  1095. 256 Inés y la alegría 2024 \N libros/Ines y la alegria - Almudena Grandes.epub 5
  1096. 257 Orígenes (El libro de bolsillo - Bibliotecas de autor - Biblioteca Maalouf) (Spanish Edition) 2024 \N libros/Origenes (El libro de bolsillo - Bibliotec - Amin Maalouf.epub 6
  1097. 258 Una historia de amor y oscuridad 2024 \N libros/Una historia de amor y oscuridad - Amos Oz.epub 7
  1098. 259 La noche de los tiempos 2024 \N libros/La noche de los tiempos - Antonio Munoz Molina.epub 8
  1099. 260 No te veré morir (Biblioteca Breve) (Spanish Edition) 2024 \N libros/No te vere morir (Biblioteca Breve) (Spani - Antonio Munoz Molina.epub 8
  1100. 261 The Blind Assassin 2024 \N libros/The Blind Assassin - Atwood Margaret.epub 11
  1101. 263 Fantasmas 2024 \N libros/Fantasmas - Auster Paul.epub 1
  1102. 264 País de las últimas cosas, El 2024 \N libros/Pais de las ultimas cosas, El - Auster Paul.epub 1
  1103. 265 Leviatán 2024 \N libros/Leviatan - Auster Paul.epub 1
  1104. 266 Palacio de la Luna, El 2024 \N libros/Palacio de la Luna, El - Auster Paul.epub 1
  1105. 267 Verdadera historia de los sucesos de la conquista de la Nueva-España (2 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo I.epub 12
  1106. 268 Verdadera historia de los sucesos de la conquista de la Nueva-España (3 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo II.epub 12
  1107. 269 Verdadera historia de los sucesos de la conquista de la Nueva-España (1 de 3) 2024 \N libros/Verdadera historia de los sucesos de la co - Bernal Diaz del Castillo.epub 12
  1108. 270 In a Sunburned Country 2024 \N libros/In a Sunburned Country - Bill Bryson.epub 13
  1109. 271 Born to Run 2024 \N libros/Born to Run - Bruce Springsteen.epub 14
  1110. 272 La princesa de hielo 2024 \N libros/La princesa de hielo - Camilla Lackberg.epub 15
  1111. 273 Las huellas imborrables 2024 \N libros/Las huellas imborrables - Camilla Lackberg.epub 15
  1112. 274 Gritos del pasado, Los 2024 \N libros/Gritos del pasado, Los - Camilla Lackberg.epub 15
  1113. 275 Hijas del frío, Las 2024 \N libros/Hijas del frio, Las - Camilla Lackberg.epub 15
  1114. 276 La prueba 2024 \N libros/La prueba - Carmen Gurruchaga.epub 17
  1115. 277 The White Lioness (Revisado) 2024 \N libros/The White Lioness (Revisado) - Celestino Rey Lopez.epub 41
  1116. 278 El origen de las especies 2024 \N libros/El origen de las especies - Charles Darwin.epub 19
  1117. 279 La historia de tu vida 2024 \N libros/La historia de tu vida - Chiang, Ted.epub 91
  1118. 280 Youth 2024 \N libros/Youth - Coetzee, J. M_.epub 47
  1119. 281 The Complete Sherlock Holmes (1930) 2024 \N libros/The Complete Sherlock Holmes (1930) - Conan Doyle Arthur.epub 9
  1120. 282 The Road (Vintage International) 2024 \N libros/The Road (Vintage International) - Cormac McCarthy.epub 20
  1121. 283 POSTMORTEM 2024 \N libros/POSTMORTEM - Cornwell, Patricia.epub 74
  1122. 284 365 días para ser más culto 2024 \N libros/365 dias para ser mas culto - David S. Kidder.epub 22
  1123. 285 Sueñan los androides con ovejas eléctricas 2024 \N libros/Suenan los androides con ovejas electricas - Dick, Philip K_.epub 80
  1124. 286 Oh, Jerusalén 2024 \N libros/Oh, Jerusalen - Dominique Lapierre.epub 24
  1125. 287 El cuervo 2024 \N libros/El cuervo - Edgar Allan Poe.epub 25
  1126. 288 El escarabajo de oro 2024 \N libros/El escarabajo de oro - Edgar Allan Poe.epub 25
  1127. 289 Sin noticias de Gurb 2024 \N libros/Sin noticias de Gurb - Eduardo Mendoza.epub 26
  1128. 290 La verdad sobre el caso Savolta 2024 \N libros/La verdad sobre el caso Savolta - Eduardo Mendoza.epub 26
  1129. 291 El laberinto de las aceitunas 2024 \N libros/El laberinto de las aceitunas - Eduardo Mendoza.epub 26
  1130. 292 Riña de gatos. Madrid 1936 2024 \N libros/Rina de gatos. Madrid 1936 - Eduardo Mendoza.epub 26
  1131. 293 La ciudad de los prodigios 2024 \N libros/La ciudad de los prodigios - Eduardo Mendoza.epub 26
  1132. 294 El misterio de la cripta embrujada 2024 \N libros/El misterio de la cripta embrujada - Eduardo Mendoza.epub 26
  1133. 295 El año del diluvio 2024 \N libros/El ano del diluvio - Eduardo Mendoza.epub 26
  1134. 296 La aventura del tocador de señoras 2024 \N libros/La aventura del tocador de senoras - Eduardo Mendoza.epub 26
  1135. 297 El asombroso viaje de Pomponio Flato 2024 \N libros/El asombroso viaje de Pomponio Flato - Eduardo Mendoza.epub 26
  1136. 298 El último Trayecto de Horacio Dos 2024 \N libros/El ultimo Trayecto de Horacio Dos - Eduardo Mendoza.epub 26
  1137. 299 La Isla Inaudita 2024 \N libros/La Isla Inaudita - Eduardo Mendoza.epub 26
  1138. 300 Nueva York 2024 \N libros/Nueva York - Eduardo Mendoza.epub 26
  1139. 301 El viaje al poder de la mente 2024 \N libros/El viaje al poder de la mente - Eduardo Punset.epub 27
  1140. 302 La última noche de Hipatia 2024 \N libros/La ultima noche de Hipatia - Eduardo Vaquerizo.epub 28
  1141. 303 New York 2024 \N libros/New York - Edward Rutherfurd.epub 29
  1142. 304 American Rebel: The Life of Clint Eastwood 2024 \N libros/American Rebel_ The Life of Clint Eastwood - Eliot Marc.epub 30
  1143. 305 El bolígrafo de gel verde 2024 \N libros/El boligrafo de gel verde - Eloy Moreno.epub 31
  1144. 306 Diez minutos antes de la medianoche: Novela para muchachas y hombres tímidos (Breviarios de Rey Lear nº 44) (Spanish Edition) 2024 \N libros/Diez minutos antes de la medianoche_ Novel - Enrique Jardiel Poncela.epub 32
  1145. 307 Cocina Para Impostores 2024 \N libros/Cocina Para Impostores - Falsarius Chef.epub 33
  1146. 308 Fall of Giants 2024 \N libros/Fall of Giants - Follett, Ken.epub 62
  1147. 262 Libro de las ilusiones, El 2024 libros/Libro de las ilusiones, El - Auster Paul.epub portadas/devilsanddust.jpg 1
  1148. 309 España defendida 2024 \N libros/Espana defendida - Francisco de Quevedo.epub 36
  1149. 310 El Faraon 2024 \N libros/El Faraon - Gedge, Pauline.epub 78
  1150. 311 Nineteen eighty-four 2024 \N libros/Nineteen eighty-four - George Orwell.epub 37
  1151. 312 Contra el viento del Norte 2024 \N libros/Contra el viento del Norte - Glattauer, Daniel.epub 21
  1152. 313 Folk Music 2024 \N libros/Folk Music - Greil Marcus.epub 38
  1153. 314 H. G. Wells - Gesammelte Werke: (Der Krieg der Welten. Die Zeitmaschine. Die Insel des Dr. Moreau. Die ersten Menschen im Mond. Wenn der Schläfer erwacht. Der Unsichtbare ...) (German Edition) 2024 \N libros/H. G. Wells - Gesammelte Werke_ (Der Krieg - H. G. Wells.epub 39
  1154. 315 Baila, baila, baila (Volumen independiente) (Spanish Edition) 2024 \N libros/Baila, baila, baila (Volumen independiente - Haruki Murakami.epub 40
  1155. 316 After Dark 2024 \N libros/After Dark - Haruki Murakami.epub 40
  1156. 317 1q84 Libro 3 2024 \N libros/1q84 Libro 3 - Haruki Murakami.epub 40
  1157. 318 The Wind-Up Bird Chronicle 2024 \N libros/The Wind-Up Bird Chronicle - Haruki Murakami.epub 40
  1158. 319 El fin del mundo y un despiadado país de las maravillas 2024 \N libros/El fin del mundo y un despiadado pais de l - Haruki Murakami.epub 40
  1159. 320 What I Talk About When I Talk About Running 2024 \N libros/What I Talk About When I Talk About Runnin - Haruki Murakami.epub 40
  1160. 321 Retorno del profesor de baile, El 2024 \N libros/Retorno del profesor de baile, El - Henning Mankell.epub 41
  1161. 322 Pisando los talones 2024 \N libros/Pisando los talones - Henning Mankell.epub 41
  1162. 323 Quinta mujer, La 2024 \N libros/Quinta mujer, La - Henning Mankell.epub 41
  1163. 324 Antes de que hiele 2024 \N libros/Antes de que hiele - Henning Mankell.epub 41
  1164. 325 Pirámide, La 2024 \N libros/Piramide, La - Henning Mankell.epub 41
  1165. 326 Comedia Infantil 2024 \N libros/Comedia Infantil - Henning Mankell.epub 41
  1166. 327 La Leona Blanca 2024 \N libros/La Leona Blanca - Henning Mankell.epub 41
  1167. 328 The White Lioness 2024 \N libros/The White Lioness - Henning Mankell.epub 41
  1168. 329 Secreto del fuego, El 2024 \N libros/Secreto del fuego, El - Henning Mankell.epub 41
  1169. 330 Before the Frost 2024 \N libros/Before the Frost - Henning Mankell.epub 41
  1170. 331 Cerebro De Kennedy, El 2024 \N libros/Cerebro De Kennedy, El - Henning Mankell.epub 41
  1171. 332 Zapatos italianos 2024 \N libros/Zapatos italianos - Henning Mankell.epub 41
  1172. 333 Asesinos sin rostro 2024 \N libros/Asesinos sin rostro - Henning Mankell.epub 41
  1173. 334 Hombre sonriente, El 2024 \N libros/Hombre sonriente, El - Henning Mankell.epub 41
  1174. 335 Los Perros de Riga 2024 \N libros/Los Perros de Riga - Henning Mankell.epub 41
  1175. 336 Hijo del viento, El 2024 \N libros/Hijo del viento, El - Henning Mankell.epub 41
  1176. 337 Profundidades 2024 \N libros/Profundidades - Henning Mankell.epub 41
  1177. 338 Hombre inquieto, El 2024 \N libros/Hombre inquieto, El - Henning Mankell.epub 41
  1178. 339 Return of the Dancing Master 2024 \N libros/Return of the Dancing Master - Henning Mankell.epub 41
  1179. 340 Falsa pista, La 2024 \N libros/Falsa pista, La - Henning Mankell.epub 41
  1180. 341 Moby Dick 2024 \N libros/Moby Dick - Herman Melville.epub 43
  1181. 342 Ripley en peligro 2024 \N libros/Ripley en peligro - Highsmith, Patricia.epub 76
  1182. 343 Relatos 2024 \N libros/Relatos - Highsmith, Patricia.epub 76
  1183. 344 El talento de Mr. Ripley 2024 \N libros/El talento de Mr. Ripley - Highsmith, Patricia.epub 76
  1184. 345 Extraños en un tren 2024 \N libros/Extranos en un tren - Highsmith, Patricia.epub 76
  1185. 346 Ilíada (NUEVA BCG) (Spanish Edition) 2024 \N libros/Iliada (NUEVA BCG) (Spanish Edition) - , Homero.epub 44
  1186. 347 La Catedral del Mar 2024 \N libros/La Catedral del Mar - Ildefonso Falcones.epub 45
  1187. 348 Imperio 3: Un guijarro en el cielo 2024 \N libros/Imperio 3_ Un guijarro en el cielo - Isaac Asimov.epub 46
  1188. 349 Segunda Fundación 2024 \N libros/Segunda Fundacion - Isaac Asimov.epub 46
  1189. 350 Fundación 2024 \N libros/Fundacion - Isaac Asimov.epub 46
  1190. 351 Trilogía de la fundación 2024 \N libros/Trilogia de la fundacion - Isaac Asimov.epub 46
  1191. 352 Preludio a La Fundación 2024 \N libros/Preludio a La Fundacion - Isaac Asimov.epub 46
  1192. 353 Hacia La Fundación 2024 \N libros/Hacia La Fundacion - Isaac Asimov.epub 46
  1193. 354 Imperio 2: Las corrientes del espacio 2024 \N libros/Imperio 2_ Las corrientes del espacio - Isaac Asimov.epub 46
  1194. 355 Yo, robot 2024 \N libros/Yo, robot - Isaac Asimov.epub 46
  1195. 356 Los robots del amanecer 2024 \N libros/Los robots del amanecer - Isaac Asimov.epub 46
  1196. 357 Fundación e Imperio 2024 \N libros/Fundacion e Imperio - Isaac Asimov.epub 46
  1197. 358 Bóvedas de acero 2024 \N libros/Bovedas de acero - Isaac Asimov.epub 46
  1198. 359 Robots e Imperio 2024 \N libros/Robots e Imperio - Isaac Asimov.epub 46
  1199. 360 I, Robot 2024 \N libros/I, Robot - Isaac Asimov.epub 46
  1200. 361 En la arena estelar 2024 \N libros/En la arena estelar - Isaac Asimov.epub 46
  1201. 362 Fundación y Tierra 2024 \N libros/Fundacion y Tierra - Isaac Asimov.epub 46
  1202. 363 Los limites de la fundación 2024 \N libros/Los limites de la fundacion - Isaac Asimov.epub 46
  1203. 364 El sol desnudo 2024 \N libros/El sol desnudo - Isaac Asimov.epub 46
  1204. 365 La comunidad del anillo (ilustrado) 2024 \N libros/La comunidad del anillo (ilustrado) - J. R. R. Tolkien.epub 48
  1205. 366 On The Road 2024 \N libros/On The Road - Jack Kerouac.epub 50
  1206. 367 Ulises 2024 \N libros/Ulises - James Joyce.epub 51
  1207. 368 Anatomia De Un Instante 2024 \N libros/Anatomia De Un Instante - Javier Cercas.epub 52
  1208. 369 Los Enamoramientos 2024 \N libros/Los Enamoramientos - Javier Marias.epub 53
  1209. 370 Corazón tan blanco 2024 \N libros/Corazon tan blanco - Javier Marias.epub 53
  1210. 371 Tu rostro mañana 2024 \N libros/Tu rostro manana - Javier Marias.epub 53
  1211. 372 Todas las almas 2024 \N libros/Todas las almas - Javier Marias.epub 53
  1212. 373 El hombre sentimental 2024 \N libros/El hombre sentimental - Javier Marias.epub 53
  1213. 374 El siglo 2024 \N libros/El siglo - Javier Marias.epub 53
  1214. 375 Los dominios del lobo 2024 \N libros/Los dominios del lobo - Javier Marias.epub 53
  1215. 376 Travesía del horizonte 2024 \N libros/Travesia del horizonte - Javier Marias.epub 53
  1216. 377 Una vida de lujo 2024 \N libros/Una vida de lujo - Jens Lapidus.epub 54
  1217. 378 Nunca la jodas 2024 \N libros/Nunca la jodas - Jens Lapidus.epub 54
  1218. 379 Dinero fácil 2024 \N libros/Dinero facil - Jens Lapidus.epub 54
  1219. 380 La verdad sobre el caso Harry Quebert 2024 \N libros/La verdad sobre el caso Harry Quebert - Joel Dicker.epub 55
  1220. 381 El espía que surgió del frío 2024 \N libros/El espia que surgio del frio - John LE CARRE.epub 56
  1221. 384 El mono obeso (Drakontos) (Spanish Edition) 2024 \N libros/El mono obeso (Drakontos) (Spanish Edition - Jose Enrique Campillo Alvarez.epub 59
  1222. 385 Heart of Darkness 2024 \N libros/Heart of Darkness - Joseph Conrad.epub 60
  1223. 386 Las horas distantes 2024 \N libros/Las horas distantes - Kate Morton.epub 61
  1224. 387 El jardín olvidado 2024 \N libros/El jardin olvidado - Kate Morton.epub 61
  1225. 388 La casa de Riverton 2024 \N libros/La casa de Riverton - Kate Morton.epub 61
  1226. 389 El umbral de la eternidad 2024 \N libros/El umbral de la eternidad - Ken Follett.epub 62
  1227. 390 Pilares de la Tierra, Los 2024 \N libros/Pilares de la Tierra, Los - Ken Follett.epub 62
  1228. 391 Sturz der Titanen 2024 \N libros/Sturz der Titanen - Ken Follett.epub 62
  1229. 392 Crimen En Directo 2024 \N libros/Crimen En Directo - Lackberg, Camilla.epub 15
  1230. 393 Solaris 2024 \N libros/Solaris - Lem, Stanislaw.epub 86
  1231. 394 Ana Karenina 2024 \N libros/Ana Karenina - Leon Tolstoi.epub 63
  1232. 395 León el Africano 2024 \N libros/Leon el Africano - Maalouf, Amin.epub 6
  1233. 396 Depths 2024 \N libros/Depths - Mankell Henning.epub 41
  1234. 397 Firewall 2024 \N libros/Firewall - Mankell Henning.epub 41
  1235. 398 A Bridge to the Stars 2024 \N libros/A Bridge to the Stars - Mankell Henning.epub 41
  1236. 399 Chronicler Of The Winds 2024 \N libros/Chronicler Of The Winds - Mankell Henning.epub 41
  1237. 400 Faceless Killers 2024 \N libros/Faceless Killers - Mankell Henning.epub 41
  1238. 401 Shadows in the Twilight 2024 \N libros/Shadows in the Twilight - Mankell Henning.epub 41
  1239. 402 The Fifth Woman 2024 \N libros/The Fifth Woman - Mankell Henning.epub 41
  1240. 403 El tiempo entre costuras 2024 \N libros/El tiempo entre costuras - Maria Duenas.epub 64
  1241. 404 La tía Julia y el escribidor 2024 \N libros/La tia Julia y el escribidor - Mario Vargas Llosa.epub 65
  1242. 405 El hablador 2024 \N libros/El hablador - Mario Vargas Llosa.epub 65
  1243. 406 El sueño del celta 2024 \N libros/El sueno del celta - Mario Vargas Llosa.epub 65
  1244. 407 Travesuras de la niña mala 2024 \N libros/Travesuras de la nina mala - Mario Vargas Llosa.epub 65
  1245. 408 La Fiesta del Chivo 2024 \N libros/La Fiesta del Chivo - Mario Vargas Llosa.epub 65
  1246. 409 Los cuadernos de don Rigoberto 2024 \N libros/Los cuadernos de don Rigoberto - Mario Vargas Llosa.epub 65
  1247. 410 La ciudad y los perros 2024 \N libros/La ciudad y los perros - Mario Vargas Llosa.epub 65
  1248. 411 La verdad de las mentiras, ensayos sobre literatura 2024 \N libros/La verdad de las mentiras, ensayos sobre l - Mario Vargas Llosa.epub 65
  1249. 412 La casa verde 2024 \N libros/La casa verde - Mario Vargas Llosa.epub 65
  1250. 413 Historia de Mayta 2024 \N libros/Historia de Mayta - Mario Vargas Llosa.epub 65
  1251. 414 Quién mató a Palomino Molero 2024 \N libros/Quien mato a Palomino Molero - Mario Vargas Llosa.epub 65
  1252. 415 La guerra del fin del mundo 2024 \N libros/La guerra del fin del mundo - Mario Vargas Llosa.epub 65
  1253. 416 Historia secreta de una novela 2024 \N libros/Historia secreta de una novela - Mario Vargas Llosa.epub 65
  1254. 417 Conversación en la catedral 2024 \N libros/Conversacion en la catedral - Mario Vargas Llosa.epub 65
  1255. 418 Lituma en los Andes 2024 \N libros/Lituma en los Andes - Mario Vargas Llosa.epub 65
  1256. 419 Elogio de la Madrastra 2024 \N libros/Elogio de la Madrastra - Mario Vargas Llosa.epub 65
  1257. 420 El loco de los balcones 2024 \N libros/El loco de los balcones - Mario Vargas Llosa.epub 65
  1258. 421 Pantaleón y las visitadoras 2024 \N libros/Pantaleon y las visitadoras - Mario Vargas Llosa.epub 65
  1259. 422 El pez en el agua 2024 \N libros/El pez en el agua - Mario Vargas Llosa.epub 65
  1260. 423 El Paraíso en la otra esquina 2024 \N libros/El Paraiso en la otra esquina - Mario Vargas Llosa.epub 65
  1261. 424 Following the Equator 2024 \N libros/Following the Equator - Mark Twain.epub 66
  1262. 425 Las aventuras de Tom Sawyer 2024 \N libros/Las aventuras de Tom Sawyer - Mark Twain.epub 66
  1263. 426 Meine Reise um die WeltErste Abteilung (German Edition) 2024 \N libros/Meine Reise um die WeltErste Abteilung (Ge - Mark Twain.epub 66
  1264. 427 SPQR (Spanish Edition) 2024 \N libros/SPQR (Spanish Edition) - Mary Beard.epub 67
  1265. 428 El enredo de la bolsa y la vida (Biblioteca Eduardo Mendoza) (Spanish Edition) 2024 \N libros/El enredo de la bolsa y la vida (Bibliotec - Mendoza Eduardo.epub 26
  1266. 429 H.P. Lovecraft: Contre Le Monde, Contre La Vie 2024 \N libros/H.P. Lovecraft_ Contre Le Monde, Contre La - Michel Houellebecq.epub 69
  1267. 430 Novelas ejemplares 2024 \N libros/Novelas ejemplares - Miguel Cervantes.epub 70
  1268. 431 El ingenioso hidalgo Don Quijote de la Mancha 2024 \N libros/El ingenioso hidalgo Don Quijote de la Man - Miguel Cervantes.epub 70
  1269. 433 Los años de peregrinación del chico sin color (Spanish Edition) 2024 \N libros/Los anos de peregrinacion del chico sin co - Murakami, Haruki, Haruki Murakami.epub 40
  1270. 434 Dime quién soy 2024 \N libros/Dime quien soy - Navarro, Julia.epub 72
  1271. 435 The Last Precinct #11 2024 \N libros/The Last Precinct #11 - Patricia Cornwell.epub 74
  1272. 436 Cruel and Unusual 2024 \N libros/Cruel and Unusual - Patricia Cornwell.epub 74
  1273. 437 At Risk 2024 \N libros/At Risk - Patricia Cornwell.epub 74
  1274. 438 Black Notice 2024 \N libros/Black Notice - Patricia Cornwell.epub 74
  1275. 439 Book of the Dead 2024 \N libros/Book of the Dead - Patricia Cornwell.epub 74
  1276. 440 The Scarpetta Factor #17 2024 \N libros/The Scarpetta Factor #17 - Patricia Cornwell.epub 74
  1277. 441 Body of Evidence: A Scarpetta Novel #2 2024 \N libros/Body of Evidence_ A Scarpetta Novel #2 - Patricia Cornwell.epub 74
  1278. 442 Point of Origin #9 2024 \N libros/Point of Origin #9 - Patricia Cornwell.epub 74
  1279. 443 Hornet's Nest #1 2024 \N libros/Hornet's Nest #1 - Patricia Cornwell.epub 74
  1280. 457 El juego de Ripley 2024 \N libros/El juego de Ripley - Patricia Highsmith.epub 76
  1281. 458 Sunset Park 2024 \N libros/Sunset Park - Paul Auster.epub 1
  1282. 459 Invisible 2024 \N libros/Invisible - Paul Auster.epub 1
  1283. 460 ¡Me cago en Godard!: Por qué deberías adorar el cine americano (y desconfiar del cine de autor) si eres culto y progre (Spanish Edition) 2024 \N libros/!Me cago en Godard!_ Por que deberias ador - Pedro Vallin.epub 79
  1284. 461 El Asedio 2024 \N libros/El Asedio - Perez Reverte, Arturo.epub 10
  1285. 462 Lágrimas en la lluvia 2024 \N libros/Lagrimas en la lluvia - Rosa Montero.epub 81
  1286. 463 El hombre que pudo reinar 2024 \N libros/El hombre que pudo reinar - Rudyard Kipling.epub 82
  1287. 464 Juego del Ángel, El 2024 \N libros/Juego del Angel, El - Ruiz Zafon Carlos.epub 16
  1288. 465 Sombra del Viento, La 2024 \N libros/Sombra del Viento, La - Ruiz Zafon Carlos.epub 16
  1289. 466 Sarum 2024 \N libros/Sarum - Rutherfurd, Edward.epub 29
  1290. 467 Rebels of Ireland 2024 \N libros/Rebels of Ireland - Rutherfurd, Edward.epub 29
  1291. 468 London 2024 \N libros/London - Rutherfurd, Edward.epub 29
  1292. 469 Russka 2024 \N libros/Russka - Rutherfurd, Edward.epub 29
  1293. 470 Princes of Ireland 2024 \N libros/Princes of Ireland - Rutherfurd, Edward.epub 29
  1294. 471 Forest 2024 \N libros/Forest - Rutherfurd, Edward.epub 29
  1295. 472 Historia de un alemán (Memorias 1914-1933) 2024 \N libros/Historia de un aleman (Memorias 1914-1933) - Sebastian Haffner.epub 83
  1296. 473 Un asunto rutinario 2024 \N libros/Un asunto rutinario - Silva Lorenzo.epub 84
  1297. 474 La Reina sin Espejo 2024 \N libros/La Reina sin Espejo - Silva Lorenzo.epub 84
  1298. 475 Carta Blanca 2024 \N libros/Carta Blanca - Silva Lorenzo.epub 84
  1299. 476 El lejano país de los estanques 2024 \N libros/El lejano pais de los estanques - Silva Lorenzo.epub 84
  1300. 477 La Sustancia Interior 2024 \N libros/La Sustancia Interior - Silva Lorenzo.epub 84
  1301. 478 El nombre de los nuestros 2024 \N libros/El nombre de los nuestros - Silva Lorenzo.epub 84
  1302. 479 La flaqueza del bolchevique 2024 \N libros/La flaqueza del bolchevique - Silva Lorenzo.epub 84
  1303. 480 El alquimista impaciente 2024 \N libros/El alquimista impaciente - Silva Lorenzo.epub 84
  1304. 481 Del Rif a Yebela 2024 \N libros/Del Rif a Yebela - Silva Lorenzo.epub 84
  1305. 482 Desayuno con partículas (Spanish Edition) 2024 \N libros/Desayuno con particulas (Spanish Edition) - Sonia Fernandez Vidal.epub 85
  1306. 483 El universo en una cascara de nuez 2024 \N libros/El universo en una cascara de nuez - Stephen Hawking.epub 87
  1307. 484 The Grand Design 2024 \N libros/The Grand Design - Stephen Hawking.epub 87
  1308. 485 Girl with the Dragon Tattoo, The 2024 \N libros/Girl with the Dragon Tattoo, The - Stieg Larsson.epub 90
  1309. 486 Girl Who Played with Fire, The 2024 \N libros/Girl Who Played with Fire, The - Stieg Larsson.epub 90
  1310. 432 Predator 2012 libros/Predator - Monica.epub portadas/predator.jpg 74
  1311. 487 La Chica Que Soñaba Con Una Cerilla Y Un Bidon De Gasolina 2024 \N libros/La Chica Que Sonaba Con Una Cerilla Y Un B - Stieg Larsson.epub 90
  1312. 488 Los Hombres Que No Amaban A Las Mujeres 2024 \N libros/Los Hombres Que No Amaban A Las Mujeres - Stieg Larsson.epub 90
  1313. 489 La Reina en el Palacio de las Corrientes de Aire 2024 \N libros/La Reina en el Palacio de las Corrientes d - Stieg Larsson.epub 90
  1314. 490 Stories of Your Life and Others 2024 \N libros/Stories of Your Life and Others - Ted Chiang.epub 91
  1315. 491 Ha Vuelto 2024 \N libros/Ha Vuelto - Timur Vermes.epub 93
  1316. 492 Er ist wieder da 2024 \N libros/Er ist wieder da - Timur Vermes.epub 93
  1317. 493 El Hobbit 2024 \N libros/El Hobbit - Tolkien, J. R. R_.epub 48
  1318. 494 El cementerio de Praga 2024 \N libros/El cementerio de Praga - Umberto Eco.epub 95
  1319. 495 Mediohombre (Novela histórica) (Spanish Edition) 2024 \N libros/Mediohombre (Novela historica) (Spanish Ed - Vazquez, Alber.epub 4
  1320. 496 Se lo que estas pensando 2024 \N libros/Se lo que estas pensando - Verdon, John.epub 58
  1321. 497 Steve Jobs. La biografía 2024 \N libros/Steve Jobs. La biografia - Walter Isaacson.epub 96
  1322. 498 Deliver Me from Nowhere 2024 \N libros/Deliver Me from Nowhere_ The Making of Bru - Warren Zanes.epub 97
  1323. 499 The Sound and the Fury 2024 \N libros/The Sound and the Fury - William Faulkner.epub 98
  1324. 500 Forrest Gump 2024 \N libros/Forrest Gump - Winston Groom.epub 99
  1325. 501 La hoguera de las vanidades 2024 \N libros/La hoguera de las vanidades - Wolfe, Tom.epub 94
  1326. 502 Como acabar de una vez por todas con la cultura 2024 \N libros/Como acabar de una vez por todas con la cu - Woody Allen.epub 100
  1327. 503 Sapiens. De animales a dioses (Spanish Edition) 2024 \N libros/Sapiens. De animales a dioses (Spanish Edi - Yuval Noah Harari.epub 101
  1328. 504 21 lecciones para el siglo XXI (Spanish Edition) 2024 \N libros/21 lecciones para el siglo XXI (Spanish Ed - Yuval Noah Harari.epub 101
  1329. 505 Homo Deus (Spanish Edition) 2024 \N libros/Homo Deus (Spanish Edition) - Yuval Noah Harari.epub 101
  1330. 254 Historia absurda de España (Spanish Edition) 2024 libros/Historia absurda de Espana (Spanish Editio - Ad Absurdum.epub portadas/historiaabsurda.jpg 2
  1331. 444 Port Mortuary #18 2024 \N libros/Port Mortuary #18 - Patricia D Cornwell.epub 74
  1332. 445 Unnatural Exposure #8 2024 \N libros/Unnatural Exposure #8 - Patricia Daniels Cornwell.epub 74
  1333. 446 Portrait of a Killer: Jack the Ripper Case Closed 2024 \N libros/Portrait of a Killer_ Jack the Ripper Case - Patricia Daniels Cornwell.epub 74
  1334. 447 Trace #13 2024 \N libros/Trace #13 - Patricia Daniels Cornwell.epub 74
  1335. 448 Scarpetta 2024 \N libros/Scarpetta - Patricia Daniels Cornwell.epub 74
  1336. 449 Blow Fly 2024 \N libros/Blow Fly - Patricia Daniels Cornwell.epub 74
  1337. 450 Scarpetta's Winter Table 2024 \N libros/Scarpetta's Winter Table - Patricia Daniels Cornwell.epub 74
  1338. 451 The Body Farm #5 2024 \N libros/The Body Farm #5 - Patricia Daniels Cornwell.epub 74
  1339. 452 Isle of Dogs #3 2024 \N libros/Isle of Dogs #3 - Patricia Daniels Cornwell.epub 74
  1340. 453 Cause of Death 2024 \N libros/Cause of Death - Patricia Daniels Cornwell.epub 74
  1341. 454 Southern Cross #2 2024 \N libros/Southern Cross #2 - Patricia Daniels Cornwell.epub 74
  1342. 455 From Potter's Field #6 2024 \N libros/From Potter's Field #6 - Patricia Daniels Cornwell.epub 74
  1343. 456 All That Remains: A Novel #3 2024 \N libros/All That Remains_ A Novel #3 - Patricia Daniels Cornwell.epub 74
  1344. \.
  1345. --
  1346. -- Data for Name: lyrics_album; Type: TABLE DATA; Schema: public; Owner: creylopez
  1347. --
  1348. COPY public.lyrics_album (id, name, year, cover_image, artist_id) FROM stdin;
  1349. 16 Prueba 2024 cover_image/Lavavajillas_RFkCC4I.jpeg 1
  1350. 1 Greetings From Ausbury Park, N.J. 1973 cover_image/greetings.jpg 1
  1351. 2 Born To Run 1975 cover_image/borntorun.jpg 1
  1352. 3 The Wild, The Innocent And The E Street Shuffle 1973 cover_image/thewild.jpg 1
  1353. 4 Darkness On The Edge Of Town 1978 cover_image/darkness.jpg 1
  1354. 5 The River 1980 cover_image/theriver.jpg 1
  1355. 6 Nebraska 1982 cover_image/nebraska.jpg 1
  1356. 7 Born In The U.S.A. 1984 cover_image/bornintheusa.jpg 1
  1357. 8 Tunnel Of Love 1987 cover_image/tunneloflove.jpg 1
  1358. 9 Human Touch 1992 cover_image/humantouch.jpg 1
  1359. 10 Lucky Town 1992 cover_image/luckytown.jpg 1
  1360. 11 The Ghost Of Tom Joad 1995 cover_image/theghostoftomjoad.jpg 1
  1361. 12 The Rising 2002 cover_image/therising.jpg 1
  1362. 13 Devils & Dust 2005 cover_image/devilsanddust.jpg 1
  1363. 14 We Shall Overcome: The Seeger Sessions (American Land Edition) 2006 cover_image/weshallovercome.jpg 1
  1364. 15 Magic 2007 cover_image/magic.jpg 1
  1365. \.
  1366. --
  1367. -- Data for Name: lyrics_artista; Type: TABLE DATA; Schema: public; Owner: creylopez
  1368. --
  1369. COPY public.lyrics_artista (id, nombre, biografia, foto) FROM stdin;
  1370. 1 Bruce Springsteen Bruce Springsteen - The Essential (Limited Edition 3 0) (2003) [FLAC] 88 Added 8 days by Rider88 in Music > Lossless Main Technical Downloads: 332 Language: English Files Bruce Springsteen - The Essential (Limited Edition 3.0) (2003) [FLAC] 88 CD 1 01. Blinded By The Light.flac (32.5 MB) 02. For You.flac (32.8 MB) 03. Spirit In The Night.flac (31.5 MB) 04. 4th Of July, Asbury Park (Sandy).flac (34.8 MB) 05. Rosalita (Come Out Tonight).flac (50.1 MB) 06. Thunder Road.flac (28.7 MB) 07. Born To Run.flac (31.1 MB) 08. Jungleland.flac (53.6 MB) 09. Badlands.flac (26.7 MB) 10. Darkness On The Edge Of Town.flac (27.1 MB) 11. The Promised Land.flac (31.0 MB) 12. The River.flac (30.7 MB) 13. Hungry Heart.flac (21.2 MB) 14. Nebraska.flac (22.6 MB) 15. Atlantic City.flac (24.7 MB) auCDtect.txt (6.2 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (1) (C2K 90773).log (16.6 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (1).accurip (16.4 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (1).cue (2.3 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (1).m3u (0.4 KB) DR11.txt (1.7 KB) folder.jpg (15.0 KB) CD 2 01. Born In The U.S.A..flac (33.5 MB) 02. Glory Days.flac (31.4 MB) 03. Dancing In The Dark.flac (28.7 MB) 04. Tunnel Of Love.flac (34.6 MB) 05. Brilliant Disguise.flac (28.6 MB) 06. Human Touch.flac (44.9 MB) 07. Living Proof.flac (31.8 MB) 08. Lucky Town.flac (25.0 MB) 09. Streets Of Philadelphia.flac (17.7 MB) 10. The Ghost Of Tom Joad.flac (21.4 MB) 11. The Rising.flac (34.7 MB) 12. Mary’s Place.flac (42.7 MB) 13. Lonesome Day.flac (31.1 MB) 14. American Skin (41 Shots) (Live).flac (46.5 MB) 15. Land Of Hope And Dreams (Live).flac (64.3 MB) auCDtect.txt (6.2 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (2) (C2K 90773).log (16.7 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (2).accurip (17.4 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (2).cue (2.4 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (2).m3u (0.4 KB) DR9.txt (1.8 KB) folder.jpg (15.0 KB) CD 3 01. From Small Things (Big Things One Day Come).flac (18.5 MB) 02. The Big Payback.flac (10.2 MB) 03. Held Up Without A Gun (Live).flac (9.1 MB) 04. Trapped (Live).flac (37.1 MB) 05. None But The Brave.flac (39.5 MB) 06. Missing.flac (32.4 MB) 07. Lift Me Up.flac (28.2 MB) 08. Viva Las Vegas.flac (22.7 MB) 09. County Fair.flac (27.2 MB) 10. Code Of Silence (Live).flac (31.7 MB) 11. Dead Man Walkin’.flac (13.2 MB) 12. Countin’ On A Miracle (Acoustic).flac (22.6 MB) auCDtect.txt (5.2 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (3) (C2K 90773).log (14.8 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (3).accurip (11.6 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (3).cue (2.1 KB) Bruce Springsteen - The Essential Limited Edition 3.0 (3).m3u (0.4 KB) DR9.txt (1.6 KB) folder.jpg (15.0 KB) Jolly Roger.png (14.3 KB) Description Bruce Springsteen The Essential Limited Edition 3.0 (2003) FLAC LOSSLESS 16Bit-44.1kHz Contains Album Art & ID Tags Wikipedia Bruce Frederick Joseph Springsteen (born September 23, 1949) is an American rock singer, songwriter, and guitarist. Nicknamed "the Boss", he has released 21 studio albums during a career spanning six decades, most of which feature his backing band, the E Street Band. Springsteen is a pioneer of heartland rock, combining a commercially successful rock sound with poetic and socially conscious lyrics reflecting the issues of working class American life. He is known for his descriptive lyrics and energetic concerts, which sometimes last over four hours. Springsteen released his first two albums, Greetings from Asbury Park, N.J. and The Wild, the Innocent & the E Street Shuffle, in 1973. Although both were well received by critics, neither earned him a large audience. He changed his style and achieved worldwide popularity with Born to Run (1975), followed by Darkness on the Edge of Town (1978) and The River (1980), Springsteen's first album to top the Billboard 200 chart. After the solo effort Nebraska (1982), he recorded Born in the U.S.A. (1984) with the E Street Band, which became his most commercially successful album and the 23rd-best selling album of all time as of 2024. All seven singles from Born in the U.S.A. reached the Top 10 of the Billboard Hot 100, including the title track. Springsteen mostly hired session musicians for the recording of his next three albums, Tunnel of Love (1987), Human Touch (1992), and Lucky Town (1992). He reassembled the E Street Band for Greatest Hits (1995), and recorded the acoustic album The Ghost of Tom Joad (1995) and the EP Blood Brothers (1996) solo. Springsteen dedicated The Rising (2002) to the victims of the September 11 attacks. He released two more folk albums, Devils & Dust (2005) and We Shall Overcome: The Seeger Sessions (2006), followed by two more albums with the E Street Band, Magic (2007) and Working on a Dream (2009). The next albums, Wrecking Ball (2012) and High Hopes (2014), topped album charts worldwide. In 2017, 2018 and 2021, Springsteen performed the critically acclaimed show Springsteen on Broadway, in which he performed songs and told stories from his 2016 autobiography; an album version from the Broadway performances was released in 2018. He released the solo Western Stars (2019), Letter to You (2020) with the E Street Band, and a solo covers album Only the Strong Survive (2022). Letter to You reached No. 2 in the US, making Springsteen the first artist to release a top-five album across six consecutive decades. One of the album era's most prominent musicians, Springsteen has sold more than 71 million albums in the U.S. and over 140 million worldwide, making him the 27th best-selling music artist of all time as of 2024. His accolades include 20 Grammy Awards, two Golden Globes, an Academy Award, and a Special Tony Award. He was inducted into the Songwriters Hall of Fame and the Rock and Roll Hall of Fame in 1999, received the Kennedy Center Honors in 2009, was named MusiCares person of the year in 2013, and was awarded the Presidential Medal of Freedom in 2016 and the National Medal of Arts in 2023. In 2010, Rolling Stone ranked Springsteen 23rd on its list of the "100 Greatest Artists of All Time", describing him as "the embodiment of rock and roll". artistas/bruce.jpg
  1371. \.
  1372. --
  1373. -- Data for Name: lyrics_song; Type: TABLE DATA; Schema: public; Owner: creylopez
  1374. --
  1375. COPY public.lyrics_song (id, title, year, lyrics, pista, album_id, artist_id) FROM stdin;
  1376. 1 Blinded by the light 2024 Madman drummers bummers and Indians in the summer with a teenage diplomat\\r\\nIn the dumps with the mumps as the adolescent pumps his way into his hat\\r\\nWith a boulder on my shoulder feelin' kinda older I tripped the\\r\\nMerry-go-round\\r\\nWith this very unpleasing sneezing and wheezing the calliope\\r\\nCrashed to the ground\\r\\n\\r\\nSome all-hot half-shot was headin' for the hot spot snappin' his fingers clappin' his hands\\r\\nAnd some fleshpot mascot was tied into a lover's knot with a whatnot in her hand\\r\\nAnd now young Scott with a slingshot finally found a tender spot and throws his lover in the sand\\r\\nAnd some bloodshot forget-me-not whispers daddy's within earshot save the buckshot turn up the band\\r\\n\\r\\nAnd she was blinded by the light\\r\\nOh, cut loose like a deuce another runner in the night\\r\\nBlinded by the light\\r\\nShe got down but she never got tight, but she'll make it alright\\r\\n\\r\\nSome brimstone baritone anti-cyclone rolling stone preacher from the east\\r\\nHe says, "Dethrone the dictaphone, hit it in its funny bone, that's where they expect it least"\\r\\nAnd some new-mown chaperone was standin' in the corner all alone watchin' the young girls dance\\r\\nAnd some fresh-sown moonstone was messin' with his frozen zone to remind him of the feeling of romance\\r\\n\\r\\nYeah, he was blinded by the light\\r\\nOh, cut loose like a deuce another runner in the night\\r\\nBlinded by the light\\r\\nHe got down but she never got tight, but he's gonna make it tonight\\r\\n\\r\\nSome silicone sister with her manager's mister told me I got what it takes\\r\\nShe said I'll turn you on sonny, to something strong if you play that song with the funky break\\r\\nAnd go-cart Mozart was checkin' out the weather chart to see if it was safe to go outside\\r\\nAnd little Early-Pearly came in by her curly-wurly and asked me if I needed a ride\\r\\n\\r\\nOh, some hazard from Harvard was skunked on beer playin' backyard bombardier\\r\\nYes and Scotland Yard was trying hard, they sent some dude with a calling card\\r\\nHe said, do what you like, but don't do it here\\r\\nWell I jumped up, turned around, spit in the air, fell on the ground\\r\\nAsked him which was the way back home\\r\\nHe said take a right at the light, keep goin' straight until night, and then boy, you're on your own\\r\\n\\r\\nAnd now in Zanzibar a shootin' star was ridin' in a side car hummin' a lunar tune\\r\\nYes, and the avatar said blow the bar but first remove the cookie jar we're gonna teach those boys to laugh too soon\\r\\nAnd some kidnapped handicap was complainin' that he caught the clap from some mousetrap he bought last night\\r\\nWell I unsnapped his skull cap and between his ears I saw\\r\\nA gap but figured he'd be all right\\r\\n\\r\\nHe was just blinded by the light\\r\\nCut loose like a deuce another runner in the night\\r\\nBlinded by the light\\r\\nMama always told me not to look into the sights of the sun\\r\\nWhoa, but but mama that's where the fun is\\r\\n\\r\\nI was blinded\\r\\nOh mama, oh mama\\r\\nI was blinded\\r\\nOh mama, oh mama\\r\\nI was blinded by the light\\r\\nI was blinded\\r\\nI was blinded\\r\\nI was blinded by the light\\r\\nI was blinded\\r\\nI was blinded by the light\\r\\nI was blinded\\r\\nI was blinded 1 1 1
  1377. \.
  1378. --
  1379. -- Data for Name: repostajes_repostaje; Type: TABLE DATA; Schema: public; Owner: creylopez
  1380. --
  1381. COPY public.repostajes_repostaje (id, fecha, kms, litros, descuento, importe, precioxlitro, kmsrecorridos, consumo, vehiculo_id) FROM stdin;
  1382. 16 2021-12-14 52731 0.00 0.00 0.00 0.00 52731 0.00 5
  1383. 17 2021-12-23 53162 52.80 0.00 67.32 1.28 431 12.25 5
  1384. 18 2021-12-31 54122 49.99 0.00 63.74 1.28 960 5.21 5
  1385. 19 2022-01-22 54946 49.14 0.00 62.65 1.27 824 5.96 5
  1386. 20 2022-02-09 55908 49.24 0.00 65.24 1.32 962 5.12 5
  1387. 21 2022-03-03 56909 48.61 0.00 67.03 1.38 1001 4.86 5
  1388. 22 2022-03-18 57542 30.06 0.00 52.54 1.75 633 4.75 5
  1389. 23 2022-04-10 58497 46.63 0.00 69.98 1.50 955 4.88 5
  1390. 24 2022-05-12 59447 47.14 0.00 72.11 1.53 950 4.96 5
  1391. 25 2022-05-19 60414 48.57 0.00 79.81 1.64 967 5.02 5
  1392. 26 2022-06-09 61147 36.20 0.00 62.12 1.72 733 4.94 5
  1393. 27 2022-06-25 62116 49.17 0.00 90.29 1.84 969 5.07 5
  1394. 28 2022-09-14 66359 53.24 0.00 84.83 1.59 1174 4.53 5
  1395. 29 2022-09-23 67107 37.26 0.00 55.48 1.49 748 4.98 5
  1396. 30 2023-01-24 71790 43.04 2.12 70.54 1.59 871 4.94 5
  1397. 31 2022-12-03 70061 46.38 2.04 68.13 1.42 903 5.14 5
  1398. 32 2022-12-26 70919 44.58 1.85 61.68 1.34 858 5.20 5
  1399. 33 2023-03-05 73711 47.85 0.00 71.20 1.49 948 5.05 5
  1400. 34 2023-03-25 74749 49.84 0.00 72.17 1.45 1038 4.80 5
  1401. 35 2023-02-19 72763 49.38 2.34 77.97 1.53 973 5.08 5
  1402. 36 2023-05-06 76434 32.28 0.00 44.09 1.37 1685 1.92 5
  1403. 37 2023-05-22 77366 45.04 0.00 58.46 1.30 932 4.83 5
  1404. 38 2022-07-09 63129 47.03 0.00 79.38 1.69 1013 4.64 5
  1405. 39 2022-08-12 64088 43.73 0.00 65.55 1.50 959 4.56 5
  1406. 40 2022-08-22 65185 52.78 0.00 78.80 1.49 1097 4.81 5
  1407. 41 2022-10-12 68204 52.04 2.51 83.73 1.56 1097 4.74 5
  1408. 42 2022-11-11 69158 45.28 2.37 78.91 1.69 954 4.75 5
  1409. 43 2023-06-10 78170 41.09 0.00 54.16 1.32 804 5.11 5
  1410. 44 2023-06-19 79038 40.78 1.95 60.11 1.43 868 4.70 5
  1411. 45 2022-06-28 219 9.88 0.00 18.96 1.92 219 4.51 4
  1412. 46 2022-06-28 236 27.36 0.00 51.33 1.88 17 160.94 4
  1413. 47 2022-07-14 904 32.24 0.00 55.58 1.72 668 4.83 4
  1414. 48 2022-07-26 1433 30.49 0.00 48.43 1.59 529 5.76 4
  1415. 49 2022-08-21 2030 32.92 0.00 46.72 1.42 597 5.51 4
  1416. 50 2022-09-26 2627 23.92 0.00 33.16 1.39 597 4.01 4
  1417. 51 2022-10-18 3169 22.97 0.00 32.74 1.43 542 4.24 4
  1418. 52 2022-11-09 3791 29.60 0.00 41.88 1.41 622 4.76 4
  1419. 53 2022-11-27 4363 28.80 1.20 38.80 1.35 572 5.03 4
  1420. 54 2022-12-22 4851 26.74 1.06 34.18 1.28 488 5.48 4
  1421. 55 2023-01-12 5291 23.52 1.09 35.34 1.50 440 5.35 4
  1422. 56 2023-02-01 5702 27.36 1.28 41.52 1.52 411 6.66 4
  1423. 57 2023-02-20 6141 24.09 1.13 36.67 1.52 439 5.49 4
  1424. 58 2023-03-15 6631 25.52 1.21 38.96 1.53 490 5.21 4
  1425. 59 2023-04-17 7325 29.40 1.47 47.62 1.62 694 4.24 4
  1426. 60 2023-05-28 8413 24.16 1.17 37.70 1.56 1088 2.22 4
  1427. 61 2023-06-25 8956 26.38 1.30 41.94 1.59 543 4.86 4
  1428. 62 2023-07-10 9471 29.04 1.35 43.49 1.50 515 5.64 4
  1429. 63 2023-07-14 79875 40.56 1.74 56.26 1.41 837 4.85 5
  1430. 64 2023-07-22 80806 46.29 1.95 63.05 1.37 931 4.97 5
  1431. 65 2023-07-25 10043 24.85 1.40 40.32 1.62 572 4.34 4
  1432. 66 2023-08-07 81695 44.39 0.00 63.88 1.44 889 4.99 5
  1433. 67 2023-08-09 10582 26.49 1.39 44.94 1.70 539 4.91 4
  1434. 68 2023-08-23 11050 24.05 1.22 39.40 1.64 468 5.14 4
  1435. 69 2023-08-27 82715 50.40 0.00 77.06 1.53 1020 4.94 5
  1436. 70 2023-09-14 11508 21.44 1.14 37.00 1.73 458 4.68 4
  1437. 71 2023-09-19 83709 48.35 0.00 77.26 1.60 994 4.86 5
  1438. 72 2023-09-27 84171 23.01 0.00 35.85 1.56 462 4.98 5
  1439. 73 2023-10-10 85104 48.00 0.00 72.43 1.51 933 5.14 5
  1440. 74 2023-10-15 12006 25.09 1.25 40.37 1.61 498 5.04 4
  1441. 75 2023-10-27 86021 46.77 0.00 70.11 1.50 917 5.10 5
  1442. 76 2023-11-04 12427 25.64 1.17 37.78 1.47 421 6.09 4
  1443. 77 2023-11-11 86757 39.58 1.71 55.33 1.40 736 5.38 5
  1444. 78 2023-11-20 12933 26.16 0.00 40.00 1.53 506 5.17 4
  1445. 79 2023-11-23 87503 42.41 1.75 56.45 1.33 746 5.68 5
  1446. 80 2023-12-04 88256 41.19 0.00 57.62 1.40 753 5.47 5
  1447. 81 2023-12-17 88964 41.20 1.66 53.78 1.31 708 5.82 5
  1448. 82 2024-01-06 13414 30.72 1.34 43.36 1.41 481 6.39 4
  1449. 83 2024-01-07 89802 47.77 1.91 61.75 1.29 838 5.70 5
  1450. 84 2024-01-22 13903 25.08 0.00 37.09 1.48 489 5.13 4
  1451. 85 2024-01-27 90723 45.25 0.00 60.37 1.33 921 4.91 5
  1452. 86 2024-02-11 14365 28.45 0.00 41.37 1.45 462 6.16 4
  1453. 87 2024-02-12 91672 48.31 0.00 70.00 1.45 949 5.09 5
  1454. 88 2024-02-27 92489 41.99 0.00 57.91 1.38 817 5.14 5
  1455. 89 2024-02-29 14857 23.96 1.12 36.35 1.52 492 4.87 4
  1456. 90 2024-03-18 15287 13.00 0.00 20.00 1.54 430 3.02 4
  1457. 91 2024-03-19 93327 43.85 0.00 60.25 1.37 838 5.23 5
  1458. 92 2024-03-25 15537 19.24 0.00 30.00 1.56 250 7.70 4
  1459. 93 2024-04-06 15935 29.39 0.00 43.47 1.48 398 7.38 4
  1460. 94 2024-04-08 94167 41.11 0.00 56.49 1.37 840 4.89 5
  1461. 95 2024-04-22 16465 25.92 0.00 40.66 1.57 530 4.89 4
  1462. 96 2024-04-29 95042 43.63 0.00 63.03 1.45 875 4.99 5
  1463. 97 2024-05-13 16963 26.80 0.00 41.51 1.55 498 5.38 4
  1464. 98 2024-05-21 96585 28.33 0.00 39.63 1.40 572 4.95 5
  1465. 99 2024-05-27 97597 49.48 0.00 67.96 1.37 1012 4.89 5
  1466. 100 2024-05-06 96013 50.59 0.00 73.32 1.45 971 5.21 5
  1467. 101 2024-06-03 98067 23.97 0.00 32.69 1.36 470 5.10 5
  1468. 102 2024-06-08 98609 28.28 1.25 40.44 1.43 542 5.22 5
  1469. 103 2024-06-10 17494 26.72 0.00 39.92 1.49 531 5.03 4
  1470. 104 2024-06-17 99166 26.91 0.00 36.43 1.35 557 4.83 5
  1471. 105 2024-06-26 17879 18.91 0.00 28.44 1.50 385 4.91 4
  1472. 106 2024-06-30 100048 44.39 0.00 61.57 1.39 882 5.03 5
  1473. 107 2024-07-10 18397 25.42 0.00 38.49 1.51 518 4.91 4
  1474. 108 2024-07-21 18944 27.71 0.00 40.29 1.45 547 5.07 4
  1475. 109 2024-07-23 101010 45.25 0.00 60.52 1.34 962 4.70 5
  1476. 110 2024-08-09 19596 32.19 0.00 43.58 1.35 652 4.94 4
  1477. 111 2024-08-12 101710 30.69 0.00 39.10 1.27 700 4.38 5
  1478. 112 2024-08-25 20185 29.08 0.00 38.07 1.31 589 4.94 4
  1479. 1 2024-08-31 102649 45.27 0.00 55.64 1.23 939 4.82 5
  1480. 2 2024-09-15 20775 29.51 0.00 39.51 1.34 590 5.00 4
  1481. 116 2024-09-22 103258 30.45 0.00 36.97 1.21 609 5.00 5
  1482. 117 2024-09-27 103729 22.83 0.00 27.60 1.21 471 4.85 5
  1483. 118 2024-10-01 21268 24.08 0.00 31.52 1.31 493 4.88 4
  1484. 119 2024-10-09 104623 45.10 0.00 56.33 1.25 894 5.04 5
  1485. 120 2024-10-13 21844 29.92 0.00 40.21 1.34 576 5.19 4
  1486. \.
  1487. --
  1488. -- Data for Name: repostajes_vehiculo; Type: TABLE DATA; Schema: public; Owner: creylopez
  1489. --
  1490. COPY public.repostajes_vehiculo (id, marca, modelo, matricula, foto) FROM stdin;
  1491. 5 BMW 318d 1018KPD vehiculos/bmws3.png
  1492. 4 Toyota Corolla 7630LYR vehiculos/corolla.png
  1493. \.
  1494. --
  1495. -- Data for Name: reymotausers_reymotauser; Type: TABLE DATA; Schema: public; Owner: creylopez
  1496. --
  1497. COPY public.reymotausers_reymotauser (id, password, last_login, is_superuser, email, foto, is_staff, is_active, nombre) FROM stdin;
  1498. 1 pbkdf2_sha256$600000$4Hm1FCelIRlfXxCpYYLiZw$FAO9j4qNizgmEWf+5xB2so0Xw0ISP9klCfZQ/Xkj5nk= 2024-10-14 06:56:09.654832+00 t creylopez@yahoo.es profile_images/default.jpg t t \N
  1499. \.
  1500. --
  1501. -- Data for Name: reymotausers_reymotauser_groups; Type: TABLE DATA; Schema: public; Owner: creylopez
  1502. --
  1503. COPY public.reymotausers_reymotauser_groups (id, reymotauser_id, group_id) FROM stdin;
  1504. \.
  1505. --
  1506. -- Data for Name: reymotausers_reymotauser_user_permissions; Type: TABLE DATA; Schema: public; Owner: creylopez
  1507. --
  1508. COPY public.reymotausers_reymotauser_user_permissions (id, reymotauser_id, permission_id) FROM stdin;
  1509. \.
  1510. --
  1511. -- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1512. --
  1513. SELECT pg_catalog.setval('public.auth_group_id_seq', 1, false);
  1514. --
  1515. -- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1516. --
  1517. SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false);
  1518. --
  1519. -- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1520. --
  1521. SELECT pg_catalog.setval('public.auth_permission_id_seq', 32, true);
  1522. --
  1523. -- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1524. --
  1525. SELECT pg_catalog.setval('public.django_admin_log_id_seq', 72, true);
  1526. --
  1527. -- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1528. --
  1529. SELECT pg_catalog.setval('public.django_content_type_id_seq', 8, true);
  1530. --
  1531. -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1532. --
  1533. SELECT pg_catalog.setval('public.django_migrations_id_seq', 30, true);
  1534. --
  1535. -- Name: gestion_autor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1536. --
  1537. SELECT pg_catalog.setval('public.gestion_autor_id_seq', 101, true);
  1538. --
  1539. -- Name: gestion_libro_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1540. --
  1541. SELECT pg_catalog.setval('public.gestion_libro_id_seq', 505, true);
  1542. --
  1543. -- Name: gestion_reymotauser_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1544. --
  1545. SELECT pg_catalog.setval('public.gestion_reymotauser_groups_id_seq', 1, false);
  1546. --
  1547. -- Name: gestion_reymotauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1548. --
  1549. SELECT pg_catalog.setval('public.gestion_reymotauser_id_seq', 1, true);
  1550. --
  1551. -- Name: gestion_reymotauser_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1552. --
  1553. SELECT pg_catalog.setval('public.gestion_reymotauser_user_permissions_id_seq', 1, false);
  1554. --
  1555. -- Name: libros_autor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1556. --
  1557. SELECT pg_catalog.setval('public.libros_autor_id_seq', 1, false);
  1558. --
  1559. -- Name: libros_libro_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1560. --
  1561. SELECT pg_catalog.setval('public.libros_libro_id_seq', 1, false);
  1562. --
  1563. -- Name: lyrics_album_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1564. --
  1565. SELECT pg_catalog.setval('public.lyrics_album_id_seq', 16, true);
  1566. --
  1567. -- Name: lyrics_artista_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1568. --
  1569. SELECT pg_catalog.setval('public.lyrics_artista_id_seq', 1, false);
  1570. --
  1571. -- Name: lyrics_song_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1572. --
  1573. SELECT pg_catalog.setval('public.lyrics_song_id_seq', 1, false);
  1574. --
  1575. -- Name: repostajes_repostaje_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1576. --
  1577. SELECT pg_catalog.setval('public.repostajes_repostaje_id_seq', 120, true);
  1578. --
  1579. -- Name: repostajes_vehiculo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1580. --
  1581. SELECT pg_catalog.setval('public.repostajes_vehiculo_id_seq', 1, false);
  1582. --
  1583. -- Name: reymotausers_reymotauser_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1584. --
  1585. SELECT pg_catalog.setval('public.reymotausers_reymotauser_groups_id_seq', 1, false);
  1586. --
  1587. -- Name: reymotausers_reymotauser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1588. --
  1589. SELECT pg_catalog.setval('public.reymotausers_reymotauser_id_seq', 1, true);
  1590. --
  1591. -- Name: reymotausers_reymotauser_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: creylopez
  1592. --
  1593. SELECT pg_catalog.setval('public.reymotausers_reymotauser_user_permissions_id_seq', 1, false);
  1594. --
  1595. -- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1596. --
  1597. ALTER TABLE ONLY public.auth_group
  1598. ADD CONSTRAINT auth_group_name_key UNIQUE (name);
  1599. --
  1600. -- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1601. --
  1602. ALTER TABLE ONLY public.auth_group_permissions
  1603. ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id);
  1604. --
  1605. -- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1606. --
  1607. ALTER TABLE ONLY public.auth_group_permissions
  1608. ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
  1609. --
  1610. -- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1611. --
  1612. ALTER TABLE ONLY public.auth_group
  1613. ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
  1614. --
  1615. -- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1616. --
  1617. ALTER TABLE ONLY public.auth_permission
  1618. ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename);
  1619. --
  1620. -- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1621. --
  1622. ALTER TABLE ONLY public.auth_permission
  1623. ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
  1624. --
  1625. -- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1626. --
  1627. ALTER TABLE ONLY public.django_admin_log
  1628. ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
  1629. --
  1630. -- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1631. --
  1632. ALTER TABLE ONLY public.django_content_type
  1633. ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model);
  1634. --
  1635. -- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1636. --
  1637. ALTER TABLE ONLY public.django_content_type
  1638. ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
  1639. --
  1640. -- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1641. --
  1642. ALTER TABLE ONLY public.django_migrations
  1643. ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
  1644. --
  1645. -- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1646. --
  1647. ALTER TABLE ONLY public.django_session
  1648. ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
  1649. --
  1650. -- Name: gestion_autor gestion_autor_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1651. --
  1652. ALTER TABLE ONLY public.gestion_autor
  1653. ADD CONSTRAINT gestion_autor_pkey PRIMARY KEY (id);
  1654. --
  1655. -- Name: gestion_libro gestion_libro_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1656. --
  1657. ALTER TABLE ONLY public.gestion_libro
  1658. ADD CONSTRAINT gestion_libro_pkey PRIMARY KEY (id);
  1659. --
  1660. -- Name: gestion_reymotauser gestion_reymotauser_email_key; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1661. --
  1662. ALTER TABLE ONLY public.gestion_reymotauser
  1663. ADD CONSTRAINT gestion_reymotauser_email_key UNIQUE (email);
  1664. --
  1665. -- Name: gestion_reymotauser_groups gestion_reymotauser_grou_reymotauser_id_group_id_e25e9f89_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1666. --
  1667. ALTER TABLE ONLY public.gestion_reymotauser_groups
  1668. ADD CONSTRAINT gestion_reymotauser_grou_reymotauser_id_group_id_e25e9f89_uniq UNIQUE (reymotauser_id, group_id);
  1669. --
  1670. -- Name: gestion_reymotauser_groups gestion_reymotauser_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1671. --
  1672. ALTER TABLE ONLY public.gestion_reymotauser_groups
  1673. ADD CONSTRAINT gestion_reymotauser_groups_pkey PRIMARY KEY (id);
  1674. --
  1675. -- Name: gestion_reymotauser gestion_reymotauser_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1676. --
  1677. ALTER TABLE ONLY public.gestion_reymotauser
  1678. ADD CONSTRAINT gestion_reymotauser_pkey PRIMARY KEY (id);
  1679. --
  1680. -- Name: gestion_reymotauser_user_permissions gestion_reymotauser_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1681. --
  1682. ALTER TABLE ONLY public.gestion_reymotauser_user_permissions
  1683. ADD CONSTRAINT gestion_reymotauser_user_permissions_pkey PRIMARY KEY (id);
  1684. --
  1685. -- Name: gestion_reymotauser_user_permissions gestion_reymotauser_user_reymotauser_id_permissio_54192358_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1686. --
  1687. ALTER TABLE ONLY public.gestion_reymotauser_user_permissions
  1688. ADD CONSTRAINT gestion_reymotauser_user_reymotauser_id_permissio_54192358_uniq UNIQUE (reymotauser_id, permission_id);
  1689. --
  1690. -- Name: libros_autor libros_autor_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1691. --
  1692. ALTER TABLE ONLY public.libros_autor
  1693. ADD CONSTRAINT libros_autor_pkey PRIMARY KEY (id);
  1694. --
  1695. -- Name: libros_libro libros_libro_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1696. --
  1697. ALTER TABLE ONLY public.libros_libro
  1698. ADD CONSTRAINT libros_libro_pkey PRIMARY KEY (id);
  1699. --
  1700. -- Name: lyrics_album lyrics_album_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1701. --
  1702. ALTER TABLE ONLY public.lyrics_album
  1703. ADD CONSTRAINT lyrics_album_pkey PRIMARY KEY (id);
  1704. --
  1705. -- Name: lyrics_artista lyrics_artista_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1706. --
  1707. ALTER TABLE ONLY public.lyrics_artista
  1708. ADD CONSTRAINT lyrics_artista_pkey PRIMARY KEY (id);
  1709. --
  1710. -- Name: lyrics_song lyrics_song_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1711. --
  1712. ALTER TABLE ONLY public.lyrics_song
  1713. ADD CONSTRAINT lyrics_song_pkey PRIMARY KEY (id);
  1714. --
  1715. -- Name: repostajes_repostaje repostajes_repostaje_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1716. --
  1717. ALTER TABLE ONLY public.repostajes_repostaje
  1718. ADD CONSTRAINT repostajes_repostaje_pkey PRIMARY KEY (id);
  1719. --
  1720. -- Name: repostajes_vehiculo repostajes_vehiculo_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1721. --
  1722. ALTER TABLE ONLY public.repostajes_vehiculo
  1723. ADD CONSTRAINT repostajes_vehiculo_pkey PRIMARY KEY (id);
  1724. --
  1725. -- Name: reymotausers_reymotauser reymotausers_reymotauser_email_key; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1726. --
  1727. ALTER TABLE ONLY public.reymotausers_reymotauser
  1728. ADD CONSTRAINT reymotausers_reymotauser_email_key UNIQUE (email);
  1729. --
  1730. -- Name: reymotausers_reymotauser_groups reymotausers_reymotauser_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1731. --
  1732. ALTER TABLE ONLY public.reymotausers_reymotauser_groups
  1733. ADD CONSTRAINT reymotausers_reymotauser_groups_pkey PRIMARY KEY (id);
  1734. --
  1735. -- Name: reymotausers_reymotauser reymotausers_reymotauser_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1736. --
  1737. ALTER TABLE ONLY public.reymotausers_reymotauser
  1738. ADD CONSTRAINT reymotausers_reymotauser_pkey PRIMARY KEY (id);
  1739. --
  1740. -- Name: reymotausers_reymotauser_groups reymotausers_reymotauser_reymotauser_id_group_id_6385094c_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1741. --
  1742. ALTER TABLE ONLY public.reymotausers_reymotauser_groups
  1743. ADD CONSTRAINT reymotausers_reymotauser_reymotauser_id_group_id_6385094c_uniq UNIQUE (reymotauser_id, group_id);
  1744. --
  1745. -- Name: reymotausers_reymotauser_user_permissions reymotausers_reymotauser_reymotauser_id_permissio_5125ca3f_uniq; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1746. --
  1747. ALTER TABLE ONLY public.reymotausers_reymotauser_user_permissions
  1748. ADD CONSTRAINT reymotausers_reymotauser_reymotauser_id_permissio_5125ca3f_uniq UNIQUE (reymotauser_id, permission_id);
  1749. --
  1750. -- Name: reymotausers_reymotauser_user_permissions reymotausers_reymotauser_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: creylopez
  1751. --
  1752. ALTER TABLE ONLY public.reymotausers_reymotauser_user_permissions
  1753. ADD CONSTRAINT reymotausers_reymotauser_user_permissions_pkey PRIMARY KEY (id);
  1754. --
  1755. -- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: creylopez
  1756. --
  1757. CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops);
  1758. --
  1759. -- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: creylopez
  1760. --
  1761. CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id);
  1762. --
  1763. -- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: creylopez
  1764. --
  1765. CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id);
  1766. --
  1767. -- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: creylopez
  1768. --
  1769. CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id);
  1770. --
  1771. -- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: creylopez
  1772. --
  1773. CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id);
  1774. --
  1775. -- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: creylopez
  1776. --
  1777. CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id);
  1778. --
  1779. -- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: creylopez
  1780. --
  1781. CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date);
  1782. --
  1783. -- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: creylopez
  1784. --
  1785. CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops);
  1786. --
  1787. -- Name: gestion_libro_autor_id_59ca803b; Type: INDEX; Schema: public; Owner: creylopez
  1788. --
  1789. CREATE INDEX gestion_libro_autor_id_59ca803b ON public.gestion_libro USING btree (autor_id);
  1790. --
  1791. -- Name: gestion_reymotauser_email_a2619bff_like; Type: INDEX; Schema: public; Owner: creylopez
  1792. --
  1793. CREATE INDEX gestion_reymotauser_email_a2619bff_like ON public.gestion_reymotauser USING btree (email varchar_pattern_ops);
  1794. --
  1795. -- Name: gestion_reymotauser_groups_group_id_d7be220a; Type: INDEX; Schema: public; Owner: creylopez
  1796. --
  1797. CREATE INDEX gestion_reymotauser_groups_group_id_d7be220a ON public.gestion_reymotauser_groups USING btree (group_id);
  1798. --
  1799. -- Name: gestion_reymotauser_groups_reymotauser_id_f0390632; Type: INDEX; Schema: public; Owner: creylopez
  1800. --
  1801. CREATE INDEX gestion_reymotauser_groups_reymotauser_id_f0390632 ON public.gestion_reymotauser_groups USING btree (reymotauser_id);
  1802. --
  1803. -- Name: gestion_reymotauser_user_permissions_permission_id_111a1539; Type: INDEX; Schema: public; Owner: creylopez
  1804. --
  1805. CREATE INDEX gestion_reymotauser_user_permissions_permission_id_111a1539 ON public.gestion_reymotauser_user_permissions USING btree (permission_id);
  1806. --
  1807. -- Name: gestion_reymotauser_user_permissions_reymotauser_id_db57d26f; Type: INDEX; Schema: public; Owner: creylopez
  1808. --
  1809. CREATE INDEX gestion_reymotauser_user_permissions_reymotauser_id_db57d26f ON public.gestion_reymotauser_user_permissions USING btree (reymotauser_id);
  1810. --
  1811. -- Name: libros_libro_autor_id_e687beda; Type: INDEX; Schema: public; Owner: creylopez
  1812. --
  1813. CREATE INDEX libros_libro_autor_id_e687beda ON public.libros_libro USING btree (autor_id);
  1814. --
  1815. -- Name: lyrics_album_artist_id_919e88a4; Type: INDEX; Schema: public; Owner: creylopez
  1816. --
  1817. CREATE INDEX lyrics_album_artist_id_919e88a4 ON public.lyrics_album USING btree (artist_id);
  1818. --
  1819. -- Name: lyrics_song_album_id_c665bdde; Type: INDEX; Schema: public; Owner: creylopez
  1820. --
  1821. CREATE INDEX lyrics_song_album_id_c665bdde ON public.lyrics_song USING btree (album_id);
  1822. --
  1823. -- Name: lyrics_song_artist_id_df26c4c1; Type: INDEX; Schema: public; Owner: creylopez
  1824. --
  1825. CREATE INDEX lyrics_song_artist_id_df26c4c1 ON public.lyrics_song USING btree (artist_id);
  1826. --
  1827. -- Name: repostajes_repostaje_vehiculo_id_fad27611; Type: INDEX; Schema: public; Owner: creylopez
  1828. --
  1829. CREATE INDEX repostajes_repostaje_vehiculo_id_fad27611 ON public.repostajes_repostaje USING btree (vehiculo_id);
  1830. --
  1831. -- Name: reymotausers_reymotauser_email_647fec9c_like; Type: INDEX; Schema: public; Owner: creylopez
  1832. --
  1833. CREATE INDEX reymotausers_reymotauser_email_647fec9c_like ON public.reymotausers_reymotauser USING btree (email varchar_pattern_ops);
  1834. --
  1835. -- Name: reymotausers_reymotauser_groups_group_id_1f269c15; Type: INDEX; Schema: public; Owner: creylopez
  1836. --
  1837. CREATE INDEX reymotausers_reymotauser_groups_group_id_1f269c15 ON public.reymotausers_reymotauser_groups USING btree (group_id);
  1838. --
  1839. -- Name: reymotausers_reymotauser_groups_reymotauser_id_fbb6b5d5; Type: INDEX; Schema: public; Owner: creylopez
  1840. --
  1841. CREATE INDEX reymotausers_reymotauser_groups_reymotauser_id_fbb6b5d5 ON public.reymotausers_reymotauser_groups USING btree (reymotauser_id);
  1842. --
  1843. -- Name: reymotausers_reymotauser_u_permission_id_d21cfe23; Type: INDEX; Schema: public; Owner: creylopez
  1844. --
  1845. CREATE INDEX reymotausers_reymotauser_u_permission_id_d21cfe23 ON public.reymotausers_reymotauser_user_permissions USING btree (permission_id);
  1846. --
  1847. -- Name: reymotausers_reymotauser_u_reymotauser_id_1c52a051; Type: INDEX; Schema: public; Owner: creylopez
  1848. --
  1849. CREATE INDEX reymotausers_reymotauser_u_reymotauser_id_1c52a051 ON public.reymotausers_reymotauser_user_permissions USING btree (reymotauser_id);
  1850. --
  1851. -- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1852. --
  1853. ALTER TABLE ONLY public.auth_group_permissions
  1854. ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
  1855. --
  1856. -- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1857. --
  1858. ALTER TABLE ONLY public.auth_group_permissions
  1859. ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
  1860. --
  1861. -- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1862. --
  1863. ALTER TABLE ONLY public.auth_permission
  1864. ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
  1865. --
  1866. -- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1867. --
  1868. ALTER TABLE ONLY public.django_admin_log
  1869. ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
  1870. --
  1871. -- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_gestion_reymotauser_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1872. --
  1873. ALTER TABLE ONLY public.django_admin_log
  1874. ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_gestion_reymotauser_id FOREIGN KEY (user_id) REFERENCES public.gestion_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1875. --
  1876. -- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_reymotaus; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1877. --
  1878. ALTER TABLE ONLY public.django_admin_log
  1879. ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_reymotaus FOREIGN KEY (user_id) REFERENCES public.reymotausers_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1880. --
  1881. -- Name: gestion_libro gestion_libro_autor_id_59ca803b_fk_gestion_autor_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1882. --
  1883. ALTER TABLE ONLY public.gestion_libro
  1884. ADD CONSTRAINT gestion_libro_autor_id_59ca803b_fk_gestion_autor_id FOREIGN KEY (autor_id) REFERENCES public.gestion_autor(id) DEFERRABLE INITIALLY DEFERRED;
  1885. --
  1886. -- Name: gestion_reymotauser_user_permissions gestion_reymotauser__permission_id_111a1539_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1887. --
  1888. ALTER TABLE ONLY public.gestion_reymotauser_user_permissions
  1889. ADD CONSTRAINT gestion_reymotauser__permission_id_111a1539_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
  1890. --
  1891. -- Name: gestion_reymotauser_user_permissions gestion_reymotauser__reymotauser_id_db57d26f_fk_gestion_r; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1892. --
  1893. ALTER TABLE ONLY public.gestion_reymotauser_user_permissions
  1894. ADD CONSTRAINT gestion_reymotauser__reymotauser_id_db57d26f_fk_gestion_r FOREIGN KEY (reymotauser_id) REFERENCES public.gestion_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1895. --
  1896. -- Name: gestion_reymotauser_groups gestion_reymotauser__reymotauser_id_f0390632_fk_gestion_r; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1897. --
  1898. ALTER TABLE ONLY public.gestion_reymotauser_groups
  1899. ADD CONSTRAINT gestion_reymotauser__reymotauser_id_f0390632_fk_gestion_r FOREIGN KEY (reymotauser_id) REFERENCES public.gestion_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1900. --
  1901. -- Name: gestion_reymotauser_groups gestion_reymotauser_groups_group_id_d7be220a_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1902. --
  1903. ALTER TABLE ONLY public.gestion_reymotauser_groups
  1904. ADD CONSTRAINT gestion_reymotauser_groups_group_id_d7be220a_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
  1905. --
  1906. -- Name: libros_libro libros_libro_autor_id_e687beda_fk_libros_autor_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1907. --
  1908. ALTER TABLE ONLY public.libros_libro
  1909. ADD CONSTRAINT libros_libro_autor_id_e687beda_fk_libros_autor_id FOREIGN KEY (autor_id) REFERENCES public.libros_autor(id) DEFERRABLE INITIALLY DEFERRED;
  1910. --
  1911. -- Name: lyrics_album lyrics_album_artist_id_919e88a4_fk_lyrics_artista_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1912. --
  1913. ALTER TABLE ONLY public.lyrics_album
  1914. ADD CONSTRAINT lyrics_album_artist_id_919e88a4_fk_lyrics_artista_id FOREIGN KEY (artist_id) REFERENCES public.lyrics_artista(id) DEFERRABLE INITIALLY DEFERRED;
  1915. --
  1916. -- Name: lyrics_song lyrics_song_album_id_c665bdde_fk_lyrics_album_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1917. --
  1918. ALTER TABLE ONLY public.lyrics_song
  1919. ADD CONSTRAINT lyrics_song_album_id_c665bdde_fk_lyrics_album_id FOREIGN KEY (album_id) REFERENCES public.lyrics_album(id) DEFERRABLE INITIALLY DEFERRED;
  1920. --
  1921. -- Name: lyrics_song lyrics_song_artist_id_df26c4c1_fk_lyrics_artista_id; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1922. --
  1923. ALTER TABLE ONLY public.lyrics_song
  1924. ADD CONSTRAINT lyrics_song_artist_id_df26c4c1_fk_lyrics_artista_id FOREIGN KEY (artist_id) REFERENCES public.lyrics_artista(id) DEFERRABLE INITIALLY DEFERRED;
  1925. --
  1926. -- Name: repostajes_repostaje repostajes_repostaje_vehiculo_id_fad27611_fk_repostaje; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1927. --
  1928. ALTER TABLE ONLY public.repostajes_repostaje
  1929. ADD CONSTRAINT repostajes_repostaje_vehiculo_id_fad27611_fk_repostaje FOREIGN KEY (vehiculo_id) REFERENCES public.repostajes_vehiculo(id) DEFERRABLE INITIALLY DEFERRED;
  1930. --
  1931. -- Name: reymotausers_reymotauser_groups reymotausers_reymota_group_id_1f269c15_fk_auth_grou; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1932. --
  1933. ALTER TABLE ONLY public.reymotausers_reymotauser_groups
  1934. ADD CONSTRAINT reymotausers_reymota_group_id_1f269c15_fk_auth_grou FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
  1935. --
  1936. -- Name: reymotausers_reymotauser_user_permissions reymotausers_reymota_permission_id_d21cfe23_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1937. --
  1938. ALTER TABLE ONLY public.reymotausers_reymotauser_user_permissions
  1939. ADD CONSTRAINT reymotausers_reymota_permission_id_d21cfe23_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
  1940. --
  1941. -- Name: reymotausers_reymotauser_user_permissions reymotausers_reymota_reymotauser_id_1c52a051_fk_reymotaus; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1942. --
  1943. ALTER TABLE ONLY public.reymotausers_reymotauser_user_permissions
  1944. ADD CONSTRAINT reymotausers_reymota_reymotauser_id_1c52a051_fk_reymotaus FOREIGN KEY (reymotauser_id) REFERENCES public.reymotausers_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1945. --
  1946. -- Name: reymotausers_reymotauser_groups reymotausers_reymota_reymotauser_id_fbb6b5d5_fk_reymotaus; Type: FK CONSTRAINT; Schema: public; Owner: creylopez
  1947. --
  1948. ALTER TABLE ONLY public.reymotausers_reymotauser_groups
  1949. ADD CONSTRAINT reymotausers_reymota_reymotauser_id_fbb6b5d5_fk_reymotaus FOREIGN KEY (reymotauser_id) REFERENCES public.reymotausers_reymotauser(id) DEFERRABLE INITIALLY DEFERRED;
  1950. --
  1951. -- PostgreSQL database dump complete
  1952. --