Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 97.07 KB | None | 0 0
  1. group: boutique
  2.  
  3. departamentos = {
  4. departamento:number, nombre:string
  5. 1,ACCESORIOS
  6. 2,ROPA
  7. 3,ZAPATOS
  8. }
  9.  
  10. productos = {
  11. codigo:string, descripcion:string , precio:number, marca:string
  12. '100100' , 'CINTO PIEL CABALLERO' , 350 , 'CK'
  13. '100102' , 'CINTO PIEL DAMA' , 410 , 'PE'
  14. '100104' , 'CINTO PIEL JUVENIL' , 380 , 'LEVIS'
  15. '100106' , 'BUFANDA NAVIDEÑA' , 350 , 'PIPO'
  16. '100108' , 'PAÑUELOS X' , 120 , 'X'
  17. '100110' , 'GORRO NAVIDEÑO' , 340 , 'PIPO'
  18. '100112' , 'BOLSA DAMA' , 450 , 'X'
  19. '100114' , 'BOLSA JUVENIL ' , 498 , 'PIPO'
  20. '100116' , 'PAÑOLETA GIVEN' , 120 , 'GIVEN'
  21. '100118' , 'GAFAS DE SOL ' , 240 , 'NIKE'
  22. '100120' , 'LENTES ' , 229 , 'JORDAN'
  23. '200100' , 'PANTALON MEZCLILLA CABALLERO', 550 , 'LEVIS'
  24. '200102' , 'PANTALON MEZCLILLA DAMA' , 580 , 'JORDAN'
  25. '200104' , 'PANTALON MEZCLILLA JUVENIL' , 650 , 'GIVEN'
  26. '200106' , 'BLUSA PARA DAMA' , 320 , 'NIKE'
  27. '200108' , 'BLUSA ALGODON NIÑO' , 240 , 'GIVEN'
  28. '200110' , 'MAMELUCO BEBE NIÑA' , 245 , 'JORDAN'
  29. '200112' , 'MAMELUCO BEBE NIÑO' , 280 , 'JORDAN'
  30. '200114' , 'PANTALON BEBE AZUL' , 280 , 'GIVEN'
  31. '200116' , 'PANFALON BEB ROSA' , 290 , 'GIVEN'
  32. '200118' , 'PLAYERA JUVENIL' , 300 , 'NIKE'
  33. '200220' , 'PLAYEDA JOVENCITA' , 290 , 'NIKE'
  34. '300100' , 'TENIS PARA CABALLERO' , 1550 , 'NIKE'
  35. '300102' , 'TENIS PARA DAMA' , 1580 , 'NIKE'
  36. '300104' , 'TENIS JUVENIL' , 1650 , 'NIKE'
  37. '300106' , 'ZAPATO JUVENIL ' , 1200 , 'NIKE'
  38. '300108' , 'ZAPATO CABALLERO' , 1390 , 'GIVEN'
  39. '300110' , 'ZAPATO DAMA' , 1200 , 'JORDAN'
  40. '300112' , 'ZAPATO BEBE' , 560 , 'PIPO'
  41. '300114' , 'ZAPATO NIÑA' , 800 , 'PIPO'
  42. '300116' , 'ZANDALIA PLAYA JUVENIL' , 320 , 'JORDAN'
  43. '300118' , 'ZANDALIAS PLAYA CABALLERO' , 340 , 'JORDAN'
  44. '300120' , 'BOTAS DAMA' , 1223 , 'GIVEN'
  45. '300122' , 'BOTAS CABALLERO' , 1460 , 'GIVEN'
  46. }
  47.  
  48. clasificacion = {
  49. codigo:string,departamento:number
  50. 100100,1
  51. 100102,1
  52. 100104,1
  53. 100106,1
  54. 100108,1
  55. 100110,1
  56. 100112,1
  57. 100114,1
  58. 100116,1
  59. 100118,1
  60. 100120,1
  61. 200100,2
  62. 200102,2
  63. 200104,2
  64. 200106,2
  65. 200108,2
  66. 200110,2
  67. 200112,2
  68. 200114,2
  69. 200116,2
  70. 200118,2
  71. 200220,2
  72. 300100,3
  73. 300102,3
  74. 300104,3
  75. 300106,3
  76. 300108,3
  77. 300110,3
  78. 300112,3
  79. 300114,3
  80. 300116,3
  81. 300118,3
  82. 300120,3
  83. 300122,3
  84.  
  85. }
  86.  
  87. inventarios = {
  88. codigo:string, existencia:number, unidadmedida:string
  89. 100100,100,PIEZA
  90. 100102,150,PIEZA
  91. 100104,120,PIEZA
  92. 100106,99,PIEZA
  93. 100108,12,PIEZA
  94. 100110,65,PIEZA
  95. 100112,90,PIEZA
  96. 100114,55,PIEZA
  97. 100116,6,PIEZA
  98. 100118,65,PIEZA
  99. 100120,5,PIEZA
  100. 200100,20,PIEZA
  101. 200102,28,PIEZA
  102. 200104,50,PIEZA
  103. 200106,31,PIEZA
  104. 200108,41,PIEZA
  105. 200110,11,PIEZA
  106. 200112,34,PIEZA
  107. 200114,34,PIEZA
  108. 200116,71,PIEZA
  109. 200118,52,PIEZA
  110. 200220,48,PIEZA
  111. 300100,20,PAR
  112. 300102,40,PAR
  113. 300104,60,PAR
  114. 300106,85,PAR
  115. 300108,80,PAR
  116. 300110,46,PAR
  117. 300112,89,PAR
  118. 300114,6,PAR
  119. 300116,63,PAR
  120. 300118,98,PAR
  121. 300120,99,PAR
  122. 300122,2,PAR
  123.  
  124. }
  125.  
  126. colonias = {
  127. colonia:number ,nombre:string, cpostal:string
  128. 1,CENTRO,34000
  129. 2,COLINAS,34105
  130. 3,ESTADOS,34500
  131. 4,PRESIDENTES,35900
  132. 5,REVOLUCION,34567
  133.  
  134. }
  135.  
  136. usuarios = {
  137. cuenta:string, nombre:string , password:string, email:string , calleno:string , colonia:number, telefono:string
  138. 'avillarrea' , 'VILLARREAL CAMPOS AXEL ABIRAM', 'prueba' , 'avillarreal@hotmail.com', 'GUADALUPE VICTORIA' , 4 , '8102070'
  139. 'bbermudez' , 'BASILIO BERMUDEZ' , 'love' , 'bbermudez@yahoo.com.mx' , 'DEL REFUGIO 120' , 5 , '8131516'
  140. 'cperez' , 'CARLLOS PEREZ ORRANTE' , 'cperez' , 'cperez@yahoo.com' , 'constitucion 130 sur' , 1 , '8161756'
  141. 'jcabral' , 'CABRAL TAMAYO JUAN CARLOS' , 'prueba' , 'jcabral@yahoo.com.mx' , 'EMILIANO ZAPATA NO 765' , 5 , '8134070'
  142. 'jgomez' , 'JEORGINA GOMEZ' , 'testing' , 'jgomez@hotmail.com' , 'MEXICO' , 3 , '1115687'
  143. 'jgonzalez' , 'JORGUE GONZALEZ' , 'sexo' , 'jgonzalez@gmail.com' , 'GUADALUIPE VICTORIA' , 4 , '1234564'
  144. 'jhernandez' , 'JOAQUIN HERNANDEZ RIVERA' , 'amor' , 'jhernandez@hotmail.com' , 'DEL AMANECER' , 5 , '8890989'
  145. 'mlopez' , 'MEZA LOPEZ CITLALY MARIA' , 'prueba' , 'mlopez@hotmail.com' , 'PRIV. DEL AMANECER 120' , 2 , '8102030'
  146. 'mmartos' , 'MAECELO MARTOS' , 'prueba' , 'mmartos@gmail.com' , 'ZACATECAS' , 3 , '11234567'
  147. 'mmunios' , 'MARCELA MUÑOZ' , 'prueba' , 'mmunioz@hotmail.com' , 'VERACRUZ' , 3 , '8761112'
  148. 'omartinez' , 'MARTINEZ VILCHIS OMAR' , 'testing' , 'omartinez@gmail.com' , 'MORELOS NO 120' , 5 , '1134070'
  149. 'palvarado' , 'ALVARADO ROCHA PERLA SUSANA' , 'testing' , 'palvarado@yahoo.com.mx' , 'FRANCISVO VILLA N0 1000', 5 , '8113070'
  150. 'portiz' , 'PATRICIA ORTIZ' , 'love' , 'portiz@hotmail.com' , 'DURANGO' , 3 , '8765645'
  151. 'rpizarro' , 'RUBEN PIZARRO GURROLA' , 'rpizarro' , 'rpizarro@yahoo.com' , 'JUAREZ 320 NTE' , 1 , '8102045'
  152. 'sreyes' , 'REYES VALDES SHARON ALEJANDRA', 'prueba' , 'sreyes@hotmail.com' , 'BENITO JUAREZ NO. 420' , 4 , '8102050'
  153. }
  154.  
  155.  
  156.  
  157. ventasvirtuales = {
  158. noventa:number, fecha:date, hora:string, cuenta:string, total:number
  159. 100,2017-07-03,"2017-07-03 10:00:00",jcabral,2136
  160. 101,2017-07-03,"2017-07-03 10:20:00",omartinez,4720
  161. 102,2017-07-04,"2017-07-04 09:02:00",palvarado,900
  162. 103,2017-07-04,"2017-07-04 12:20:00",sreyes,920
  163. 104,2017-07-05,"2017-07-05 09:45:00",avillarrea,3840
  164. 105,2017-07-05,"2017-07-05 10:21:00",mlopez,2760
  165. 106,2017-07-06,"2017-07-06 09:20:00",sreyes,3405
  166. 107,2017-07-06,"2017-07-06 09:45:00",avillarrea,890
  167. 108,2017-07-06,"2017-07-06 11:21:00",mlopez,870
  168. 109,2017-07-14,"2017-07-14 14:22:31",jgonzalez,4390
  169. 110,2017-07-11,"2017-07-11 11:34:32",jhernandez,1345
  170. 111,2017-07-24,"2017-07-24 00:42:44",jcabral,2785
  171. 112,2017-07-28,"2017-07-28 02:51:22",mmunios,2856
  172. 113,2017-07-07,"2017-07-07 11:05:37",jhernandez,967
  173. 114,2017-07-26,"2017-07-26 18:38:09",jcabral,2198
  174. 115,2017-07-06,"2017-07-06 11:41:07",portiz,2950
  175. 116,2017-07-04,"2017-07-04 14:24:22",palvarado,1144
  176. 117,2017-07-15,"2017-07-15 10:01:29",omartinez,1227
  177. 118,2017-07-19,"2017-07-19 10:00:41",palvarado,897
  178. 119,2017-07-23,"2017-07-23 10:33:50",cperez,3169
  179. 120,2017-07-08,"2017-07-08 01:43:23",portiz,3729
  180. 121,2017-07-17,"2017-07-17 18:29:37",sreyes,4224
  181. 122,2017-07-05,"2017-07-05 00:42:46",mmartos,2206
  182. 123,2017-07-25,"2017-07-25 06:43:15",portiz,1711
  183. 124,2017-07-18,"2017-07-18 11:15:22",jcabral,1132
  184. 125,2017-07-17,"2017-07-17 14:50:26",mmartos,3481
  185. 126,2017-07-18,"2017-07-18 17:29:00",portiz,743
  186. 127,2017-07-11,"2017-07-11 22:40:32",jgomez,850
  187. 128,2017-07-13,"2017-07-13 02:50:19",jgomez,2065
  188. 129,2017-07-06,"2017-07-06 23:53:43",jgonzalez,3299
  189. 130,2017-07-23,"2017-07-23 11:35:21",jgonzalez,3563
  190. 131,2017-07-02,"2017-07-02 08:24:03",mmartos,1180
  191. 132,2017-07-14,"2017-07-14 23:13:12",rpizarro,2254
  192. 133,2017-07-29,"2017-07-29 09:57:52",jgomez,1345
  193. 134,2017-07-08,"2017-07-08 10:53:31",mmunios,661
  194. 135,2017-07-05,"2017-07-05 03:52:49",omartinez,1982
  195. 136,2017-07-24,"2017-07-24 05:05:21",palvarado,3417
  196. 137,2017-07-12,"2017-07-12 04:17:40",jgomez,1215
  197. 138,2017-07-05,"2017-07-05 08:58:51",portiz,4779
  198. 139,2017-07-13,"2017-07-13 17:35:47",palvarado,684
  199. 140,2017-07-06,"2017-07-06 17:29:29",cperez,3728
  200. 141,2017-07-09,"2017-07-09 02:20:12",palvarado,2148
  201. 142,2017-07-16,"2017-07-16 04:32:02",jgonzalez,814
  202. 143,2017-07-11,"2017-07-11 13:19:59",sreyes,1227
  203. 144,2017-07-04,"2017-07-04 01:30:52",jgomez,5593
  204. 145,2017-07-09,"2017-07-09 21:29:42",jhernandez,4071
  205. 146,2017-07-04,"2017-07-04 16:22:15",portiz,3102
  206. 147,2017-07-13,"2017-07-13 22:48:38",avillarrea,3941
  207. 148,2017-07-30,"2017-07-30 22:05:11",palvarado,1109
  208. 149,2017-07-11,"2017-07-11 11:37:09",mlopez,3941
  209. 150,2017-07-19,"2017-07-19 09:43:23",jhernandez,4248
  210. 151,2017-07-20,"2017-07-20 05:31:22",jgomez,1604
  211. 152,2017-07-30,"2017-07-30 11:37:45",bbermudez,3210
  212. 153,2017-07-17,"2017-07-17 21:23:01",jcabral,3186
  213. 154,2017-07-20,"2017-07-20 07:12:12",portiz,755
  214. 155,2017-07-21,"2017-07-21 03:35:33",jhernandez,1956
  215. 156,2017-07-05,"2017-07-05 06:19:57",avillarrea,991
  216. 157,2017-07-14,"2017-07-14 05:11:03",rpizarro,1038
  217. 158,2017-07-15,"2017-07-15 18:21:23",avillarrea,743
  218. 159,2017-07-06,"2017-07-06 16:57:54",omartinez,3587
  219. 160,2017-07-28,"2017-07-28 11:22:32",mmunios,3370
  220. 161,2017-07-22,"2017-07-22 05:58:28",portiz,3547
  221. 162,2017-07-25,"2017-07-25 16:27:43",jgomez,1369
  222. 163,2017-07-27,"2017-07-27 02:42:36",sreyes,896
  223. 164,2017-07-29,"2017-07-29 04:20:38",mlopez,1109
  224. 165,2017-07-28,"2017-07-28 03:11:53",rpizarro,4578
  225. 166,2017-07-21,"2017-07-21 04:37:10",jcabral,885
  226. 167,2017-07-02,"2017-07-02 23:18:44",avillarrea,3115
  227. 168,2017-07-26,"2017-07-26 18:52:39",omartinez,814
  228. 169,2017-07-25,"2017-07-25 21:19:15",palvarado,1782
  229. 170,2017-07-30,"2017-07-30 05:34:31",sreyes,1699
  230. 171,2017-07-16,"2017-07-16 17:55:06",mmartos,991
  231. 172,2017-07-05,"2017-07-05 16:21:26",jcabral,1585
  232. 173,2017-07-09,"2017-07-09 00:54:05",jgomez,826
  233. 174,2017-07-09,"2017-07-09 00:09:34",jgonzalez,4661
  234. 175,2017-07-02,"2017-07-02 22:18:26",mmunios,4578
  235. 176,2017-07-16,"2017-07-16 01:51:02",jcabral,2608
  236. 177,2017-07-27,"2017-07-27 10:14:02",mmartos,2572
  237. 178,2017-07-01,"2017-07-01 03:44:29",avillarrea,4661
  238. 179,2017-07-17,"2017-07-17 01:31:43",avillarrea,1014
  239. 180,2017-07-22,"2017-07-22 02:51:20",bbermudez,4460
  240. 181,2017-07-05,"2017-07-05 00:23:29",avillarrea,968
  241. 182,2017-07-18,"2017-07-18 17:39:47",mlopez,1522
  242. 183,2017-07-24,"2017-07-24 15:15:35",mmunios,1888
  243. 184,2017-07-19,"2017-07-19 20:31:39",mmunios,1227
  244. 185,2017-07-25,"2017-07-25 02:11:41",mlopez,3264
  245. 186,2017-07-20,"2017-07-20 21:30:33",rpizarro,1553
  246. 187,2017-07-27,"2017-07-27 23:02:26",mmunios,1726
  247. 188,2017-07-10,"2017-07-10 18:03:31",cperez,767
  248. 189,2017-07-27,"2017-07-27 11:30:26",portiz,3198
  249. 190,2017-07-03,"2017-07-03 15:12:00",bbermudez,2159
  250. 191,2017-07-22,"2017-07-22 11:19:28",portiz,4366
  251. 192,2017-07-27,"2017-07-27 17:27:30",portiz,2324
  252. 193,2017-07-21,"2017-07-21 11:15:11",portiz,2452
  253. 194,2017-07-18,"2017-07-18 20:25:58",palvarado,4413
  254. 195,2017-07-02,"2017-07-02 13:41:03",mmartos,5664
  255. 196,2017-07-08,"2017-07-08 23:31:18",palvarado,5782
  256. 197,2017-07-30,"2017-07-30 03:51:35",mmunios,1746
  257. 198,2017-07-11,"2017-07-11 07:42:54",jgonzalez,1224
  258. 199,2017-07-08,"2017-07-08 16:40:11",cperez,942
  259. 200,2017-07-26,"2017-07-26 10:39:06",palvarado,2452
  260. 201,2017-07-13,"2017-07-13 05:55:50",sreyes,873
  261. 202,2017-07-21,"2017-07-21 00:22:56",mmunios,3186
  262. 203,2017-07-11,"2017-07-11 13:21:24",sreyes,624
  263. 204,2017-07-05,"2017-07-05 10:54:58",jgonzalez,1699
  264. 205,2017-07-07,"2017-07-07 04:22:10",rpizarro,2218
  265. 206,2017-07-08,"2017-07-08 08:17:47",jgonzalez,3610
  266. 207,2017-07-06,"2017-07-06 12:29:00",jgomez,2092
  267. 208,2017-07-09,"2017-07-09 15:40:45",palvarado,1109
  268. 209,2017-07-25,"2017-07-25 06:10:35",omartinez,2407
  269. 210,2017-07-22,"2017-07-22 19:55:58",mmartos,1144
  270. 211,2017-07-20,"2017-07-20 19:56:01",omartinez,1910
  271. 212,2017-07-07,"2017-07-07 19:43:13",sreyes,4130
  272. 213,2017-07-28,"2017-07-28 09:51:59",palvarado,4130
  273. 214,2017-07-06,"2017-07-06 02:08:34",mlopez,684
  274. 215,2017-07-03,"2017-07-03 04:15:36",jgonzalez,1109
  275. 216,2017-07-14,"2017-07-14 09:36:16",mmartos,2419
  276. 217,2017-07-18,"2017-07-18 12:10:12",jgomez,1215
  277. 218,2017-07-01,"2017-07-01 04:07:30",bbermudez,2242
  278. 219,2017-07-06,"2017-07-06 04:09:58",mmartos,1392
  279. 220,2017-07-26,"2017-07-26 10:00:32",jhernandez,2074
  280. 221,2017-07-20,"2017-07-20 22:11:45",bbermudez,2832
  281. 222,2017-07-04,"2017-07-04 04:35:01",sreyes,967
  282. 223,2017-07-14,"2017-07-14 01:47:51",avillarrea,2242
  283. 224,2017-07-14,"2017-07-14 14:25:18",avillarrea,1091
  284. 225,2017-07-13,"2017-07-13 21:17:12",jhernandez,1732
  285. 226,2017-07-28,"2017-07-28 17:15:34",mmartos,661
  286. 227,2017-07-23,"2017-07-23 06:06:17",portiz,1558
  287. 228,2017-07-01,"2017-07-01 19:18:27",rpizarro,1510
  288. 229,2017-07-11,"2017-07-11 20:44:54",jcabral,2655
  289. 230,2017-07-30,"2017-07-30 00:35:33",omartinez,2525
  290. 231,2017-07-19,"2017-07-19 13:43:08",jcabral,932
  291. 232,2017-07-29,"2017-07-29 03:07:00",cperez,2127
  292. 233,2017-07-30,"2017-07-30 07:35:12",omartinez,1604
  293. 234,2017-07-12,"2017-07-12 07:25:02",palvarado,4472
  294. 235,2017-07-11,"2017-07-11 19:46:04",sreyes,1091
  295. 236,2017-07-25,"2017-07-25 16:50:56",palvarado,1115
  296. 237,2017-07-11,"2017-07-11 22:36:01",omartinez,1227
  297. 238,2017-07-08,"2017-07-08 21:40:09",portiz,4307
  298. 239,2017-07-09,"2017-07-09 07:20:24",jhernandez,4434
  299. 240,2017-07-01,"2017-07-01 22:54:33",omartinez,1956
  300. 241,2017-07-15,"2017-07-15 11:03:02",mmunios,3587
  301. 242,2017-07-03,"2017-07-03 04:43:24",avillarrea,1416
  302. 243,2017-07-20,"2017-07-20 10:18:31",mmartos,4508
  303. 244,2017-07-14,"2017-07-14 19:10:05",mmartos,848
  304. 245,2017-07-17,"2017-07-17 11:39:04",rpizarro,3587
  305. 246,2017-07-28,"2017-07-28 22:02:46",bbermudez,5772
  306. 247,2017-07-13,"2017-07-13 11:10:52",rpizarro,1817
  307. 248,2017-07-20,"2017-07-20 02:45:23",jgomez,1310
  308. 249,2017-07-06,"2017-07-06 22:27:45",jcabral,1534
  309. 250,2017-07-29,"2017-07-29 22:49:20",mmartos,1982
  310. 251,2017-07-22,"2017-07-22 01:01:44",jcabral,1475
  311. 252,2017-07-11,"2017-07-11 00:40:00",jgomez,1817
  312. 253,2017-07-10,"2017-07-10 21:14:25",omartinez,2452
  313. 254,2017-07-28,"2017-07-28 07:55:51",mmunios,1829
  314. 255,2017-07-05,"2017-07-05 13:44:04",jcabral,555
  315. 256,2017-07-13,"2017-07-13 04:35:34",jhernandez,944
  316. 257,2017-07-25,"2017-07-25 01:47:19",sreyes,2207
  317. 258,2017-07-05,"2017-07-05 13:11:47",rpizarro,1237
  318. 259,2017-07-23,"2017-07-23 03:42:15",mmartos,2104
  319. 260,2017-07-23,"2017-07-23 05:52:21",bbermudez,991
  320. 261,2017-07-16,"2017-07-16 00:23:37",bbermudez,1085
  321. 262,2017-07-22,"2017-07-22 12:44:09",mlopez,1086
  322. 263,2017-07-05,"2017-07-05 20:30:20",mlopez,2112
  323. 264,2017-07-02,"2017-07-02 19:01:10",jcabral,1628
  324. 265,2017-07-07,"2017-07-07 17:50:11",cperez,1770
  325. 266,2017-07-19,"2017-07-19 13:00:20",sreyes,1982
  326. 267,2017-07-23,"2017-07-23 03:54:20",cperez,1794
  327. 268,2017-07-30,"2017-07-30 06:12:58",jcabral,1392
  328. 269,2017-07-09,"2017-07-09 16:33:54",portiz,1746
  329. 270,2017-07-02,"2017-07-02 02:24:02",jcabral,3166
  330. 271,2017-07-09,"2017-07-09 02:55:39",jgomez,1227
  331. 272,2017-07-22,"2017-07-22 16:00:40",mlopez,5718
  332. 273,2017-07-09,"2017-07-09 12:08:52",omartinez,1428
  333. 274,2017-07-10,"2017-07-10 16:15:37",cperez,1593
  334. 275,2017-07-09,"2017-07-09 09:40:30",jgomez,3587
  335. 276,2017-07-01,"2017-07-01 05:53:30",jcabral,4920
  336. 277,2017-07-04,"2017-07-04 13:12:00",bbermudez,4319
  337. 278,2017-07-24,"2017-07-24 08:29:18",jgomez,1475
  338. 279,2017-07-05,"2017-07-05 02:09:45",mlopez,1605
  339. 280,2017-07-04,"2017-07-04 18:36:28",bbermudez,1085
  340. 281,2017-07-02,"2017-07-02 19:17:46",jhernandez,2030
  341. 282,2017-07-24,"2017-07-24 23:57:57",cperez,1321
  342. 283,2017-07-26,"2017-07-26 14:28:38",jgomez,684
  343. 284,2017-07-22,"2017-07-22 07:05:54",jgonzalez,3417
  344. 285,2017-07-19,"2017-07-19 11:41:33",avillarrea,1038
  345. 286,2017-07-15,"2017-07-15 10:33:42",mlopez,1415
  346. 287,2017-07-12,"2017-07-12 14:16:15",cperez,1847
  347. 288,2017-07-01,"2017-07-01 00:20:46",mmartos,5310
  348. 289,2017-07-16,"2017-07-16 07:24:57",mlopez,3776
  349. 290,2017-07-25,"2017-07-25 18:07:45",jgomez,1934
  350. 291,2017-07-09,"2017-07-09 12:41:59",portiz,4656
  351. 292,2017-07-03,"2017-07-03 12:36:31",mmartos,1817
  352. 293,2017-07-24,"2017-07-24 14:34:10",rpizarro,3434
  353. 294,2017-07-05,"2017-07-05 22:46:44",omartinez,4718
  354. 295,2017-07-25,"2017-07-25 14:09:26",jhernandez,4874
  355. 296,2017-07-20,"2017-07-20 12:13:19",jcabral,4519
  356. 297,2017-07-08,"2017-07-08 15:23:44",mmartos,2064
  357. 298,2017-07-10,"2017-07-10 08:53:07",sreyes,2973
  358. 299,2017-07-21,"2017-07-21 03:40:54",omartinez,4296
  359. 300,2017-07-25,"2017-07-25 10:00:16",jcabral,2596
  360. 301,2017-07-09,"2017-07-09 22:13:46",jgomez,1799
  361. 302,2017-07-09,"2017-07-09 11:38:11",cperez,1698
  362. 303,2017-07-24,"2017-07-24 05:28:01",avillarrea,3275
  363. 304,2017-07-25,"2017-07-25 18:05:10",jgomez,5095
  364. 305,2017-07-24,"2017-07-24 20:16:02",omartinez,4391
  365. 306,2017-07-17,"2017-07-17 00:33:07",mmartos,1723
  366. 307,2017-07-04,"2017-07-04 23:21:44",portiz,6338
  367. 308,2017-07-01,"2017-07-01 23:25:27",omartinez,3269
  368. 309,2017-07-09,"2017-07-09 14:25:42",mmunios,5211
  369. 310,2017-07-22,"2017-07-22 14:45:31",avillarrea,1522
  370. 311,2017-07-07,"2017-07-07 13:41:17",sreyes,4461
  371. 312,2017-07-22,"2017-07-22 20:19:27",mlopez,5925
  372. 313,2017-07-13,"2017-07-13 04:32:50",palvarado,4697
  373. 314,2017-07-08,"2017-07-08 13:01:59",jcabral,6442
  374. 315,2017-07-30,"2017-07-30 00:21:46",omartinez,4838
  375. 316,2017-07-19,"2017-07-19 09:21:54",rpizarro,3905
  376. 317,2017-07-05,"2017-07-05 11:31:43",mmunios,3003
  377. 318,2017-07-22,"2017-07-22 04:13:44",jhernandez,2808
  378. 319,2017-07-29,"2017-07-29 15:25:33",omartinez,4538
  379. 320,2017-07-21,"2017-07-21 23:18:26",jcabral,1805
  380. 321,2017-07-11,"2017-07-11 19:01:46",rpizarro,3127
  381. 322,2017-07-03,"2017-07-03 22:26:29",jhernandez,1911
  382. 323,2017-07-24,"2017-07-24 19:13:09",portiz,2901
  383. 324,2017-07-21,"2017-07-21 21:45:52",omartinez,3570
  384. 325,2017-07-02,"2017-07-02 19:38:58",jgonzalez,1298
  385. 326,2017-07-26,"2017-07-26 03:21:26",sreyes,2266
  386. 327,2017-07-11,"2017-07-11 02:14:58",portiz,2065
  387. 328,2017-07-29,"2017-07-29 08:44:07",mmartos,3269
  388. 329,2017-07-11,"2017-07-11 13:23:36",cperez,4342
  389. 330,2017-07-03,"2017-07-03 10:11:01",bbermudez,5617
  390. 331,2017-07-30,"2017-07-30 02:19:08",sreyes,3280
  391. 332,2017-07-22,"2017-07-22 16:15:18",cperez,743
  392. 333,2017-07-06,"2017-07-06 05:24:13",bbermudez,1817
  393. 334,2017-07-02,"2017-07-02 04:27:01",palvarado,1003
  394. 335,2017-07-29,"2017-07-29 14:40:01",palvarado,1275
  395. 336,2017-07-08,"2017-07-08 22:04:10",bbermudez,873
  396. 337,2017-07-13,"2017-07-13 21:51:12",avillarrea,737
  397. 338,2017-07-10,"2017-07-10 00:02:40",rpizarro,1156
  398. 339,2017-07-13,"2017-07-13 11:23:00",mmunios,1248
  399. 340,2017-07-02,"2017-07-02 05:08:12",portiz,4696
  400. 341,2017-07-04,"2017-07-04 17:14:30",portiz,1296
  401. 342,2017-07-16,"2017-07-16 14:04:46",palvarado,2053
  402. 343,2017-07-20,"2017-07-20 20:38:37",mmartos,968
  403. 344,2017-07-01,"2017-07-01 20:13:02",omartinez,696
  404. 345,2017-07-08,"2017-07-08 21:21:35",jcabral,5310
  405. 346,2017-07-10,"2017-07-10 03:09:45",portiz,968
  406. 347,2017-07-21,"2017-07-21 23:37:40",palvarado,3824
  407. 348,2017-07-25,"2017-07-25 21:51:18",bbermudez,1888
  408. 349,2017-07-03,"2017-07-03 18:11:45",cperez,4980
  409. 350,2017-07-23,"2017-07-23 21:03:40",jgomez,684
  410. 351,2017-07-28,"2017-07-28 20:23:58",omartinez,1250
  411. 352,2017-07-03,"2017-07-03 18:23:07",avillarrea,1782
  412. 353,2017-07-25,"2017-07-25 12:18:09",mlopez,2289
  413. 354,2017-07-16,"2017-07-16 00:38:22",mmartos,1817
  414. 355,2017-07-27,"2017-07-27 03:31:33",cperez,2395
  415. 356,2017-07-04,"2017-07-04 16:15:26",palvarado,2112
  416. 357,2017-07-15,"2017-07-15 12:38:46",portiz,849
  417. 358,2017-07-17,"2017-07-17 03:34:21",cperez,4696
  418. 359,2017-07-09,"2017-07-09 16:53:18",bbermudez,2289
  419. 360,2017-07-05,"2017-07-05 08:50:59",mmunios,2001
  420. 361,2017-07-24,"2017-07-24 13:16:45",avillarrea,590
  421. 362,2017-07-06,"2017-07-06 04:19:52",rpizarro,4602
  422. 363,2017-07-19,"2017-07-19 23:24:49",jgomez,6278
  423. 364,2017-07-25,"2017-07-25 14:33:53",portiz,991
  424. 365,2017-07-03,"2017-07-03 19:03:34",jgonzalez,1628
  425. 366,2017-07-21,"2017-07-21 16:43:41",cperez,2136
  426. 367,2017-07-04,"2017-07-04 08:11:51",jcabral,2596
  427. 368,2017-07-06,"2017-07-06 20:18:08",jhernandez,4154
  428. 369,2017-07-28,"2017-07-28 11:32:36",avillarrea,6615
  429. 370,2017-07-29,"2017-07-29 20:49:10",omartinez,1758
  430. 371,2017-07-02,"2017-07-02 19:18:16",jgonzalez,1132
  431. 372,2017-07-30,"2017-07-30 20:58:34",cperez,5664
  432. 373,2017-07-22,"2017-07-22 09:19:30",avillarrea,1581
  433. 374,2017-07-25,"2017-07-25 01:32:37",jhernandez,572
  434. 375,2017-07-07,"2017-07-07 13:55:53",mlopez,4260
  435. 376,2017-07-11,"2017-07-11 02:13:55",cperez,2230
  436. 377,2017-07-09,"2017-07-09 20:26:58",portiz,2702
  437. 378,2017-07-19,"2017-07-19 00:59:00",jhernandez,894
  438. 379,2017-07-11,"2017-07-11 18:44:21",avillarrea,1510
  439. 380,2017-07-30,"2017-07-30 00:49:32",jgonzalez,1357
  440. 381,2017-07-15,"2017-07-15 17:06:48",mlopez,3004
  441. 382,2017-07-29,"2017-07-29 23:11:41",mlopez,4236
  442. 383,2017-07-27,"2017-07-27 14:29:40",jhernandez,2242
  443. 384,2017-07-07,"2017-07-07 01:29:52",rpizarro,1286
  444. 385,2017-07-26,"2017-07-26 23:23:30",mlopez,4555
  445. 386,2017-07-27,"2017-07-27 02:21:56",jcabral,5310
  446. 387,2017-07-02,"2017-07-02 12:07:43",mmartos,3233
  447. 388,2017-07-18,"2017-07-18 03:47:28",portiz,1168
  448. 389,2017-07-06,"2017-07-06 14:02:16",portiz,944
  449. 390,2017-07-06,"2017-07-06 20:31:48",jhernandez,660
  450. 391,2017-07-10,"2017-07-10 12:30:16",mlopez,3422
  451. 392,2017-07-30,"2017-07-30 09:00:32",jgonzalez,4555
  452. 393,2017-07-18,"2017-07-18 10:20:42",portiz,1758
  453. 394,2017-07-24,"2017-07-24 16:41:30",mlopez,3868
  454. 395,2017-07-18,"2017-07-18 16:45:23",portiz,2206
  455. 396,2017-07-09,"2017-07-09 19:11:57",jgomez,3800
  456. 397,2017-07-24,"2017-07-24 23:54:17",jgonzalez,1763
  457. 398,2017-07-05,"2017-07-05 11:18:10",jgomez,1239
  458. 399,2017-07-06,"2017-07-06 02:17:08",jcabral,991
  459. 400,2017-07-07,"2017-07-07 14:29:13",rpizarro,1345
  460. 401,2017-07-18,"2017-07-18 00:47:52",jhernandez,708
  461. 402,2017-07-23,"2017-07-23 09:30:20",portiz,4472
  462. 403,2017-07-29,"2017-07-29 02:53:54",cperez,2773
  463. 404,2017-07-22,"2017-07-22 07:23:33",cperez,1044
  464. 405,2017-07-02,"2017-07-02 21:58:44",portiz,4275
  465. 406,2017-07-03,"2017-07-03 01:36:04",jgonzalez,778
  466. 407,2017-07-03,"2017-07-03 20:03:32",avillarrea,1085
  467. 408,2017-07-20,"2017-07-20 21:27:24",mlopez,4130
  468. 409,2017-07-17,"2017-07-17 14:16:44",palvarado,1829
  469. 410,2017-07-08,"2017-07-08 09:13:39",omartinez,1168
  470. 411,2017-07-07,"2017-07-07 16:22:03",mlopez,2242
  471. 412,2017-07-02,"2017-07-02 14:10:14",bbermudez,696
  472. 413,2017-07-04,"2017-07-04 19:58:43",palvarado,2147
  473. 414,2017-07-24,"2017-07-24 23:31:02",jgonzalez,896
  474. 415,2017-07-01,"2017-07-01 22:25:53",rpizarro,1652
  475. 416,2017-07-06,"2017-07-06 14:57:23",jcabral,3658
  476. 417,2017-07-25,"2017-07-25 13:59:00",bbermudez,2100
  477. 418,2017-07-17,"2017-07-17 10:08:37",cperez,1947
  478. 419,2017-07-09,"2017-07-09 23:35:17",avillarrea,5534
  479. 420,2017-07-16,"2017-07-16 05:39:10",mlopez,1699
  480. 421,2017-07-07,"2017-07-07 09:10:12",jhernandez,944
  481. 422,2017-07-19,"2017-07-19 20:16:19",mmartos,1381
  482. 423,2017-07-26,"2017-07-26 13:21:49",jgomez,1628
  483. 424,2017-07-16,"2017-07-16 18:53:51",bbermudez,966
  484. 425,2017-07-21,"2017-07-21 16:40:24",bbermudez,3245
  485. 426,2017-07-08,"2017-07-08 08:37:09",rpizarro,425
  486. 427,2017-07-07,"2017-07-07 00:41:24",mmartos,2620
  487. 428,2017-07-29,"2017-07-29 01:34:46",mlopez,730
  488. 429,2017-07-08,"2017-07-08 00:47:59",mlopez,1392
  489. 430,2017-07-07,"2017-07-07 04:36:46",palvarado,2360
  490. 431,2017-07-07,"2017-07-07 00:12:47",mmartos,1829
  491. 432,2017-07-24,"2017-07-24 02:22:29",palvarado,894
  492. 433,2017-07-04,"2017-07-04 03:34:44",mlopez,755
  493. 434,2017-07-21,"2017-07-21 23:39:29",mmartos,1050
  494. 435,2017-07-05,"2017-07-05 04:27:29",omartinez,1369
  495. 436,2017-07-28,"2017-07-28 05:57:34",jgomez,1628
  496. 437,2017-07-06,"2017-07-06 17:57:00",mmunios,619
  497. 438,2017-07-07,"2017-07-07 21:09:01",jcabral,2289
  498. 439,2017-07-03,"2017-07-03 04:21:13",jgomez,1109
  499. 440,2017-07-06,"2017-07-06 10:45:19",jgonzalez,2631
  500. 441,2017-07-16,"2017-07-16 08:22:45",avillarrea,2230
  501. 442,2017-07-01,"2017-07-01 21:21:39",cperez,1381
  502. 443,2017-07-27,"2017-07-27 01:32:46",cperez,2808
  503. 444,2017-07-27,"2017-07-27 07:41:38",cperez,1629
  504. 445,2017-07-21,"2017-07-21 20:28:26",jgomez,2655
  505. 446,2017-07-25,"2017-07-25 23:13:32",avillarrea,1900
  506. 447,2017-07-07,"2017-07-07 06:22:26",jgomez,4768
  507. 448,2017-07-19,"2017-07-19 00:18:12",jgonzalez,2077
  508. 449,2017-07-28,"2017-07-28 09:23:30",avillarrea,814
  509. 450,2017-07-13,"2017-07-13 00:35:47",jhernandez,3948
  510. 451,2017-07-22,"2017-07-22 19:43:25",sreyes,3210
  511. 452,2017-07-24,"2017-07-24 00:53:49",omartinez,1628
  512. 453,2017-07-21,"2017-07-21 04:27:20",palvarado,3398
  513. 454,2017-07-16,"2017-07-16 08:38:34",mmartos,1201
  514. 455,2017-07-03,"2017-07-03 21:20:16",rpizarro,3307
  515. 456,2017-07-03,"2017-07-03 08:01:09",jhernandez,3977
  516. 457,2017-07-03,"2017-07-03 01:27:37",jcabral,1876
  517. 458,2017-07-03,"2017-07-03 11:26:01",bbermudez,1486
  518. 459,2017-07-23,"2017-07-23 05:36:52",portiz,823
  519. 460,2017-07-11,"2017-07-11 15:37:09",jcabral,2974
  520. 461,2017-07-11,"2017-07-11 04:57:58",bbermudez,1227
  521. 462,2017-07-29,"2017-07-29 12:46:04",avillarrea,1699
  522. 463,2017-07-29,"2017-07-29 01:27:53",jgomez,4007
  523. 464,2017-07-17,"2017-07-17 13:19:53",rpizarro,708
  524. 465,2017-07-03,"2017-07-03 03:00:15",mmartos,3316
  525. 466,2017-07-23,"2017-07-23 18:27:50",palvarado,1333
  526. 467,2017-07-21,"2017-07-21 17:57:27",rpizarro,767
  527. 468,2017-07-15,"2017-07-15 23:39:44",jgomez,4154
  528. 469,2017-07-20,"2017-07-20 17:06:14",palvarado,944
  529. 470,2017-07-07,"2017-07-07 02:28:14",mmartos,791
  530. 471,2017-07-29,"2017-07-29 04:52:23",jhernandez,2761
  531. 472,2017-07-11,"2017-07-11 09:37:01",cperez,3871
  532. 473,2017-07-08,"2017-07-08 00:38:48",portiz,755
  533. 474,2017-07-04,"2017-07-04 14:12:21",mlopez,1085
  534. 475,2017-07-08,"2017-07-08 08:53:41",cperez,2655
  535. 476,2017-07-06,"2017-07-06 16:06:37",mlopez,1038
  536. 477,2017-07-07,"2017-07-07 14:35:58",jcabral,690
  537. 478,2017-07-19,"2017-07-19 21:58:45",palvarado,1227
  538. 479,2017-07-14,"2017-07-14 00:38:43",omartinez,1487
  539. 480,2017-07-17,"2017-07-17 00:51:28",sreyes,3363
  540. 481,2017-07-12,"2017-07-12 06:18:44",palvarado,1628
  541. 482,2017-07-12,"2017-07-12 06:12:19",jgonzalez,1821
  542. 483,2017-07-28,"2017-07-28 10:41:34",jgomez,4425
  543. 484,2017-07-21,"2017-07-21 02:06:20",sreyes,3083
  544. 485,2017-07-11,"2017-07-11 19:05:42",avillarrea,1062
  545. 486,2017-07-08,"2017-07-08 12:00:49",rpizarro,850
  546. 487,2017-07-28,"2017-07-28 06:12:42",omartinez,1166
  547. 488,2017-07-10,"2017-07-10 15:56:37",portiz,814
  548. 489,2017-07-09,"2017-07-09 03:33:09",jhernandez,2277
  549. 490,2017-07-22,"2017-07-22 03:34:59",palvarado,3469
  550. 491,2017-07-15,"2017-07-15 06:01:44",omartinez,702
  551. 492,2017-07-13,"2017-07-13 14:53:21",portiz,3420
  552. 493,2017-07-08,"2017-07-08 19:03:14",jgonzalez,1086
  553. 494,2017-07-24,"2017-07-24 10:04:57",mlopez,1864
  554. 495,2017-07-30,"2017-07-30 08:38:47",rpizarro,1581
  555. 496,2017-07-30,"2017-07-30 20:37:23",portiz,2832
  556. 497,2017-07-06,"2017-07-06 13:56:29",jcabral,991
  557. 498,2017-07-22,"2017-07-22 16:17:18",jhernandez,920
  558. 499,2017-07-12,"2017-07-12 12:00:16",jgonzalez,1071
  559. 500,2017-07-24,"2017-07-24 00:18:11",jhernandez,1699
  560. 501,2017-07-29,"2017-07-29 23:34:05",mmartos,1275
  561. 502,2017-07-09,"2017-07-09 01:42:35",omartinez,3009
  562. 503,2017-07-23,"2017-07-23 02:35:52",cperez,671
  563. 504,2017-07-04,"2017-07-04 13:40:38",mmartos,920
  564.  
  565. }
  566.  
  567.  
  568. detalleventasvirtuales = {
  569. noventa:number, codigo:string, cantidad:number, precio:number, importe:number
  570.  
  571. 100,100102,1,780,780
  572. 100,200102,2,678,1356
  573. 101,100104,2,890,1780
  574. 101,200104,3,980,2940
  575. 102,100104,1,900,900
  576. 103,100100,1,920,920
  577. 104,100104,1,900,900
  578. 104,200104,3,980,2940
  579. 105,100100,3,920,2760
  580. 106,300102,1,780,780
  581. 106,300104,3,875,2625
  582. 107,300100,1,890,890
  583. 108,300102,1,870,870
  584. 109,300102,2,1864,3728.8
  585. 109,200112,2,330,660.8
  586. 110,200102,1,684,684.4
  587. 110,200112,2,330,660.8
  588. 111,200102,2,684,1368.8
  589. 111,300106,1,1416,1416
  590. 112,100102,2,484,967.6
  591. 112,300114,2,944,1888
  592. 113,200102,1,684,684.4
  593. 113,100118,1,283,283.2
  594. 114,200106,2,378,755.2
  595. 114,300120,1,1443,1443.14
  596. 115,300106,1,1416,1416
  597. 115,200104,2,767,1534
  598. 116,200110,2,289,578.2
  599. 116,100118,2,283,566.4
  600. 117,200110,2,289,578.2
  601. 117,200100,1,649,649
  602. 118,100106,1,413,413
  603. 118,100102,1,484,483.8
  604. 119,300120,2,1443,2886.28
  605. 119,100108,2,142,283.2
  606. 120,300122,2,1723,3445.6
  607. 120,100116,2,142,283.2
  608. 121,300100,2,1829,3658
  609. 121,200108,2,283,566.4
  610. 122,300102,1,1864,1864.4
  611. 122,200116,1,342,342.2
  612. 123,300114,1,944,944
  613. 123,200104,1,767,767
  614. 124,300118,2,401,802.4
  615. 124,200112,1,330,330.4
  616. 125,200100,1,649,649
  617. 125,300110,2,1416,2832
  618. 126,100110,1,401,401.2
  619. 126,200116,1,342,342.2
  620. 127,100116,1,142,141.6
  621. 127,200118,2,354,708
  622. 128,300110,1,1416,1416
  623. 128,200100,1,649,649
  624. 129,100106,1,413,413
  625. 129,300120,2,1443,2886.28
  626. 130,300108,2,1640,3280.4
  627. 130,100116,2,142,283.2
  628. 131,100100,1,413,413
  629. 131,200104,1,767,767
  630. 132,100112,1,531,531
  631. 132,300122,1,1723,1722.8
  632. 133,200102,1,684,684.4
  633. 133,200114,2,330,660.8
  634. 134,100108,2,142,283.2
  635. 134,200106,1,378,377.6
  636. 135,200100,2,649,1298
  637. 135,200220,2,342,684.4
  638. 136,300120,2,1443,2886.28
  639. 136,100112,1,531,531
  640. 137,200104,1,767,767
  641. 137,100104,1,448,448.4
  642. 138,300104,1,1947,1947
  643. 138,300110,2,1416,2832
  644. 139,300118,1,401,401.2
  645. 139,200108,1,283,283.2
  646. 140,100104,1,448,448.4
  647. 140,300108,2,1640,3280.4
  648. 141,100100,2,413,826
  649. 141,300112,2,661,1321.6
  650. 142,100102,1,484,483.8
  651. 142,200112,1,330,330.4
  652. 143,100100,2,413,826
  653. 143,100110,1,401,401.2
  654. 144,300102,2,1864,3728.8
  655. 144,300102,1,1864,1864.4
  656. 145,300100,2,1829,3658
  657. 145,100106,1,413,413
  658. 146,100120,1,270,270.22
  659. 146,300110,2,1416,2832
  660. 147,200114,2,330,660.8
  661. 147,300108,2,1640,3280.4
  662. 148,200108,1,283,283.2
  663. 148,100100,2,413,826
  664. 149,100108,2,142,283.2
  665. 149,300100,2,1829,3658
  666. 150,300122,2,1723,3445.6
  667. 150,100110,2,401,802.4
  668. 151,100110,2,401,802.4
  669. 151,100110,2,401,802.4
  670. 152,200106,1,378,377.6
  671. 152,300110,2,1416,2832
  672. 153,300106,2,1416,2832
  673. 153,200118,1,354,354
  674. 154,200116,1,342,342.2
  675. 154,100106,1,413,413
  676. 155,100120,2,270,540.44
  677. 155,300106,1,1416,1416
  678. 156,100100,1,413,413
  679. 156,200110,2,289,578.2
  680. 157,200114,1,330,330.4
  681. 157,200118,2,354,708
  682. 158,100106,1,413,413
  683. 158,200114,1,330,330.4
  684. 159,300106,2,1416,2832
  685. 159,200106,2,378,755.2
  686. 160,300120,2,1443,2886.28
  687. 160,100102,1,484,483.8
  688. 161,300120,2,1443,2886.28
  689. 161,200114,2,330,660.8
  690. 162,300118,1,401,401.2
  691. 162,100102,2,484,967.6
  692. 163,200112,1,330,330.4
  693. 163,100118,2,283,566.4
  694. 164,200112,2,330,660.8
  695. 164,100104,1,448,448.4
  696. 165,300104,2,1947,3894
  697. 165,200116,2,342,684.4
  698. 166,100102,1,484,483.8
  699. 166,300118,1,401,401.2
  700. 167,200108,1,283,283.2
  701. 167,300106,2,1416,2832
  702. 168,100112,1,531,531
  703. 168,100116,2,142,283.2
  704. 169,200100,2,649,1298
  705. 169,100102,1,484,483.8
  706. 170,200108,1,283,283.2
  707. 170,300110,1,1416,1416
  708. 171,100100,1,413,413
  709. 171,200110,2,289,578.2
  710. 172,100108,1,142,141.6
  711. 172,300120,1,1443,1443.14
  712. 173,100108,1,142,141.6
  713. 173,200116,2,342,684.4
  714. 174,300106,2,1416,2832
  715. 174,300100,1,1829,1829
  716. 175,200220,2,342,684.4
  717. 175,300104,2,1947,3894
  718. 176,300112,1,661,660.8
  719. 176,300104,1,1947,1947
  720. 177,300114,2,944,1888
  721. 177,200102,1,684,684.4
  722. 178,300110,2,1416,2832
  723. 178,300100,1,1829,1829
  724. 179,200114,1,330,330.4
  725. 179,200102,1,684,684.4
  726. 180,300100,2,1829,3658
  727. 180,100110,2,401,802.4
  728. 181,100106,2,413,826
  729. 181,100116,1,142,141.6
  730. 182,200106,2,378,755.2
  731. 182,200104,1,767,767
  732. 183,200118,1,354,354
  733. 183,200104,2,767,1534
  734. 184,200112,1,330,330.4
  735. 184,100104,2,448,896.8
  736. 185,300120,2,1443,2886.28
  737. 185,300116,1,378,377.6
  738. 186,300116,1,378,377.6
  739. 186,100114,2,588,1175.28
  740. 187,100116,2,142,283.2
  741. 187,300120,1,1443,1443.14
  742. 188,100118,1,283,283.2
  743. 188,100102,1,484,483.8
  744. 189,300100,1,1829,1829
  745. 189,200102,2,684,1368.8
  746. 190,300100,1,1829,1829
  747. 190,200114,1,330,330.4
  748. 191,200118,2,354,708
  749. 191,300100,2,1829,3658
  750. 192,200102,1,684,684.4
  751. 192,300108,1,1640,1640.2
  752. 193,100114,1,588,587.64
  753. 193,300102,1,1864,1864.4
  754. 194,300100,2,1829,3658
  755. 194,300116,2,378,755.2
  756. 195,300106,2,1416,2832
  757. 195,300110,2,1416,2832
  758. 196,300104,2,1947,3894
  759. 196,300114,2,944,1888
  760. 197,300110,1,1416,1416
  761. 197,200112,1,330,330.4
  762. 198,200102,1,684,684.4
  763. 198,100120,2,270,540.44
  764. 199,100114,1,588,587.64
  765. 199,200118,1,354,354
  766. 200,100114,1,588,587.64
  767. 200,300102,1,1864,1864.4
  768. 201,200220,1,342,342.2
  769. 201,100112,1,531,531
  770. 202,300114,2,944,1888
  771. 202,200100,2,649,1298
  772. 203,200118,1,354,354
  773. 203,100120,1,270,270.22
  774. 204,100104,2,448,896.8
  775. 204,100110,2,401,802.4
  776. 205,300118,2,401,802.4
  777. 205,300106,1,1416,1416
  778. 206,300108,2,1640,3280.4
  779. 206,200112,1,330,330.4
  780. 207,300120,1,1443,1443.14
  781. 207,200100,1,649,649
  782. 208,200104,1,767,767
  783. 208,200220,1,342,342.2
  784. 209,200116,2,342,684.4
  785. 209,300122,1,1723,1722.8
  786. 210,100118,2,283,566.4
  787. 210,200110,2,289,578.2
  788. 211,100114,1,588,587.64
  789. 211,300112,2,661,1321.6
  790. 212,200220,2,342,684.4
  791. 212,300122,2,1723,3445.6
  792. 213,300122,2,1723,3445.6
  793. 213,200116,2,342,684.4
  794. 214,200220,1,342,342.2
  795. 214,200220,1,342,342.2
  796. 215,100110,1,401,401.2
  797. 215,200118,2,354,708
  798. 216,100112,1,531,531
  799. 216,300114,2,944,1888
  800. 217,200104,1,767,767
  801. 217,100104,1,448,448.4
  802. 218,300114,2,944,1888
  803. 218,200118,1,354,354
  804. 219,200118,2,354,708
  805. 219,200220,2,342,684.4
  806. 220,200104,2,767,1534
  807. 220,100120,2,270,540.44
  808. 221,300102,1,1864,1864.4
  809. 221,100102,2,484,967.6
  810. 222,200108,1,283,283.2
  811. 222,200102,1,684,684.4
  812. 223,200104,2,767,1534
  813. 223,200118,2,354,708
  814. 224,100110,2,401,802.4
  815. 224,200110,1,289,289.1
  816. 225,200110,1,289,289.1
  817. 225,300120,1,1443,1443.14
  818. 226,300116,1,378,377.6
  819. 226,100108,2,142,283.2
  820. 227,100108,1,142,141.6
  821. 227,300110,1,1416,1416
  822. 228,200116,2,342,684.4
  823. 228,100100,2,413,826
  824. 229,300100,1,1829,1829
  825. 229,100100,2,413,826
  826. 230,100110,2,401,802.4
  827. 230,300122,1,1723,1722.8
  828. 231,200100,1,649,649
  829. 231,100108,2,142,283.2
  830. 232,300120,1,1443,1443.14
  831. 232,200220,2,342,684.4
  832. 233,300118,2,401,802.4
  833. 233,100110,2,401,802.4
  834. 234,300108,1,1640,1640.2
  835. 234,300110,2,1416,2832
  836. 235,200110,1,289,289.1
  837. 235,300118,2,401,802.4
  838. 236,100100,2,413,826
  839. 236,200110,1,289,289.1
  840. 237,100100,2,413,826
  841. 237,300118,1,401,401.2
  842. 238,300104,2,1947,3894
  843. 238,100106,1,413,413
  844. 239,300104,2,1947,3894
  845. 239,100120,2,270,540.44
  846. 240,100120,2,270,540.44
  847. 240,300106,1,1416,1416
  848. 241,200106,2,378,755.2
  849. 241,300106,2,1416,2832
  850. 242,100102,2,484,967.6
  851. 242,100104,1,448,448.4
  852. 243,300122,2,1723,3445.6
  853. 243,100112,2,531,1062
  854. 244,100120,1,270,270.22
  855. 244,200110,2,289,578.2
  856. 245,300122,1,1723,1722.8
  857. 245,300102,1,1864,1864.4
  858. 246,300120,2,1443,2886.28
  859. 246,300120,2,1443,2886.28
  860. 247,300118,1,401,401.2
  861. 247,300110,1,1416,1416
  862. 248,100102,2,484,967.6
  863. 248,200220,1,342,342.2
  864. 249,200118,2,354,708
  865. 249,100106,2,413,826
  866. 250,200108,2,283,566.4
  867. 250,300106,1,1416,1416
  868. 251,100106,1,413,413
  869. 251,100112,2,531,1062
  870. 252,100110,1,401,401.2
  871. 252,300106,1,1416,1416
  872. 253,300102,1,1864,1864.4
  873. 253,100114,1,588,587.64
  874. 254,300110,1,1416,1416
  875. 254,100106,1,413,413
  876. 255,100100,1,413,413
  877. 255,100116,1,142,141.6
  878. 256,300116,1,378,377.6
  879. 256,100118,2,283,566.4
  880. 257,100102,1,484,483.8
  881. 257,300122,1,1723,1722.8
  882. 258,100114,1,588,587.64
  883. 258,200100,1,649,649
  884. 259,300120,1,1443,1443.14
  885. 259,200114,2,330,660.8
  886. 260,200112,1,330,330.4
  887. 260,200112,2,330,660.8
  888. 261,100116,2,142,283.2
  889. 261,100110,2,401,802.4
  890. 262,200118,2,354,708
  891. 262,200106,1,378,377.6
  892. 263,200104,2,767,1534
  893. 263,200110,2,289,578.2
  894. 264,300118,2,401,802.4
  895. 264,100100,2,413,826
  896. 265,300118,2,401,802.4
  897. 265,100102,2,484,967.6
  898. 266,100118,2,283,566.4
  899. 266,300106,1,1416,1416
  900. 267,200106,1,378,377.6
  901. 267,300110,1,1416,1416
  902. 268,200220,2,342,684.4
  903. 268,200118,2,354,708
  904. 269,200116,2,342,684.4
  905. 269,100112,2,531,1062
  906. 270,300120,1,1443,1443.14
  907. 270,300122,1,1723,1722.8
  908. 271,100118,2,283,566.4
  909. 271,200114,2,330,660.8
  910. 272,300110,2,1416,2832
  911. 272,300120,2,1443,2886.28
  912. 273,100112,1,531,531
  913. 273,100104,2,448,896.8
  914. 274,100106,2,413,826
  915. 274,200104,1,767,767
  916. 275,300104,1,1947,1947
  917. 275,300108,1,1640,1640.2
  918. 276,300108,1,1640,1640.2
  919. 276,300108,2,1640,3280.4
  920. 277,200114,2,330,660.8
  921. 277,300100,2,1829,3658
  922. 278,100100,1,413,413
  923. 278,100112,2,531,1062
  924. 279,300112,2,661,1321.6
  925. 279,100116,2,142,283.2
  926. 280,300118,1,401,401.2
  927. 280,200102,1,684,684.4
  928. 281,200102,2,684,1368.8
  929. 281,300112,1,661,660.8
  930. 282,200108,2,283,566.4
  931. 282,200106,2,378,755.2
  932. 283,200108,1,283,283.2
  933. 283,100110,1,401,401.2
  934. 284,100112,1,531,531
  935. 284,300120,2,1443,2886.28
  936. 285,200220,1,342,342.2
  937. 285,100106,1,413,413
  938. 285,100118,1,283,283.2
  939. 286,200112,1,330,330.4
  940. 286,300118,1,401,401.2
  941. 286,200102,1,684,684.4
  942. 287,200110,1,289,289.1
  943. 287,200112,2,330,660.8
  944. 287,100104,2,448,896.8
  945. 288,100112,2,531,1062
  946. 288,100102,2,484,967.6
  947. 288,300108,2,1640,3280.4
  948. 289,100116,1,142,141.6
  949. 289,300110,2,1416,2832
  950. 289,300118,2,401,802.4
  951. 290,100110,2,401,802.4
  952. 290,200116,2,342,684.4
  953. 290,100104,1,448,448.4
  954. 291,300120,2,1443,2886.28
  955. 291,300114,1,944,944
  956. 291,100100,2,413,826
  957. 292,200114,2,330,660.8
  958. 292,200118,2,354,708
  959. 292,100104,1,448,448.4
  960. 293,300110,1,1416,1416
  961. 293,100102,1,484,483.8
  962. 293,200104,2,767,1534
  963. 294,300122,2,1723,3445.6
  964. 294,200116,2,342,684.4
  965. 294,100114,1,588,587.64
  966. 295,100102,1,484,483.8
  967. 295,300114,1,944,944
  968. 295,300122,2,1723,3445.6
  969. 296,300108,2,1640,3280.4
  970. 296,200110,2,289,578.2
  971. 296,200112,2,330,660.8
  972. 297,100110,2,401,802.4
  973. 297,200110,2,289,578.2
  974. 297,200116,2,342,684.4
  975. 298,200104,2,767,1534
  976. 298,200102,1,684,684.4
  977. 298,200106,2,378,755.2
  978. 299,200110,1,289,289.1
  979. 299,100114,2,588,1175.28
  980. 299,300106,2,1416,2832
  981. 300,200102,2,684,1368.8
  982. 300,100106,2,413,826
  983. 300,100110,1,401,401.2
  984. 301,200110,1,289,289.1
  985. 301,100106,2,413,826
  986. 301,200102,1,684,684.4
  987. 302,200112,2,330,660.8
  988. 302,100120,1,270,270.22
  989. 302,200104,1,767,767
  990. 303,100114,2,588,1175.28
  991. 303,300110,1,1416,1416
  992. 303,200102,1,684,684.4
  993. 304,300112,1,661,660.8
  994. 304,100120,2,270,540.44
  995. 304,300104,2,1947,3894
  996. 305,200114,1,330,330.4
  997. 305,100114,2,588,1175.28
  998. 305,300120,2,1443,2886.28
  999. 306,200116,2,342,684.4
  1000. 306,200112,2,330,660.8
  1001. 306,200106,1,378,377.6
  1002. 307,300120,2,1443,2886.28
  1003. 307,300120,2,1443,2886.28
  1004. 307,100118,2,283,566.4
  1005. 308,100102,2,484,967.6
  1006. 308,300108,1,1640,1640.2
  1007. 308,200112,2,330,660.8
  1008. 309,300100,2,1829,3658
  1009. 309,300116,1,378,377.6
  1010. 309,100114,2,588,1175.28
  1011. 310,100116,2,142,283.2
  1012. 310,100102,1,484,483.8
  1013. 310,200106,2,378,755.2
  1014. 311,100102,2,484,967.6
  1015. 311,200114,2,330,660.8
  1016. 311,300110,2,1416,2832
  1017. 312,300104,2,1947,3894
  1018. 312,100114,1,588,587.64
  1019. 312,300120,1,1443,1443.14
  1020. 313,100108,1,142,141.6
  1021. 313,100100,2,413,826
  1022. 313,300102,2,1864,3728.8
  1023. 314,300106,2,1416,2832
  1024. 314,300108,2,1640,3280.4
  1025. 314,200114,1,330,330.4
  1026. 315,300104,2,1947,3894
  1027. 315,100108,1,142,141.6
  1028. 315,100110,2,401,802.4
  1029. 316,200220,1,342,342.2
  1030. 316,100108,2,142,283.2
  1031. 316,300108,2,1640,3280.4
  1032. 317,200110,1,289,289.1
  1033. 317,200100,2,649,1298
  1034. 317,300106,1,1416,1416
  1035. 318,200108,1,283,283.2
  1036. 318,100110,2,401,802.4
  1037. 318,300122,1,1723,1722.8
  1038. 319,300120,2,1443,2886.28
  1039. 319,100104,2,448,896.8
  1040. 319,200106,2,378,755.2
  1041. 320,200100,1,649,649
  1042. 320,200114,1,330,330.4
  1043. 320,100100,2,413,826
  1044. 321,200104,2,767,1534
  1045. 321,200100,1,649,649
  1046. 321,300114,1,944,944
  1047. 322,200220,2,342,684.4
  1048. 322,100106,2,413,826
  1049. 322,300118,1,401,401.2
  1050. 323,100110,2,401,802.4
  1051. 323,100120,1,270,270.22
  1052. 323,300100,1,1829,1829
  1053. 324,200108,2,283,566.4
  1054. 324,100114,2,588,1175.28
  1055. 324,300100,1,1829,1829
  1056. 325,100102,2,484,967.6
  1057. 325,200114,1,330,330.4
  1058. 326,100104,2,448,896.8
  1059. 326,200102,2,684,1368.8
  1060. 327,300110,1,1416,1416
  1061. 327,200100,1,649,649
  1062. 328,300104,1,1947,1947
  1063. 328,300112,2,661,1321.6
  1064. 329,300104,2,1947,3894
  1065. 329,100104,1,448,448.4
  1066. 330,300104,2,1947,3894
  1067. 330,300122,1,1723,1722.8
  1068. 331,300106,2,1416,2832
  1069. 331,100104,1,448,448.4
  1070. 332,100100,1,413,413
  1071. 332,200112,1,330,330.4
  1072. 333,300110,1,1416,1416
  1073. 333,100110,1,401,401.2
  1074. 334,200220,1,342,342.2
  1075. 334,200112,2,330,660.8
  1076. 335,100104,2,448,896.8
  1077. 335,200106,1,378,377.6
  1078. 336,200116,1,342,342.2
  1079. 336,100112,1,531,531
  1080. 337,100104,1,448,448.4
  1081. 337,200110,1,289,289.1
  1082. 338,200112,1,330,330.4
  1083. 338,100100,2,413,826
  1084. 339,200118,2,354,708
  1085. 339,100120,2,270,540.44
  1086. 340,300106,2,1416,2832
  1087. 340,300102,1,1864,1864.4
  1088. 341,100114,1,588,587.64
  1089. 341,200118,2,354,708
  1090. 342,300108,1,1640,1640.2
  1091. 342,100100,1,413,413
  1092. 343,100100,2,413,826
  1093. 343,100108,1,142,141.6
  1094. 344,200220,1,342,342.2
  1095. 344,200118,1,354,354
  1096. 345,300104,2,1947,3894
  1097. 345,300106,1,1416,1416
  1098. 346,100100,2,413,826
  1099. 346,100116,1,142,141.6
  1100. 347,200106,1,378,377.6
  1101. 347,300122,2,1723,3445.6
  1102. 348,200104,2,767,1534
  1103. 348,200118,1,354,354
  1104. 349,300100,2,1829,3658
  1105. 349,300112,2,661,1321.6
  1106. 350,200108,1,283,283.2
  1107. 350,100110,1,401,401.2
  1108. 351,300118,2,401,802.4
  1109. 351,100104,1,448,448.4
  1110. 352,200100,2,649,1298
  1111. 352,100102,1,484,483.8
  1112. 353,200106,2,378,755.2
  1113. 353,200104,2,767,1534
  1114. 354,300110,1,1416,1416
  1115. 354,100110,1,401,401.2
  1116. 355,300100,1,1829,1829
  1117. 355,200108,2,283,566.4
  1118. 356,300100,1,1829,1829
  1119. 356,200108,1,283,283.2
  1120. 357,100118,2,283,566.4
  1121. 357,100116,2,142,283.2
  1122. 358,300106,1,1416,1416
  1123. 358,300108,2,1640,3280.4
  1124. 359,200100,1,649,649
  1125. 359,300108,1,1640,1640.2
  1126. 360,100114,2,588,1175.28
  1127. 360,100106,2,413,826
  1128. 361,100104,1,448,448.4
  1129. 361,100116,1,142,141.6
  1130. 362,300104,2,1947,3894
  1131. 362,200118,2,354,708
  1132. 363,300122,2,1723,3445.6
  1133. 363,300110,2,1416,2832
  1134. 364,200110,2,289,578.2
  1135. 364,100100,1,413,413
  1136. 365,200100,2,649,1298
  1137. 365,200114,1,330,330.4
  1138. 366,200104,1,767,767
  1139. 366,200102,2,684,1368.8
  1140. 367,100112,2,531,1062
  1141. 367,200104,2,767,1534
  1142. 368,200118,2,354,708
  1143. 368,300122,2,1723,3445.6
  1144. 369,300120,2,1443,2886.28
  1145. 369,300102,2,1864,3728.8
  1146. 370,300106,1,1416,1416
  1147. 370,200116,1,342,342.2
  1148. 371,300118,2,401,802.4
  1149. 371,200112,1,330,330.4
  1150. 372,300110,2,1416,2832
  1151. 372,300110,2,1416,2832
  1152. 373,200100,2,649,1298
  1153. 373,100116,2,142,283.2
  1154. 374,100108,2,142,283.2
  1155. 374,200110,1,289,289.1
  1156. 375,100112,1,531,531
  1157. 375,300102,2,1864,3728.8
  1158. 376,200116,1,342,342.2
  1159. 376,300114,2,944,1888
  1160. 377,300104,1,1947,1947
  1161. 377,200106,2,378,755.2
  1162. 378,200118,1,354,354
  1163. 378,100120,2,270,540.44
  1164. 379,300114,1,944,944
  1165. 379,200108,2,283,566.4
  1166. 380,300114,1,944,944
  1167. 380,100100,1,413,413
  1168. 381,100114,2,588,1175.28
  1169. 381,300100,1,1829,1829
  1170. 382,200116,1,342,342.2
  1171. 382,300104,2,1947,3894
  1172. 383,300110,1,1416,1416
  1173. 383,100100,2,413,826
  1174. 384,200110,2,289,578.2
  1175. 384,200118,2,354,708
  1176. 385,200112,2,330,660.8
  1177. 385,300104,2,1947,3894
  1178. 386,300110,1,1416,1416
  1179. 386,300104,2,1947,3894
  1180. 387,300106,2,1416,2832
  1181. 387,100110,1,401,401.2
  1182. 388,100100,2,413,826
  1183. 388,200116,1,342,342.2
  1184. 389,200114,2,330,660.8
  1185. 389,100108,2,142,283.2
  1186. 390,200112,1,330,330.4
  1187. 390,200112,1,330,330.4
  1188. 391,100116,1,142,141.6
  1189. 391,300108,2,1640,3280.4
  1190. 392,300100,2,1829,3658
  1191. 392,100104,2,448,896.8
  1192. 393,300110,1,1416,1416
  1193. 393,200116,1,342,342.2
  1194. 394,300108,2,1640,3280.4
  1195. 394,100114,1,588,587.64
  1196. 395,200220,1,342,342.2
  1197. 395,300102,1,1864,1864.4
  1198. 396,100102,2,484,967.6
  1199. 396,300106,2,1416,2832
  1200. 397,100114,1,588,587.64
  1201. 397,100114,2,588,1175.28
  1202. 398,100100,1,413,413
  1203. 398,100100,2,413,826
  1204. 399,200114,2,330,660.8
  1205. 399,200112,1,330,330.4
  1206. 400,200220,2,342,684.4
  1207. 400,200114,2,330,660.8
  1208. 401,200112,1,330,330.4
  1209. 401,200106,1,378,377.6
  1210. 402,200110,2,289,578.2
  1211. 402,300104,2,1947,3894
  1212. 403,100106,2,413,826
  1213. 403,300104,1,1947,1947
  1214. 404,200106,2,378,755.2
  1215. 404,200110,1,289,289.1
  1216. 405,300120,1,1443,1443.14
  1217. 405,300110,2,1416,2832
  1218. 406,200114,1,330,330.4
  1219. 406,100104,1,448,448.4
  1220. 407,200112,1,330,330.4
  1221. 407,300116,2,378,755.2
  1222. 408,300122,2,1723,3445.6
  1223. 408,200220,2,342,684.4
  1224. 409,300106,1,1416,1416
  1225. 409,100100,1,413,413
  1226. 410,300116,2,378,755.2
  1227. 410,100100,1,413,413
  1228. 411,300100,1,1829,1829
  1229. 411,100106,1,413,413
  1230. 412,100100,1,413,413
  1231. 412,100116,2,142,283.2
  1232. 413,300102,1,1864,1864.4
  1233. 413,100118,1,283,283.2
  1234. 414,200108,2,283,566.4
  1235. 414,200114,1,330,330.4
  1236. 415,100118,1,283,283.2
  1237. 415,200102,2,684,1368.8
  1238. 416,200106,1,378,377.6
  1239. 416,300108,2,1640,3280.4
  1240. 417,200100,2,649,1298
  1241. 417,300118,2,401,802.4
  1242. 418,200102,2,684,1368.8
  1243. 418,200110,2,289,578.2
  1244. 419,300104,2,1947,3894
  1245. 419,300108,1,1640,1640.2
  1246. 420,300114,1,944,944
  1247. 420,200106,2,378,755.2
  1248. 421,100118,2,283,566.4
  1249. 421,200106,1,378,377.6
  1250. 422,100106,1,413,413
  1251. 422,100102,2,484,967.6
  1252. 423,300118,2,401,802.4
  1253. 423,100100,2,413,826
  1254. 424,100114,1,588,587.64
  1255. 424,300116,1,378,377.6
  1256. 425,200100,2,649,1298
  1257. 425,300104,1,1947,1947
  1258. 426,100108,1,142,141.6
  1259. 426,200108,1,283,283.2
  1260. 427,100104,2,448,896.8
  1261. 427,300122,1,1723,1722.8
  1262. 428,100108,1,142,141.6
  1263. 428,100114,1,588,587.64
  1264. 429,200112,1,330,330.4
  1265. 429,100112,2,531,1062
  1266. 430,300110,1,1416,1416
  1267. 430,300114,1,944,944
  1268. 431,100106,1,413,413
  1269. 431,300106,1,1416,1416
  1270. 432,200118,1,354,354
  1271. 432,100120,2,270,540.44
  1272. 433,100110,1,401,401.2
  1273. 433,200118,1,354,354
  1274. 434,200104,1,767,767
  1275. 434,100118,1,283,283.2
  1276. 435,300118,1,401,401.2
  1277. 435,100102,2,484,967.6
  1278. 436,100100,2,413,826
  1279. 436,100110,2,401,802.4
  1280. 437,200112,1,330,330.4
  1281. 437,200110,1,289,289.1
  1282. 438,300114,2,944,1888
  1283. 438,300118,1,401,401.2
  1284. 439,200118,2,354,708
  1285. 439,100110,1,401,401.2
  1286. 440,300104,1,1947,1947
  1287. 440,200102,1,684,684.4
  1288. 441,200108,1,283,283.2
  1289. 441,300104,1,1947,1947
  1290. 442,100100,1,413,413
  1291. 442,100102,2,484,967.6
  1292. 443,300102,1,1864,1864.4
  1293. 443,300114,1,944,944
  1294. 444,100102,2,484,967.6
  1295. 444,200114,2,330,660.8
  1296. 445,300100,1,1829,1829
  1297. 445,100106,2,413,826
  1298. 446,100112,1,531,531
  1299. 446,200102,2,684,1368.8
  1300. 447,300122,2,1723,3445.6
  1301. 447,300112,2,661,1321.6
  1302. 448,300112,2,661,1321.6
  1303. 448,300116,2,378,755.2
  1304. 449,200114,1,330,330.4
  1305. 449,100102,1,484,483.8
  1306. 450,300120,2,1443,2886.28
  1307. 450,100112,2,531,1062
  1308. 451,300106,2,1416,2832
  1309. 451,200106,1,378,377.6
  1310. 452,100106,2,413,826
  1311. 452,300118,2,401,802.4
  1312. 453,200108,2,283,566.4
  1313. 453,300106,2,1416,2832
  1314. 454,100120,2,270,540.44
  1315. 454,200112,2,330,660.8
  1316. 455,300102,1,1864,1864.4
  1317. 455,300120,1,1443,1443.14
  1318. 456,300122,2,1723,3445.6
  1319. 456,100112,1,531,531
  1320. 457,200110,2,289,578.2
  1321. 457,200100,2,649,1298
  1322. 458,100110,2,401,802.4
  1323. 458,200220,2,342,684.4
  1324. 459,100116,2,142,283.2
  1325. 459,100120,2,270,540.44
  1326. 460,300110,2,1416,2832
  1327. 460,100108,1,142,141.6
  1328. 461,200108,2,283,566.4
  1329. 461,300112,1,661,660.8
  1330. 462,200100,2,649,1298
  1331. 462,100110,1,401,401.2
  1332. 463,100114,2,588,1175.28
  1333. 463,300110,2,1416,2832
  1334. 464,300116,1,378,377.6
  1335. 464,200114,1,330,330.4
  1336. 465,100102,1,484,483.8
  1337. 465,300106,2,1416,2832
  1338. 466,300118,2,401,802.4
  1339. 466,100112,1,531,531
  1340. 467,100102,1,484,483.8
  1341. 467,200108,1,283,283.2
  1342. 468,200118,2,354,708
  1343. 468,300122,2,1723,3445.6
  1344. 469,200112,2,330,660.8
  1345. 469,100116,2,142,283.2
  1346. 470,300116,1,378,377.6
  1347. 470,100100,1,413,413
  1348. 471,300102,1,1864,1864.4
  1349. 471,100104,2,448,896.8
  1350. 472,100108,1,142,141.6
  1351. 472,300102,2,1864,3728.8
  1352. 473,100106,1,413,413
  1353. 473,200220,1,342,342.2
  1354. 474,100110,1,401,401.2
  1355. 474,200102,1,684,684.4
  1356. 475,300114,2,944,1888
  1357. 475,200104,1,767,767
  1358. 476,200102,1,684,684.4
  1359. 476,200118,1,354,354
  1360. 477,300118,1,401,401.2
  1361. 477,200110,1,289,289.1
  1362. 478,200108,2,283,566.4
  1363. 478,200112,2,330,660.8
  1364. 479,300112,1,661,660.8
  1365. 479,100100,2,413,826
  1366. 480,300110,1,1416,1416
  1367. 480,300104,1,1947,1947
  1368. 481,200116,2,342,684.4
  1369. 481,300114,1,944,944
  1370. 482,300120,1,1443,1443.14
  1371. 482,300116,1,378,377.6
  1372. 483,100112,1,531,531
  1373. 483,300104,2,1947,3894
  1374. 484,300108,1,1640,1640.2
  1375. 484,300120,1,1443,1443.14
  1376. 485,200220,2,342,684.4
  1377. 485,300116,1,378,377.6
  1378. 486,100116,1,142,141.6
  1379. 486,200118,2,354,708
  1380. 487,200110,2,289,578.2
  1381. 487,100114,1,588,587.64
  1382. 488,200108,1,283,283.2
  1383. 488,100112,1,531,531
  1384. 489,300104,1,1947,1947
  1385. 489,200114,1,330,330.4
  1386. 490,300108,1,1640,1640.2
  1387. 490,300100,1,1829,1829
  1388. 491,100106,1,413,413
  1389. 491,200110,1,289,289.1
  1390. 492,300106,2,1416,2832
  1391. 492,100114,1,588,587.64
  1392. 493,300114,1,944,944
  1393. 493,100108,1,142,141.6
  1394. 494,300118,2,401,802.4
  1395. 494,100112,2,531,1062
  1396. 495,100100,2,413,826
  1397. 495,300116,2,378,755.2
  1398. 496,300114,1,944,944
  1399. 496,300114,2,944,1888
  1400. 497,200100,1,649,649
  1401. 497,200220,1,342,342.2
  1402. 498,200220,1,342,342.2
  1403. 498,200110,2,289,578.2
  1404. 499,100120,2,270,540.44
  1405. 499,100112,1,531,531
  1406. 500,200102,2,684,1368.8
  1407. 500,200112,1,330,330.4
  1408. 501,300116,1,378,377.6
  1409. 501,100104,2,448,896.8
  1410. 502,300108,1,1640,1640.2
  1411. 502,200102,2,684,1368.8
  1412. 503,100110,1,401,401.2
  1413. 503,100120,1,270,270.22
  1414. 504,200110,2,289,578.2
  1415. 504,200220,1,342,342.2
  1416.  
  1417. }
  1418. clientes = {
  1419. cliente:number, paterno:string, materno:string, nombre:string , rfc:string , calleno:string , colonia:number, telefono:string
  1420. 2000 , 'LOPEZ' , 'NUÑEZ' , 'ANDRES' , 'LOPE' , 'DEL AMANECER' , 2 , '103040'
  1421. 2010 , 'JUAREZ' , 'GODINEZ' , 'FABIOLA' , 'FABI' , 'CALLE DEL OLVIDO', 3 , '112345'
  1422. 2030 , 'ORTEGA ' , 'GALINDO' , 'RAUL' , 'ORTE' , 'NEGRETRE' , 1 , '123457'
  1423. 2040 , 'JUAREZ' , 'LOPEZ' , 'ALFREDO' , 'JUAR' , 'PRIV. FORTIN' , 2 , '346765'
  1424. 2050 , 'DOMINGUEZ' , 'FLORES ' , 'ISELA' , 'domi' , 'priv' , 2 , '102032'
  1425. 9131 , 'ALONSO ' , 'HERNANDEZ ' , ' DAGOBERTO' , 'ALHD010512A20', 'pendiente' , 5 , '618842715'
  1426. 12639 , 'ALMEIDA ' , 'MARO ' , ' WENDY' , 'ALMW600319M54', 'pendiente' , 5 , '618175258'
  1427. 15502 , 'ALAMEDA ' , 'SAUCEDO ' , ' ANGEL' , 'ALSA660509A21', 'pendiente' , 4 , '618843245'
  1428. 15553 , 'ALMADA ' , 'SUAREZ ' , ' ANGELICA' , 'ALSA870522A38', 'pendiente' , 4 , '618839776'
  1429. 20365 , 'ARIAS ' , 'JIMENEZ ' , ' LEONEL' , 'ARJL630606J47', 'pendiente' , 4 , '618144778'
  1430. 24115 , 'BARROSO ' , 'SANCHEZ ' , ' JOAQUIN' , 'BASJ600822BAS', 'pendiente' , 4 , '61885893'
  1431. 24688 , 'BAÑALES ' , 'VILLABA ' , ' ISAIAS' , 'BAVI450321V1' , 'pendiente' , 3 , '618151381'
  1432. 27433 , 'BLANCO ' , 'VELASCO ' , ' GERARDO' , 'BLVG860303B16', 'pendiente' , 3 , '61882886'
  1433. 31759 , 'CALVO ' , 'CASTILLA ' , ' AITANA' , 'CACA870223C51', 'pendiente' , 3 , '6188809'
  1434. 32997 , 'CAMACHO ' , 'ARRATIA ' , ' AINHOA' , 'CAAA760728C1' , 'pendiente' , 2 , '618888467'
  1435. 33183 , 'BRETADO ' , 'GOMEZ ' , ' VICTORIA' , 'BRGV750702B36', 'pendiente' , 2 , '618812088'
  1436. 43085 , 'CAMPOS ' , 'MORAN ' , ' NORBERTO' , 'CAMN981028C20', 'pendiente' , 3 , '618897066'
  1437. 45091 , 'CALVO ' , 'URIARTE ' , ' GABRIEL' , 'CAUG660619U8' , 'pendiente' , 3 , '618127256'
  1438. 55959 , 'CONTRERAS ' , 'DIEZ ' , ' RAFAEL' , 'CODR631004D45', 'pendiente' , 2 , '618117282'
  1439. 59714 , 'CRESPO ' , 'GOMEZ ' , ' NADIA' , 'CRGN760118C28', 'pendiente' , 2 , '618834828'
  1440. 65543 , 'DE ' , 'OCA ' , ' ESPINOSA MANUEL', 'DEEM881018DEE', 'pendiente' , 1 , '61884995'
  1441. 67043 , 'DE ' , 'OCA ' , ' NAVARRO AITOR' , 'DENA680814D46', 'pendiente' , 1 , '618854576'
  1442. 71021 , 'DIEZ ' , 'LLAMAZARES ' , ' EKAIN' , 'DILE000901D18', 'pendiente' , 1 , '618869111'
  1443. 77565 , 'DIEZ ' , 'MELGAR ' , ' JOKIN' , 'DIMJ800803D52', 'pendiente' , 3 , '618884410'
  1444. 80835 , 'DURAN ' , 'RUIZ ' , ' ERNESTINA' , 'DURE630911R31', 'pendiente' , 4 , '618191558'
  1445. 86842 , 'FERNANDEZ ' , 'IGLESIAS ' , ' IBON' , 'FEII980305F10', 'pendiente' , 5 , '61889831'
  1446. 89760 , 'FERNANDEZ ' , 'SANTANA ' , ' OLIVIA' , 'FESO800607FES', 'pendiente' , 4 , '61882083'
  1447. 100948 , 'GALINDO ' , 'CONTRERAS ' , ' JOSE' , 'GACJ440211C54', 'pendiente' , 3 , '618148153'
  1448. 107115 , 'GOMEZ ' , 'ALDRETE ' , ' ELAIA' , 'GOAE650214G39', 'pendiente' , 2 , '618823085'
  1449. 111627 , 'GONZALEZ ' , 'GONZALEZ ' , ' AROA' , 'GOGA601210G9' , 'pendiente' , 3 , '618127923'
  1450. 114646 , 'GUTIERREZ ' , 'DEL ' , ' TORO HEGOI' , 'GUDH701119D53', 'pendiente' , 4 , '618147474'
  1451. 115666 , 'GUIJARDO ' , 'CARRILLO ' , ' ANDRES' , 'GUCA901123G17', 'pendiente' , 5 , '618830068'
  1452. 121205 , 'GONZALEZ ' , 'SAUCEDA ' , ' EDUARDO' , 'GOSE540723S34', 'pendiente' , 4 , '618165808'
  1453. 122481 , 'GUERRERO ' , 'PARRA ' , ' TOMAS' , 'GUPT720117G12', 'pendiente' , 3 , '618893427'
  1454. 123106 , 'GUERRERO ' , 'URIARTE ' , ' LUCIO' , 'GUUL840925G38', 'pendiente' , 2 , '618812709'
  1455. 128764 , 'HIGUERA ' , 'BOLAÑOS ' , ' NAIA' , 'HIBN660403H7' , 'pendiente' , 3 , '618836320'
  1456. 130842 , 'HERNANDEZ ' , 'QUINTERO ' , ' EDUARDO' , 'HEQE670203H14', 'pendiente' , 4 , '618867290'
  1457. 133529 , 'IGLESIAS ' , 'ALDAMA ' , ' IAN' , 'IGAI680816I16', 'pendiente' , 5 , '618812617'
  1458. 140210 , 'JUAREZ ' , 'DIAZ ' , ' ELISEO' , 'JUDE090523J26', 'pendiente' , 4 , '61886804'
  1459. 142311 , 'LECHUGA ' , 'DIAZ ' , ' GUILLERMINA' , 'LEDG000416L40', 'pendiente' , 3 , '618840508'
  1460. 144909 , 'LEYVA ' , 'SOLIS ' , ' HUGO' , 'LESH961027L6' , 'pendiente' , 2 , '61887685'
  1461. 156164 , 'MARQUEZ ' , 'BARROSO ' , ' IMELDA' , 'MABI600709B14', 'pendiente' , 3 , '618130247'
  1462. 162263 , 'MARISCAL ' , 'JIMENEZ ' , ' FRANCISCO' , 'MAJF460616J34', 'pendiente' , 4 , '618192742'
  1463. 163261 , 'MARTIN ' , 'PALACIOS ' , ' ARHANE' , 'MAPA681212M31', 'pendiente' , 5 , '618819520'
  1464. 164133 , 'MARIN ' , 'PIÑERA ' , ' EKAITZ' , 'MAPE660711M28', 'pendiente' , 4 , '618834997'
  1465. 170894 , 'MARISCAL ' , 'PELUFO ' , ' OSVALDO' , 'MAPO020910MAP', 'pendiente' , 3 , '61887020'
  1466. 171385 , 'MARTIN ' , 'VIZCARRA ' , ' ALEJANDRA' , 'MAVA010818M57', 'pendiente' , 2 , '618886483'
  1467. 172144 , 'MIGUELEZ ' , 'CAMACHO ' , ' DANIEL' , 'MICD981120M22', 'pendiente' , 1 , '618815489'
  1468. 184135 , 'MORALES ' , 'NEGRETE ' , ' CANDELARIA' , 'MONC640702N8' , 'pendiente' , 1 , '618154365'
  1469. 184817 , 'MOYA ' , 'GALINDO ' , ' LUR' , 'MOGL670529M0' , 'pendiente' , 1 , '618832888'
  1470. 187194 , 'MORA ' , 'ROJAS ' , ' IRIA' , 'MORI660831R17', 'pendiente' , 1 , '618131467'
  1471. 216292 , 'PASCUAL ' , 'VALDERRAMA ' , ' PAULA' , 'PAVP610302V8' , 'pendiente' , 1 , '6181560'
  1472. 223140 , 'PONCE ' , 'SOLIS ' , ' MARTINA' , 'POSM420713S49', 'pendiente' , 1 , '618199930'
  1473. 224555 , 'PIZARRO ' , 'DOMINGUEZ ' , ' CELIA' , 'PIDC880513P54', 'pendiente' , 2 , '618885463'
  1474. 227774 , 'RAMIREZ ' , 'BERUMEN ' , ' IVAN' , 'RABI950226R50', 'pendiente' , 3 , '6188180'
  1475. 228452 , 'PRIETO ' , 'GURROLA ' , ' RUBI' , 'PRGR640630G8' , 'pendiente' , 4 , '6181713'
  1476. 228695 , 'PRIETO ' , 'GALLEGO ' , ' URTZI' , 'PRGU410521G42', 'pendiente' , 5 , '618169492'
  1477. 232664 , 'RAMOS ' , 'GURROLA ' , ' TOMAS' , 'RAGT940410R51', 'pendiente' , 4 , '618828773'
  1478. 235574 , 'ROBLES ' , 'ESTEBAN ' , ' JESUS' , 'ROEJ910701R18', 'pendiente' , 3 , '618869204'
  1479. 252179 , 'SANTOS ' , 'ARRATIA ' , ' LAZARO' , 'SAAL640726A17', 'pendiente' , 4 , '618184955'
  1480. 260186 , 'SANTIAGO ' , 'PEREZ ' , ' JOEL' , 'SAPJ900205S2' , 'pendiente' , 5 , '618889082'
  1481. 264514 , 'SORIANAO ' , 'MONTES ' , ' CLAUDIA' , 'SOMC621026SOM', 'pendiente' , 3 , '61881602'
  1482. 270900 , 'ULLOA ' , 'PRIETO ' , ' ARACELI' , 'ULPA710329U6' , 'pendiente' , 2 , '61887723'
  1483. 282589 , 'VALVERDE ' , 'MARIN ' , ' BERTHA' , 'VAMB790413V10', 'pendiente' , 1 , '61889682'
  1484. 287451 , 'VELAZQUEZ ' , 'FIDALGO ' , ' HAIZEA' , 'VEFH100602V3' , 'pendiente' , 3 , '618862468'
  1485. 289102 , 'VILLEGAS ' , 'COLLINS ' , ' SILVESTRE' , 'VICS640517V3' , 'pendiente' , 4 , '618834254'
  1486. 292865 , 'YESCAS ' , 'NEGRETE ' , ' LUCIANO' , 'YENL930427Y49', 'pendiente' , 2 , '618855804'
  1487. 301796 , 'FERNANDEZ ' , 'MARQUEZ ' , ' IGNACIO' , 'FEMI730203M31', 'pendiente' , 5 , '6781298577'
  1488. 304127 , 'CALVO ' , 'CONTRERAS ' , ' MARITZA' , 'CACM760208C33', 'pendiente' , 4 , '6781300908'
  1489. 319417 , 'PEREZ ' , 'SOLIS ' , ' GUILLERMO' , 'PESG650302S0' , 'pendiente' , 3 , '6781316198'
  1490. 319848 , 'IGLESIAS ' , 'ALDRETE ' , ' MARIA DE LA LUZ', 'IGAM720414A7' , 'pendiente' , 2 , '6781316629'
  1491. 325595 , 'VARGAS ' , 'DEL ' , ' TORO BEÑAT' , 'VADB610915D14', 'pendiente' , 4 , '6781322376'
  1492. 332465 , 'FRANCO ' , 'SIFUENTES ' , ' IRAITZ' , 'FRSI610317S39', 'pendiente' , 3 , '6781329246'
  1493. 334729 , 'LUNA ' , 'BENITEZ ' , ' ALEJANDRO' , 'LUBA850824B41', 'pendiente' , 4 , '6781331510'
  1494. 338211 , 'ALVARADO ' , 'ASTORGA ' , ' REBECA' , 'ALAR870909A44', 'pendiente' , 2 , '6781334992'
  1495. 342608 , 'PRIETO ' , 'SIFUENTES ' , ' ANNE' , 'PRSA861121S53', 'pendiente' , 3 , '6781339389'
  1496. 347725 , 'MARTIN ' , 'FERNANDEZ ' , ' JUAN DE DIOS' , 'MAFJ650728F58', 'pendiente' , 3 , '6781344506'
  1497. 349283 , 'SORIA ' , 'RAMIREZ ' , ' RAYAN' , 'SORR811106R59', 'pendiente' , 3 , '6781346064'
  1498. 356753 , 'CASTRO ' , 'LOAIZA ' , ' ALVARO' , 'CALA730629L10', 'pendiente' , 3 , '6781353534'
  1499. 357452 , 'MORAL ' , 'PASTOR ' , ' MIREN' , 'MOPM871220P11', 'pendiente' , 2 , '6781354233'
  1500. 364391 , 'FUENTES ' , 'GONZALEZ ' , ' PASCUAL' , 'FUGP850707G20', 'pendiente' , 2 , '6781361172'
  1501. 367092 , 'FERNANDEZ ' , 'PIZARRO ' , ' ROBERTO' , 'FEPR790213P22', 'pendiente' , 2 , '6781363873'
  1502. 374471 , 'CONTRERAS ' , 'PRIETO ' , ' MARCO' , 'COPM690910P34', 'pendiente' , 5 , '6781371252'
  1503. 375921 , 'ESTUDILLO ' , 'FERNANDEZ ' , ' ROSENDO' , 'ESFR860422F36', 'pendiente' , 5 , '6781372702'
  1504. 375954 , 'MORA ' , 'BRETADO ' , ' MARINA' , 'MOBM740731B36', 'pendiente' , 4 , '6781372735'
  1505. }
  1506.  
  1507. empleados = {
  1508. noempleado:number ,nombre:string, fechaingreso:date, sueldo:number
  1509. 1,"RAUL GOMEZ",2010-10-10,2600
  1510. 2,"ERNESTO PEREZ",2012-12-12,3200
  1511. 3,"FLABIO GAMKEZ",2014-10-09,3200
  1512. 4,"LOURDES PEREZ",2016-07-09,3200
  1513. 5,"MARIA ARREOLA",2017-04-07,2600
  1514. 6,"SANDRA RUIZ",2017-01-08,2600
  1515. 7,"OLGA MARGARITA LOPEZ",2017-04-09,3200
  1516. 8,"LETICIA VALLES",2017-04-04,3200
  1517. 9,"MARIA DE LA LUZ ORTIZ",2017-08-09,3200
  1518.  
  1519. }
  1520.  
  1521. ventaspresenciales = {
  1522. noventa:number, fecha:date, hora:string, noempleado:number, cliente:number, total:number
  1523. 1,2017-07-29,"2017-07-29 16:15:33",7,115666,1251
  1524. 2,2017-07-09,"2017-07-09 22:25:51",4,24115,1156
  1525. 3,2017-07-19,"2017-07-19 06:35:44",5,338211,1168
  1526. 4,2017-07-18,"2017-07-18 09:43:04",9,80835,2312
  1527. 5,2017-07-19,"2017-07-19 06:53:16",8,15502,1239
  1528. 6,2017-07-19,"2017-07-19 12:12:47",2,252179,2313
  1529. 7,2017-07-15,"2017-07-15 19:46:28",4,121205,624
  1530. 8,2017-07-20,"2017-07-20 15:35:22",4,252179,1298
  1531. 9,2017-07-18,"2017-07-18 12:21:29",5,114646,2360
  1532. 10,2017-07-26,"2017-07-26 16:28:38",3,67043,2360
  1533. 11,2017-07-09,"2017-07-09 03:44:13",1,2000,1097
  1534. 12,2017-07-14,"2017-07-14 11:32:52",6,9131,3175
  1535. 13,2017-07-23,"2017-07-23 23:00:43",4,356753,1416
  1536. 14,2017-07-22,"2017-07-22 02:22:13",4,89760,1770
  1537. 15,2017-07-17,"2017-07-17 18:49:56",7,364391,684
  1538. 16,2017-07-02,"2017-07-02 12:52:39",3,375954,4578
  1539. 17,2017-07-04,"2017-07-04 05:33:59",6,115666,2112
  1540. 18,2017-07-05,"2017-07-05 05:04:17",7,55959,855
  1541. 19,2017-07-18,"2017-07-18 01:32:50",6,2030,2544
  1542. 20,2017-07-14,"2017-07-14 11:57:14",6,89760,1659
  1543. 21,2017-07-15,"2017-07-15 15:48:16",9,216292,4224
  1544. 22,2017-07-16,"2017-07-16 15:00:05",4,304127,1817
  1545. 23,2017-07-16,"2017-07-16 21:44:46",7,375954,1817
  1546. 24,2017-07-24,"2017-07-24 02:10:47",1,24115,3028
  1547. 25,2017-07-27,"2017-07-27 04:58:11",8,162263,4696
  1548. 26,2017-07-13,"2017-07-13 01:54:06",6,65543,1038
  1549. 27,2017-07-01,"2017-07-01 06:39:00",3,128764,1251
  1550. 28,2017-07-15,"2017-07-15 01:18:13",7,332465,1605
  1551. 29,2017-07-16,"2017-07-16 05:46:17",9,287451,1062
  1552. 30,2017-07-03,"2017-07-03 14:00:17",1,128764,1085
  1553. 31,2017-07-06,"2017-07-06 04:41:31",2,171385,1782
  1554. 32,2017-07-24,"2017-07-24 21:28:12",8,264514,1251
  1555. 33,2017-07-16,"2017-07-16 21:39:37",8,15553,2198
  1556. 34,2017-07-22,"2017-07-22 06:08:23",2,170894,613
  1557. 35,2017-07-09,"2017-07-09 18:08:09",1,133529,803
  1558. 36,2017-07-20,"2017-07-20 17:12:20",8,232664,3233
  1559. 37,2017-07-20,"2017-07-20 08:35:25",6,375954,3800
  1560. 38,2017-07-08,"2017-07-08 02:43:00",7,107115,1180
  1561. 39,2017-07-05,"2017-07-05 11:44:08",1,223140,790
  1562. 40,2017-07-14,"2017-07-14 00:56:41",4,338211,3426
  1563. 41,2017-07-26,"2017-07-26 15:47:00",6,122481,4555
  1564. 42,2017-07-09,"2017-07-09 10:05:45",8,172144,684
  1565. 43,2017-07-23,"2017-07-23 00:33:14",8,128764,4082
  1566. 44,2017-07-01,"2017-07-01 09:23:13",1,128764,7316
  1567. 45,2017-07-03,"2017-07-03 09:57:44",6,252179,3563
  1568. 46,2017-07-19,"2017-07-19 19:56:40",6,270900,1883
  1569. 47,2017-07-27,"2017-07-27 19:10:43",1,301796,3587
  1570. 48,2017-07-07,"2017-07-07 14:28:19",3,122481,743
  1571. 49,2017-07-13,"2017-07-13 15:41:33",2,2030,1250
  1572. 50,2017-07-20,"2017-07-20 17:11:31",6,24688,1404
  1573. 51,2017-07-02,"2017-07-02 15:04:54",2,89760,1368
  1574. 52,2017-07-30,"2017-07-30 03:09:36",1,187194,2112
  1575. 53,2017-07-14,"2017-07-14 04:55:34",7,301796,871
  1576. 54,2017-07-04,"2017-07-04 21:53:05",2,24115,4000
  1577. 55,2017-07-14,"2017-07-14 11:31:51",6,71021,1862
  1578. 56,2017-07-17,"2017-07-17 15:26:37",8,20365,1038
  1579. 57,2017-07-11,"2017-07-11 09:05:20",5,367092,3009
  1580. 58,2017-07-14,"2017-07-14 04:53:15",6,163261,4649
  1581. 59,2017-07-01,"2017-07-01 21:31:29",7,31759,2219
  1582. 60,2017-07-19,"2017-07-19 19:29:01",2,163261,1062
  1583. 61,2017-07-28,"2017-07-28 07:29:37",3,227774,3028
  1584. 62,2017-07-14,"2017-07-14 19:34:37",4,144909,4815
  1585. 63,2017-07-23,"2017-07-23 23:20:28",2,59714,894
  1586. 64,2017-07-10,"2017-07-10 14:58:29",3,31759,2218
  1587. 65,2017-07-13,"2017-07-13 06:50:57",2,15553,1310
  1588. 66,2017-07-30,"2017-07-30 10:49:44",2,24688,1215
  1589. 67,2017-07-29,"2017-07-29 23:25:47",5,319417,1910
  1590. 68,2017-07-25,"2017-07-25 13:55:30",5,27433,1345
  1591. 69,2017-07-13,"2017-07-13 00:15:09",4,144909,1414
  1592. 70,2017-07-30,"2017-07-30 20:40:10",9,140210,803
  1593. 71,2017-07-01,"2017-07-01 17:05:10",3,163261,1829
  1594. 72,2017-07-06,"2017-07-06 22:40:04",7,228695,2290
  1595. 73,2017-07-14,"2017-07-14 02:30:37",6,114646,3587
  1596. 74,2017-07-28,"2017-07-28 16:27:39",8,228452,1652
  1597. 75,2017-07-30,"2017-07-30 20:09:56",8,319417,1062
  1598. 76,2017-07-18,"2017-07-18 10:45:27",2,374471,2266
  1599. 77,2017-07-15,"2017-07-15 02:02:28",5,140210,3594
  1600. 78,2017-07-22,"2017-07-22 02:05:54",5,9131,1711
  1601. 79,2017-07-04,"2017-07-04 05:55:52",2,107115,559
  1602. 80,2017-07-05,"2017-07-05 16:58:24",2,347725,4508
  1603. 81,2017-07-21,"2017-07-21 17:08:11",7,33183,730
  1604. 82,2017-07-17,"2017-07-17 12:42:02",7,71021,791
  1605. 83,2017-07-27,"2017-07-27 22:34:56",3,89760,3569
  1606. 84,2017-07-01,"2017-07-01 07:19:30",4,140210,1333
  1607. 85,2017-07-28,"2017-07-28 18:53:35",4,80835,4224
  1608. 86,2017-07-03,"2017-07-03 07:20:29",1,2010,643
  1609. 87,2017-07-08,"2017-07-08 00:34:40",5,142311,4201
  1610. 88,2017-07-14,"2017-07-14 10:39:52",7,171385,2198
  1611. 89,2017-07-20,"2017-07-20 11:56:54",8,216292,2608
  1612. 90,2017-07-09,"2017-07-09 04:02:51",7,270900,1726
  1613. 91,2017-07-14,"2017-07-14 22:33:40",5,67043,2158
  1614. 92,2017-07-24,"2017-07-24 10:07:12",8,325595,1735
  1615. 93,2017-07-24,"2017-07-24 18:39:39",1,123106,954
  1616. 94,2017-07-21,"2017-07-21 14:57:00",9,187194,2004
  1617. 95,2017-07-10,"2017-07-10 21:55:57",4,347725,2217
  1618. 96,2017-07-17,"2017-07-17 23:34:40",7,121205,1864
  1619. 97,2017-07-22,"2017-07-22 05:27:25",7,24115,1510
  1620. 98,2017-07-10,"2017-07-10 21:12:45",5,59714,3464
  1621. 99,2017-07-22,"2017-07-22 04:03:23",7,65543,1930
  1622. 100,2017-07-29,"2017-07-29 01:40:06",8,164133,1746
  1623. 101,2017-07-27,"2017-07-27 23:03:25",1,2000,1368
  1624. 102,2017-07-21,"2017-07-21 16:21:01",4,356753,1275
  1625. 103,2017-07-17,"2017-07-17 14:53:39",9,2010,3634
  1626. 104,2017-07-23,"2017-07-23 04:14:42",4,2000,4342
  1627. 105,2017-07-08,"2017-07-08 20:31:50",9,2010,1726
  1628. 106,2017-07-20,"2017-07-20 15:37:48",9,338211,3588
  1629. 107,2017-07-22,"2017-07-22 20:00:20",8,375954,1109
  1630. 108,2017-07-22,"2017-07-22 09:16:00",3,111627,3681
  1631. 109,2017-07-05,"2017-07-05 04:28:53",5,228695,919
  1632. 110,2017-07-23,"2017-07-23 05:30:54",2,338211,4201
  1633. 111,2017-07-28,"2017-07-28 10:34:31",7,20365,5310
  1634. 112,2017-07-10,"2017-07-10 19:25:14",6,2030,1971
  1635. 113,2017-07-17,"2017-07-17 12:10:12",8,107115,1970
  1636. 114,2017-07-13,"2017-07-13 15:14:26",5,292865,2263
  1637. 115,2017-07-22,"2017-07-22 00:09:48",5,184135,3469
  1638. 116,2017-07-10,"2017-07-10 21:23:39",7,133529,2171
  1639. 117,2017-07-21,"2017-07-21 07:58:42",7,123106,6938
  1640. 118,2017-07-22,"2017-07-22 09:18:00",3,15553,871
  1641. 119,2017-07-11,"2017-07-11 02:40:09",7,67043,6726
  1642. 120,2017-07-10,"2017-07-10 21:26:37",1,144909,2230
  1643. 121,2017-07-10,"2017-07-10 08:49:45",4,140210,1912
  1644. 122,2017-07-15,"2017-07-15 22:23:42",6,2040,2891
  1645. 123,2017-07-29,"2017-07-29 19:33:51",2,156164,944
  1646. 124,2017-07-08,"2017-07-08 23:53:56",8,59714,1381
  1647. 125,2017-07-04,"2017-07-04 00:08:48",8,304127,4342
  1648. 126,2017-07-08,"2017-07-08 11:49:28",5,2050,2006
  1649. 127,2017-07-14,"2017-07-14 18:04:02",3,223140,1935
  1650. 128,2017-07-05,"2017-07-05 17:50:07",4,114646,4413
  1651. 129,2017-07-02,"2017-07-02 00:54:30",6,114646,4366
  1652. 130,2017-07-23,"2017-07-23 19:27:46",9,59714,2478
  1653. 131,2017-07-07,"2017-07-07 02:45:24",7,43085,1935
  1654. 132,2017-07-11,"2017-07-11 18:10:46",7,2050,743
  1655. 133,2017-07-16,"2017-07-16 09:24:45",1,184135,870
  1656. 134,2017-07-12,"2017-07-12 17:39:33",4,364391,2277
  1657. 135,2017-07-11,"2017-07-11 23:28:57",2,171385,932
  1658. 136,2017-07-15,"2017-07-15 17:10:29",9,130842,4472
  1659. 137,2017-07-02,"2017-07-02 06:17:44",7,338211,2466
  1660. 138,2017-07-09,"2017-07-09 01:34:45",8,264514,2311
  1661. 139,2017-07-06,"2017-07-06 16:57:04",9,71021,1428
  1662. 140,2017-07-19,"2017-07-19 10:53:39",3,80835,684
  1663. 141,2017-07-02,"2017-07-02 04:50:44",4,264514,1511
  1664. 142,2017-07-09,"2017-07-09 01:44:11",1,163261,4213
  1665. 143,2017-07-11,"2017-07-11 07:11:05",1,111627,1322
  1666. 144,2017-07-21,"2017-07-21 06:52:12",9,171385,5758
  1667. 145,2017-07-02,"2017-07-02 15:37:41",6,184817,566
  1668. 146,2017-07-05,"2017-07-05 23:13:47",8,45091,3634
  1669. 147,2017-07-30,"2017-07-30 05:53:32",9,31759,1930
  1670. 148,2017-07-12,"2017-07-12 02:40:57",1,114646,4059
  1671. 149,2017-07-28,"2017-07-28 21:24:30",7,55959,1758
  1672. 150,2017-07-01,"2017-07-01 14:00:10",5,292865,4626
  1673. 151,2017-07-22,"2017-07-22 13:02:28",2,319417,2112
  1674. 152,2017-07-12,"2017-07-12 09:12:00",5,375921,1746
  1675. 153,2017-07-07,"2017-07-07 03:33:46",4,2050,520
  1676. 154,2017-07-12,"2017-07-12 09:57:44",4,374471,4720
  1677. 155,2017-07-24,"2017-07-24 10:28:13",4,260186,3257
  1678. 156,2017-07-16,"2017-07-16 07:27:48",5,65543,4295
  1679. 157,2017-07-08,"2017-07-08 06:00:48",9,130842,2667
  1680. 158,2017-07-02,"2017-07-02 05:49:32",3,228695,849
  1681. 159,2017-07-28,"2017-07-28 23:07:21",1,264514,5027
  1682. 160,2017-07-24,"2017-07-24 02:38:22",3,374471,684
  1683. 161,2017-07-04,"2017-07-04 05:09:38",3,24688,2525
  1684. 162,2017-07-06,"2017-07-06 02:15:46",1,24115,1770
  1685. 163,2017-07-23,"2017-07-23 21:02:23",5,71021,6112
  1686. 164,2017-07-05,"2017-07-05 19:41:36",3,367092,2053
  1687. 165,2017-07-08,"2017-07-08 08:45:18",7,184135,1227
  1688. 166,2017-07-04,"2017-07-04 11:00:25",6,31759,1581
  1689. 167,2017-07-09,"2017-07-09 17:17:46",7,32997,3009
  1690. 168,2017-07-30,"2017-07-30 22:54:42",1,172144,3316
  1691. 169,2017-07-04,"2017-07-04 20:53:22",5,107115,968
  1692. 170,2017-07-10,"2017-07-10 15:08:03",5,128764,1935
  1693. 171,2017-07-05,"2017-07-05 03:53:49",7,71021,718
  1694. 172,2017-07-07,"2017-07-07 17:30:32",3,2000,1711
  1695. 173,2017-07-13,"2017-07-13 01:05:31",8,270900,3540
  1696. 174,2017-07-20,"2017-07-20 14:19:31",7,252179,3115
  1697. 175,2017-07-20,"2017-07-20 06:00:12",8,282589,2773
  1698. 176,2017-07-23,"2017-07-23 03:27:34",6,349283,5074
  1699. 177,2017-07-26,"2017-07-26 06:40:53",8,59714,2242
  1700. 178,2017-07-27,"2017-07-27 03:21:49",5,100948,2667
  1701. 179,2017-07-26,"2017-07-26 16:45:36",3,184817,6561
  1702. 180,2017-07-01,"2017-07-01 08:55:57",8,111627,1664
  1703. 181,2017-07-27,"2017-07-27 16:45:56",9,216292,1345
  1704. 182,2017-07-17,"2017-07-17 06:44:58",5,100948,3516
  1705. 183,2017-07-01,"2017-07-01 01:15:20",2,2000,2395
  1706. 184,2017-07-24,"2017-07-24 04:45:20",2,2050,849
  1707. 185,2017-07-09,"2017-07-09 17:06:17",1,115666,1390
  1708. 186,2017-07-04,"2017-07-04 04:55:25",8,100948,968
  1709. 187,2017-07-19,"2017-07-19 21:31:40",9,184135,4390
  1710. 188,2017-07-08,"2017-07-08 16:12:22",3,144909,2289
  1711. 189,2017-07-23,"2017-07-23 16:52:57",7,77565,1038
  1712. 190,2017-07-07,"2017-07-07 08:31:03",2,187194,6561
  1713. 191,2017-07-20,"2017-07-20 07:19:00",8,32997,1585
  1714. 192,2017-07-26,"2017-07-26 16:51:06",9,227774,6726
  1715. 193,2017-07-11,"2017-07-11 03:12:53",8,338211,1239
  1716. 194,2017-07-30,"2017-07-30 19:43:48",4,282589,1333
  1717. 195,2017-07-10,"2017-07-10 04:57:40",9,2010,4177
  1718. 196,2017-07-14,"2017-07-14 12:08:06",2,325595,1321
  1719. 197,2017-07-24,"2017-07-24 10:57:31",7,77565,4224
  1720. 198,2017-07-03,"2017-07-03 04:44:13",1,187194,1900
  1721. 199,2017-07-18,"2017-07-18 04:51:26",9,142311,1935
  1722. 200,2017-07-30,"2017-07-30 10:08:10",7,235574,1585
  1723. 201,2017-07-14,"2017-07-14 03:14:02",1,270900,661
  1724. 202,2017-07-16,"2017-07-16 03:10:47",6,347725,1085
  1725. 203,2017-07-01,"2017-07-01 17:33:53",4,342608,3716
  1726. 204,2017-07-17,"2017-07-17 09:46:08",9,100948,3929
  1727. 205,2017-07-20,"2017-07-20 17:56:57",2,71021,3316
  1728. 206,2017-07-04,"2017-07-04 09:07:57",7,71021,4661
  1729. 207,2017-07-30,"2017-07-30 20:16:35",3,282589,944
  1730. 208,2017-07-26,"2017-07-26 09:38:02",1,107115,968
  1731. 209,2017-07-07,"2017-07-07 11:29:21",5,319417,731
  1732. 210,2017-07-30,"2017-07-30 02:39:19",3,9131,2004
  1733. 211,2017-07-21,"2017-07-21 09:56:56",4,80835,4555
  1734. 212,2017-07-18,"2017-07-18 07:12:03",5,77565,1652
  1735. 213,2017-07-21,"2017-07-21 19:28:48",2,142311,5145
  1736. 214,2017-07-19,"2017-07-19 11:43:09",3,223140,3304
  1737. 215,2017-07-18,"2017-07-18 02:26:15",2,347725,3929
  1738. 216,2017-07-05,"2017-07-05 23:05:15",8,228695,2667
  1739. 217,2017-07-21,"2017-07-21 16:50:05",3,2010,3122
  1740. 218,2017-07-25,"2017-07-25 21:16:16",2,80835,3622
  1741. 219,2017-07-23,"2017-07-23 02:55:23",6,304127,1726
  1742. 220,2017-07-19,"2017-07-19 13:55:30",4,187194,3299
  1743. 221,2017-07-18,"2017-07-18 01:40:34",9,122481,2089
  1744. 222,2017-07-11,"2017-07-11 04:12:13",7,184135,1003
  1745. 223,2017-07-18,"2017-07-18 13:09:07",5,24688,2118
  1746. 224,2017-07-27,"2017-07-27 02:43:24",7,2010,2206
  1747. 225,2017-07-10,"2017-07-10 05:58:48",2,9131,3847
  1748. 226,2017-07-19,"2017-07-19 15:18:45",3,133529,1475
  1749. 227,2017-07-09,"2017-07-09 18:23:36",3,347725,4248
  1750. 228,2017-07-26,"2017-07-26 03:23:30",2,2040,814
  1751. 229,2017-07-16,"2017-07-16 05:26:30",5,55959,1888
  1752. 230,2017-07-29,"2017-07-29 21:05:20",3,334729,1713
  1753. 231,2017-07-08,"2017-07-08 11:13:48",8,140210,1097
  1754. 232,2017-07-22,"2017-07-22 13:08:35",5,228695,2667
  1755. 233,2017-07-02,"2017-07-02 03:56:26",6,357452,2714
  1756. 234,2017-07-27,"2017-07-27 17:01:41",7,111627,3868
  1757. 235,2017-07-26,"2017-07-26 10:26:58",1,156164,683
  1758. 236,2017-07-12,"2017-07-12 20:29:03",4,24115,2691
  1759. 237,2017-07-10,"2017-07-10 17:56:45",1,77565,1180
  1760. 238,2017-07-21,"2017-07-21 11:44:36",3,115666,1062
  1761. 239,2017-07-10,"2017-07-10 13:24:16",8,216292,4130
  1762. 240,2017-07-18,"2017-07-18 02:51:34",4,342608,1593
  1763. 241,2017-07-09,"2017-07-09 15:22:20",3,375954,2690
  1764. 242,2017-07-01,"2017-07-01 18:24:31",9,59714,1109
  1765. 243,2017-07-03,"2017-07-03 00:08:09",3,123106,2001
  1766. 244,2017-07-21,"2017-07-21 17:11:05",6,107115,1215
  1767. 245,2017-07-04,"2017-07-04 05:04:40",8,86842,4035
  1768. 246,2017-07-19,"2017-07-19 19:17:43",5,24688,755
  1769. 247,2017-07-30,"2017-07-30 18:19:38",4,342608,4184
  1770. 248,2017-07-03,"2017-07-03 23:16:45",7,2000,2245
  1771. 249,2017-07-21,"2017-07-21 15:34:02",5,100948,2974
  1772. 250,2017-07-28,"2017-07-28 16:50:46",3,33183,1463
  1773. 251,2017-07-11,"2017-07-11 20:46:01",2,114646,2006
  1774. 252,2017-07-29,"2017-07-29 01:27:54",3,122481,1711
  1775. 253,2017-07-07,"2017-07-07 00:09:41",9,144909,1726
  1776. 254,2017-07-30,"2017-07-30 17:55:25",2,338211,4071
  1777. 255,2017-07-23,"2017-07-23 11:57:47",4,292865,2289
  1778. 256,2017-07-14,"2017-07-14 15:14:08",1,375954,2195
  1779. 257,2017-07-22,"2017-07-22 06:52:07",4,20365,1106
  1780. 258,2017-07-11,"2017-07-11 05:15:56",1,170894,908
  1781. 259,2017-07-26,"2017-07-26 02:00:54",4,32997,3847
  1782. 260,2017-07-13,"2017-07-13 00:46:12",3,304127,1581
  1783. 261,2017-07-26,"2017-07-26 08:11:34",5,140210,566
  1784. 262,2017-07-29,"2017-07-29 06:23:38",8,227774,578
  1785. 263,2017-07-17,"2017-07-17 10:51:27",7,89760,5772
  1786. 264,2017-07-26,"2017-07-26 04:20:15",9,71021,1797
  1787. 265,2017-07-08,"2017-07-08 16:17:27",4,374471,1864
  1788. 266,2017-07-29,"2017-07-29 07:01:21",5,235574,3156
  1789. 267,2017-07-04,"2017-07-04 21:33:52",3,260186,2312
  1790. 268,2017-07-02,"2017-07-02 20:11:40",4,123106,2384
  1791. 269,2017-07-27,"2017-07-27 07:08:57",4,232664,2104
  1792. 270,2017-07-04,"2017-07-04 23:45:22",8,59714,1110
  1793. 271,2017-07-06,"2017-07-06 09:50:53",1,227774,932
  1794. 272,2017-07-24,"2017-07-24 21:41:16",2,2030,2147
  1795. 273,2017-07-07,"2017-07-07 20:06:52",3,184135,2065
  1796. 274,2017-07-06,"2017-07-06 10:38:40",6,232664,2112
  1797. 275,2017-07-18,"2017-07-18 22:26:43",3,107115,1558
  1798. 276,2017-07-22,"2017-07-22 16:25:06",4,55959,1345
  1799. 277,2017-07-25,"2017-07-25 17:15:51",7,356753,1026
  1800. 278,2017-07-19,"2017-07-19 06:54:13",5,2050,973
  1801. 279,2017-07-26,"2017-07-26 06:32:16",3,111627,2206
  1802. 280,2017-07-09,"2017-07-09 19:48:23",9,12639,1286
  1803. 281,2017-07-25,"2017-07-25 04:52:42",1,59714,855
  1804. 282,2017-07-29,"2017-07-29 21:02:16",5,184135,2749
  1805. 283,2017-07-01,"2017-07-01 02:42:58",1,115666,2230
  1806. 284,2017-07-13,"2017-07-13 17:32:23",6,282589,1368
  1807. 285,2017-07-09,"2017-07-09 08:37:19",5,260186,2053
  1808. 286,2017-07-26,"2017-07-26 20:26:14",7,31759,991
  1809. 287,2017-07-09,"2017-07-09 20:12:30",1,24115,5487
  1810. 288,2017-07-17,"2017-07-17 12:15:06",7,163261,1121
  1811. 289,2017-07-30,"2017-07-30 08:08:08",6,349283,1585
  1812. 290,2017-07-29,"2017-07-29 21:34:37",3,287451,1676
  1813. 291,2017-07-23,"2017-07-23 06:10:56",8,235574,1581
  1814. 292,2017-07-05,"2017-07-05 16:04:56",7,338211,2207
  1815. 293,2017-07-01,"2017-07-01 15:09:05",9,235574,1699
  1816. 294,2017-07-06,"2017-07-06 17:51:52",1,301796,7788
  1817. 295,2017-07-28,"2017-07-28 09:08:55",7,338211,920
  1818. 296,2017-07-30,"2017-07-30 07:08:47",2,367092,1298
  1819. 297,2017-07-08,"2017-07-08 05:27:11",8,349283,1227
  1820. 298,2017-07-24,"2017-07-24 11:04:04",5,364391,3516
  1821. 299,2017-07-17,"2017-07-17 10:06:13",1,111627,1876
  1822. 300,2017-07-11,"2017-07-11 03:34:46",4,289102,3735
  1823. 301,2017-07-18,"2017-07-18 17:18:57",1,114646,2198
  1824. 302,2017-07-21,"2017-07-21 22:22:11",2,356753,1227
  1825. 303,2017-07-13,"2017-07-13 19:07:52",9,375921,1605
  1826. 304,2017-07-05,"2017-07-05 12:53:55",1,9131,2242
  1827. 305,2017-07-07,"2017-07-07 21:46:14",2,227774,1109
  1828. 306,2017-07-03,"2017-07-03 23:32:32",2,375921,3228
  1829. 307,2017-07-25,"2017-07-25 01:55:45",5,304127,2950
  1830. 308,2017-07-12,"2017-07-12 09:02:53",8,15553,991
  1831. 309,2017-07-26,"2017-07-26 09:09:44",4,349283,1699
  1832. 310,2017-07-01,"2017-07-01 11:37:28",1,164133,3464
  1833. 311,2017-07-03,"2017-07-03 05:58:35",7,223140,3174
  1834. 312,2017-07-29,"2017-07-29 10:59:16",5,162263,1342
  1835. 313,2017-07-21,"2017-07-21 20:30:39",5,319848,1168
  1836. 314,2017-07-13,"2017-07-13 15:58:23",3,15553,1097
  1837. 315,2017-07-29,"2017-07-29 07:18:03",8,86842,1333
  1838. 316,2017-07-15,"2017-07-15 01:14:05",8,2000,3175
  1839. 317,2017-07-21,"2017-07-21 20:27:57",8,65543,1605
  1840. 318,2017-07-29,"2017-07-29 16:42:48",1,2040,2690
  1841. 319,2017-07-18,"2017-07-18 16:49:36",2,114646,3516
  1842. 320,2017-07-08,"2017-07-08 13:01:40",7,216292,2549
  1843. 321,2017-07-09,"2017-07-09 23:46:31",6,375954,2336
  1844. 322,2017-07-18,"2017-07-18 06:30:43",7,282589,2619
  1845. 323,2017-07-02,"2017-07-02 09:19:10",9,334729,1392
  1846. 324,2017-07-03,"2017-07-03 00:26:29",1,304127,1074
  1847. 325,2017-07-26,"2017-07-26 22:53:14",6,334729,5101
  1848. 326,2017-07-28,"2017-07-28 00:11:51",5,2000,2384
  1849. 327,2017-07-04,"2017-07-04 01:30:27",8,235574,5275
  1850. 328,2017-07-15,"2017-07-15 08:46:33",6,55959,1900
  1851. 329,2017-07-12,"2017-07-12 16:57:31",5,121205,1368
  1852. 330,2017-07-05,"2017-07-05 08:11:16",4,100948,1121
  1853. 331,2017-07-11,"2017-07-11 01:34:34",2,142311,3280
  1854. 332,2017-07-25,"2017-07-25 15:02:52",6,115666,3653
  1855. 333,2017-07-03,"2017-07-03 23:25:07",6,375954,625
  1856. 334,2017-07-09,"2017-07-09 07:11:24",3,332465,637
  1857. 335,2017-07-20,"2017-07-20 07:45:41",9,144909,2277
  1858. 336,2017-07-09,"2017-07-09 00:45:41",4,89760,861
  1859. 337,2017-07-14,"2017-07-14 23:57:08",6,45091,1121
  1860. 338,2017-07-18,"2017-07-18 03:44:37",9,2030,1392
  1861. 339,2017-07-28,"2017-07-28 17:18:49",2,338211,3169
  1862. 340,2017-07-23,"2017-07-23 06:07:34",9,367092,1345
  1863. 341,2017-07-29,"2017-07-29 04:49:26",7,162263,4208
  1864. 342,2017-07-29,"2017-07-29 19:22:03",9,252179,1097
  1865. 343,2017-07-10,"2017-07-10 17:22:25",2,367092,661
  1866. 344,2017-07-18,"2017-07-18 16:15:57",6,184135,4012
  1867. 345,2017-07-06,"2017-07-06 09:00:56",2,144909,566
  1868. 346,2017-07-09,"2017-07-09 16:22:24",4,55959,1145
  1869. 347,2017-07-18,"2017-07-18 01:13:47",6,356753,3570
  1870. 348,2017-07-17,"2017-07-17 00:52:08",1,140210,1532
  1871. 349,2017-07-12,"2017-07-12 17:29:30",6,334729,3658
  1872. 350,2017-07-16,"2017-07-16 20:23:09",7,235574,3587
  1873. 351,2017-07-26,"2017-07-26 07:24:35",1,375954,3233
  1874. 352,2017-07-09,"2017-07-09 13:53:39",4,133529,3729
  1875. 353,2017-07-26,"2017-07-26 01:05:09",5,43085,1511
  1876. 354,2017-07-02,"2017-07-02 16:25:03",9,15502,2018
  1877. 355,2017-07-25,"2017-07-25 06:52:59",1,59714,1414
  1878. 356,2017-07-20,"2017-07-20 01:12:40",4,334729,814
  1879. 357,2017-07-04,"2017-07-04 15:13:11",9,252179,2269
  1880. 358,2017-07-01,"2017-07-01 03:52:57",5,228452,684
  1881. 359,2017-07-17,"2017-07-17 10:39:11",8,357452,1392
  1882. 360,2017-07-01,"2017-07-01 12:24:32",7,338211,1133
  1883. 361,2017-07-25,"2017-07-25 07:25:49",8,2050,2631
  1884. 362,2017-07-17,"2017-07-17 08:30:01",4,375954,3941
  1885. 363,2017-07-01,"2017-07-01 09:37:09",1,224555,1876
  1886. 364,2017-07-11,"2017-07-11 08:04:24",9,332465,4526
  1887. 365,2017-07-15,"2017-07-15 20:50:03",1,121205,2476
  1888. 366,2017-07-26,"2017-07-26 08:44:18",4,338211,1510
  1889. 367,2017-07-23,"2017-07-23 16:17:10",3,133529,4526
  1890. 368,2017-07-30,"2017-07-30 07:58:02",3,356753,2702
  1891. 369,2017-07-20,"2017-07-20 14:04:19",1,31759,2065
  1892. 370,2017-07-28,"2017-07-28 18:37:18",9,2000,284
  1893. 371,2017-07-03,"2017-07-03 17:55:48",5,128764,4071
  1894. 372,2017-07-08,"2017-07-08 17:10:53",7,260186,2497
  1895. 373,2017-07-04,"2017-07-04 11:38:23",9,2010,1929
  1896. 374,2017-07-12,"2017-07-12 18:29:38",7,223140,2077
  1897. 375,2017-07-06,"2017-07-06 11:03:19",5,270900,1785
  1898. 376,2017-07-05,"2017-07-05 09:20:43",9,15502,1310
  1899. 377,2017-07-06,"2017-07-06 01:04:33",1,24688,1628
  1900. 378,2017-07-25,"2017-07-25 12:05:24",7,24688,566
  1901. 379,2017-07-02,"2017-07-02 09:12:41",9,55959,684
  1902. 380,2017-07-13,"2017-07-13 03:16:10",7,27433,378
  1903. 381,2017-07-07,"2017-07-07 20:56:29",5,80835,484
  1904. 382,2017-07-25,"2017-07-25 15:11:10",4,65543,802
  1905. 383,2017-07-29,"2017-07-29 04:43:54",5,332465,566
  1906. 384,2017-07-07,"2017-07-07 06:40:38",3,216292,1443
  1907. 385,2017-07-27,"2017-07-27 09:32:29",5,144909,270
  1908. 386,2017-07-03,"2017-07-03 09:26:52",5,270900,826
  1909. 387,2017-07-14,"2017-07-14 19:01:11",1,184135,588
  1910. 388,2017-07-23,"2017-07-23 17:35:42",4,15553,3658
  1911. 389,2017-07-05,"2017-07-05 20:16:07",2,325595,1298
  1912. 390,2017-07-13,"2017-07-13 15:00:45",8,144909,330
  1913. 391,2017-07-14,"2017-07-14 20:07:18",9,252179,755
  1914. 392,2017-07-28,"2017-07-28 02:56:41",8,20365,1416
  1915. 393,2017-07-21,"2017-07-21 20:26:27",3,235574,767
  1916. 394,2017-07-28,"2017-07-28 02:04:30",2,12639,684
  1917. 395,2017-07-06,"2017-07-06 13:21:15",6,171385,1298
  1918. 396,2017-07-14,"2017-07-14 22:47:31",3,223140,342
  1919. 397,2017-07-06,"2017-07-06 18:30:39",2,12639,1416
  1920. 398,2017-07-08,"2017-07-08 01:20:49",3,184135,802
  1921. 399,2017-07-30,"2017-07-30 03:31:21",1,67043,413
  1922. 400,2017-07-24,"2017-07-24 18:08:17",3,301796,944
  1923. 401,2017-07-23,"2017-07-23 21:10:56",6,287451,588
  1924. 402,2017-07-20,"2017-07-20 19:07:01",7,349283,283
  1925. 403,2017-07-04,"2017-07-04 01:25:09",6,2030,1322
  1926. 404,2017-07-03,"2017-07-03 04:36:02",6,71021,283
  1927. 405,2017-07-11,"2017-07-11 19:06:27",1,375954,661
  1928. 406,2017-07-28,"2017-07-28 03:57:32",4,128764,944
  1929. 407,2017-07-02,"2017-07-02 21:45:52",5,357452,484
  1930. 408,2017-07-05,"2017-07-05 00:50:33",1,107115,283
  1931. 409,2017-07-17,"2017-07-17 22:46:34",6,77565,413
  1932. 410,2017-07-04,"2017-07-04 16:04:55",1,100948,566
  1933. 411,2017-07-20,"2017-07-20 17:08:20",5,292865,1640
  1934. 412,2017-07-21,"2017-07-21 15:58:18",2,356753,684
  1935. 413,2017-07-12,"2017-07-12 08:20:50",3,156164,330
  1936. 414,2017-07-19,"2017-07-19 16:59:38",1,164133,1322
  1937. 415,2017-07-29,"2017-07-29 13:25:13",2,86842,1723
  1938. 416,2017-07-13,"2017-07-13 20:24:59",7,162263,283
  1939. 417,2017-07-26,"2017-07-26 07:50:42",9,270900,1322
  1940. 418,2017-07-30,"2017-07-30 23:05:47",3,123106,802
  1941. 419,2017-07-12,"2017-07-12 10:25:47",3,287451,661
  1942. 420,2017-07-17,"2017-07-17 04:52:14",5,216292,354
  1943. 421,2017-07-17,"2017-07-17 14:30:38",7,140210,283
  1944. 422,2017-07-30,"2017-07-30 14:05:53",7,114646,1888
  1945. 423,2017-07-22,"2017-07-22 08:05:46",9,304127,283
  1946. 424,2017-07-09,"2017-07-09 02:47:05",3,292865,566
  1947. 425,2017-07-16,"2017-07-16 12:40:54",9,319848,708
  1948. 426,2017-07-29,"2017-07-29 21:05:40",2,15553,1062
  1949. 427,2017-07-08,"2017-07-08 13:12:08",6,45091,661
  1950. 428,2017-07-27,"2017-07-27 07:01:42",2,32997,413
  1951. 429,2017-07-12,"2017-07-12 15:12:30",6,133529,3446
  1952. 430,2017-07-17,"2017-07-17 13:15:22",1,338211,3894
  1953. 431,2017-07-11,"2017-07-11 17:15:40",2,2050,378
  1954. 432,2017-07-03,"2017-07-03 12:34:18",5,59714,1416
  1955. 433,2017-07-06,"2017-07-06 11:02:07",8,374471,531
  1956. 434,2017-07-14,"2017-07-14 12:42:57",8,319848,684
  1957. 435,2017-07-02,"2017-07-02 11:31:38",6,216292,755
  1958. 436,2017-07-15,"2017-07-15 12:27:00",6,12639,684
  1959. 437,2017-07-20,"2017-07-20 19:59:05",6,67043,3729
  1960.  
  1961. }
  1962.  
  1963. detalleventaspresenciales = {
  1964. noventa:number, codigo:string, cantidad:number, precio:number, importe:number
  1965. 1,100102,1,484,483.8
  1966. 1,200104,1,767,767
  1967. 2,200112,1,330,330.4
  1968. 2,100100,2,413,826
  1969. 3,300118,1,401,401.2
  1970. 3,200104,1,767,767
  1971. 4,300102,1,1864,1864.4
  1972. 4,100104,1,448,448.4
  1973. 5,100104,2,448,896.8
  1974. 5,200116,1,342,342.2
  1975. 6,100102,1,484,483.8
  1976. 6,300100,1,1829,1829
  1977. 7,200118,1,354,354
  1978. 7,100120,1,270,270.22
  1979. 8,100102,2,484,967.6
  1980. 8,200114,1,330,330.4
  1981. 9,300100,1,1829,1829
  1982. 9,100112,1,531,531
  1983. 10,100100,2,413,826
  1984. 10,200104,2,767,1534
  1985. 11,200108,2,283,566.4
  1986. 11,100112,1,531,531
  1987. 12,300120,2,1443,2886.28
  1988. 12,200110,1,289,289.1
  1989. 13,200114,2,330,660.8
  1990. 13,300116,2,378,755.2
  1991. 14,100110,1,401,401.2
  1992. 14,200102,2,684,1368.8
  1993. 15,100110,1,401,401.2
  1994. 15,100116,2,142,283.2
  1995. 16,300108,2,1640,3280.4
  1996. 16,200100,2,649,1298
  1997. 17,100116,2,142,283.2
  1998. 17,300100,1,1829,1829
  1999. 18,200110,1,289,289.1
  2000. 18,200108,2,283,566.4
  2001. 19,200102,2,684,1368.8
  2002. 19,100114,2,588,1175.28
  2003. 20,100102,1,484,483.8
  2004. 20,100114,2,588,1175.28
  2005. 21,200112,1,330,330.4
  2006. 21,300104,2,1947,3894
  2007. 22,100110,1,401,401.2
  2008. 22,300110,1,1416,1416
  2009. 23,300118,1,401,401.2
  2010. 23,300110,1,1416,1416
  2011. 24,100108,1,142,141.6
  2012. 24,300120,2,1443,2886.28
  2013. 25,300104,2,1947,3894
  2014. 25,100110,2,401,802.4
  2015. 26,100108,2,142,283.2
  2016. 26,300116,2,378,755.2
  2017. 27,100108,2,142,283.2
  2018. 27,100102,2,484,967.6
  2019. 28,100104,2,448,896.8
  2020. 28,200118,2,354,708
  2021. 29,200118,2,354,708
  2022. 29,200118,1,354,354
  2023. 30,200220,2,342,684.4
  2024. 30,300118,1,401,401.2
  2025. 31,300108,1,1640,1640.2
  2026. 31,100108,1,142,141.6
  2027. 32,200118,1,354,354
  2028. 32,100104,2,448,896.8
  2029. 33,300116,2,378,755.2
  2030. 33,300120,1,1443,1443.14
  2031. 34,100116,2,142,283.2
  2032. 34,200114,1,330,330.4
  2033. 35,100108,1,142,141.6
  2034. 35,200114,2,330,660.8
  2035. 36,100110,1,401,401.2
  2036. 36,300106,2,1416,2832
  2037. 37,100102,2,484,967.6
  2038. 37,300110,2,1416,2832
  2039. 38,200108,1,283,283.2
  2040. 38,100104,2,448,896.8
  2041. 39,200220,1,342,342.2
  2042. 39,100104,1,448,448.4
  2043. 40,100120,2,270,540.44
  2044. 40,300120,2,1443,2886.28
  2045. 41,300104,2,1947,3894
  2046. 41,200112,2,330,660.8
  2047. 42,200108,1,283,283.2
  2048. 42,100110,1,401,401.2
  2049. 43,300108,2,1640,3280.4
  2050. 43,300118,2,401,802.4
  2051. 44,300100,2,1829,3658
  2052. 44,300100,2,1829,3658
  2053. 45,300108,2,1640,3280.4
  2054. 45,100108,2,142,283.2
  2055. 46,100114,2,588,1175.28
  2056. 46,200118,2,354,708
  2057. 47,300122,1,1723,1722.8
  2058. 47,300102,1,1864,1864.4
  2059. 48,200114,1,330,330.4
  2060. 48,100100,1,413,413
  2061. 49,100104,1,448,448.4
  2062. 49,300118,2,401,802.4
  2063. 50,100112,2,531,1062
  2064. 50,200116,1,342,342.2
  2065. 51,200116,2,342,684.4
  2066. 51,200116,2,342,684.4
  2067. 52,100118,1,283,283.2
  2068. 52,300100,1,1829,1829
  2069. 53,100114,1,588,587.64
  2070. 53,100108,2,142,283.2
  2071. 54,300100,2,1829,3658
  2072. 54,200116,1,342,342.2
  2073. 55,100120,2,270,540.44
  2074. 55,300112,2,661,1321.6
  2075. 56,200114,1,330,330.4
  2076. 56,200118,2,354,708
  2077. 57,300108,1,1640,1640.2
  2078. 57,200102,2,684,1368.8
  2079. 58,300116,2,378,755.2
  2080. 58,300104,2,1947,3894
  2081. 59,300112,2,661,1321.6
  2082. 59,100104,2,448,896.8
  2083. 60,200118,1,354,354
  2084. 60,200118,2,354,708
  2085. 61,100116,1,142,141.6
  2086. 61,300120,2,1443,2886.28
  2087. 62,200102,2,684,1368.8
  2088. 62,300122,2,1723,3445.6
  2089. 63,100120,2,270,540.44
  2090. 63,200118,1,354,354
  2091. 64,300118,2,401,802.4
  2092. 64,300110,1,1416,1416
  2093. 65,100100,2,413,826
  2094. 65,100102,1,484,483.8
  2095. 66,200220,2,342,684.4
  2096. 66,100112,1,531,531
  2097. 67,100114,1,588,587.64
  2098. 67,300112,2,661,1321.6
  2099. 68,200112,2,330,660.8
  2100. 68,200102,1,684,684.4
  2101. 69,100106,2,413,826
  2102. 69,100114,1,588,587.64
  2103. 70,100116,1,142,141.6
  2104. 70,200114,2,330,660.8
  2105. 71,100106,1,413,413
  2106. 71,300106,1,1416,1416
  2107. 72,100102,2,484,967.6
  2108. 72,300112,2,661,1321.6
  2109. 73,300104,1,1947,1947
  2110. 73,300108,1,1640,1640.2
  2111. 74,200102,2,684,1368.8
  2112. 74,100118,1,283,283.2
  2113. 75,300118,1,401,401.2
  2114. 75,200112,2,330,660.8
  2115. 76,300114,2,944,1888
  2116. 76,200106,1,378,377.6
  2117. 77,200118,2,354,708
  2118. 77,300120,2,1443,2886.28
  2119. 78,100112,2,531,1062
  2120. 78,200100,1,649,649
  2121. 79,200110,1,289,289.1
  2122. 79,100120,1,270,270.22
  2123. 80,100112,2,531,1062
  2124. 80,300122,2,1723,3445.6
  2125. 81,100114,1,588,587.64
  2126. 81,100108,1,142,141.6
  2127. 82,100108,1,142,141.6
  2128. 82,200100,1,649,649
  2129. 83,300108,2,1640,3280.4
  2130. 83,200110,1,289,289.1
  2131. 84,200220,2,342,684.4
  2132. 84,200100,1,649,649
  2133. 85,300108,2,1640,3280.4
  2134. 85,300114,1,944,944
  2135. 86,200110,1,289,289.1
  2136. 86,200118,1,354,354
  2137. 87,300116,2,378,755.2
  2138. 87,300122,2,1723,3445.6
  2139. 88,300120,1,1443,1443.14
  2140. 88,300116,2,378,755.2
  2141. 89,300112,1,661,660.8
  2142. 89,300104,1,1947,1947
  2143. 90,100116,2,142,283.2
  2144. 90,300120,1,1443,1443.14
  2145. 91,100120,1,270,270.22
  2146. 91,300114,2,944,1888
  2147. 92,300112,2,661,1321.6
  2148. 92,100106,1,413,413
  2149. 93,200102,1,684,684.4
  2150. 93,100120,1,270,270.22
  2151. 94,300106,1,1416,1416
  2152. 94,100114,1,588,587.64
  2153. 95,300104,1,1947,1947
  2154. 95,100120,1,270,270.22
  2155. 96,200112,1,330,330.4
  2156. 96,200104,2,767,1534
  2157. 97,200116,2,342,684.4
  2158. 97,100106,2,413,826
  2159. 98,300120,2,1443,2886.28
  2160. 98,200110,2,289,578.2
  2161. 99,100114,2,588,1175.28
  2162. 99,200106,2,378,755.2
  2163. 100,300114,1,944,944
  2164. 100,300118,2,401,802.4
  2165. 101,200108,2,283,566.4
  2166. 101,300118,2,401,802.4
  2167. 102,100104,2,448,896.8
  2168. 102,300116,1,378,377.6
  2169. 103,100110,2,401,802.4
  2170. 103,300110,2,1416,2832
  2171. 104,200220,2,342,684.4
  2172. 104,300100,2,1829,3658
  2173. 105,300120,1,1443,1443.14
  2174. 105,200108,1,283,283.2
  2175. 106,300122,2,1723,3445.6
  2176. 106,100116,1,142,141.6
  2177. 107,100104,1,448,448.4
  2178. 107,200114,2,330,660.8
  2179. 108,100110,1,401,401.2
  2180. 108,300108,2,1640,3280.4
  2181. 109,200100,1,649,649
  2182. 109,100120,1,270,270.22
  2183. 110,300106,2,1416,2832
  2184. 110,200102,2,684,1368.8
  2185. 111,300106,1,1416,1416
  2186. 111,300104,2,1947,3894
  2187. 112,100108,1,142,141.6
  2188. 112,300100,1,1829,1829
  2189. 113,300108,1,1640,1640.2
  2190. 113,200112,1,330,330.4
  2191. 114,100120,2,270,540.44
  2192. 114,300122,1,1723,1722.8
  2193. 115,300108,1,1640,1640.2
  2194. 115,300100,1,1829,1829
  2195. 116,200220,1,342,342.2
  2196. 116,300100,1,1829,1829
  2197. 117,300100,2,1829,3658
  2198. 117,300108,2,1640,3280.4
  2199. 118,100114,1,588,587.64
  2200. 118,100108,2,142,283.2
  2201. 119,300122,2,1723,3445.6
  2202. 119,300108,2,1640,3280.4
  2203. 120,300104,1,1947,1947
  2204. 120,100118,1,283,283.2
  2205. 121,300116,1,378,377.6
  2206. 121,200104,2,767,1534
  2207. 122,100112,2,531,1062
  2208. 122,300100,1,1829,1829
  2209. 123,300112,1,661,660.8
  2210. 123,100108,2,142,283.2
  2211. 124,100104,2,448,896.8
  2212. 124,100102,1,484,483.8
  2213. 125,300100,2,1829,3658
  2214. 125,200102,1,684,684.4
  2215. 126,300102,1,1864,1864.4
  2216. 126,100116,1,142,141.6
  2217. 127,200108,2,283,566.4
  2218. 127,200102,2,684,1368.8
  2219. 128,300100,2,1829,3658
  2220. 128,300116,2,378,755.2
  2221. 129,200118,2,354,708
  2222. 129,300100,2,1829,3658
  2223. 130,300106,1,1416,1416
  2224. 130,100112,2,531,1062
  2225. 131,200104,2,767,1534
  2226. 131,300118,1,401,401.2
  2227. 132,100110,1,401,401.2
  2228. 132,200116,1,342,342.2
  2229. 133,100120,2,270,540.44
  2230. 133,200114,1,330,330.4
  2231. 134,200114,1,330,330.4
  2232. 134,300104,1,1947,1947
  2233. 135,300118,1,401,401.2
  2234. 135,100112,1,531,531
  2235. 136,300108,1,1640,1640.2
  2236. 136,300106,2,1416,2832
  2237. 137,300108,1,1640,1640.2
  2238. 137,100100,2,413,826
  2239. 138,300122,1,1723,1722.8
  2240. 138,100114,1,588,587.64
  2241. 139,300114,1,944,944
  2242. 139,100102,1,484,483.8
  2243. 140,200118,1,354,354
  2244. 140,200112,1,330,330.4
  2245. 141,200102,2,684,1368.8
  2246. 141,100108,1,142,141.6
  2247. 142,100102,1,484,483.8
  2248. 142,300102,2,1864,3728.8
  2249. 143,200112,2,330,660.8
  2250. 143,200114,2,330,660.8
  2251. 144,300104,2,1947,3894
  2252. 144,300102,1,1864,1864.4
  2253. 145,100118,1,283,283.2
  2254. 145,100116,2,142,283.2
  2255. 146,300108,2,1640,3280.4
  2256. 146,200118,1,354,354
  2257. 147,200106,2,378,755.2
  2258. 147,100114,2,588,1175.28
  2259. 148,300102,2,1864,3728.8
  2260. 148,200112,1,330,330.4
  2261. 149,200116,1,342,342.2
  2262. 149,300106,1,1416,1416
  2263. 150,100102,2,484,967.6
  2264. 150,300100,2,1829,3658
  2265. 151,200110,2,289,578.2
  2266. 151,200104,2,767,1534
  2267. 152,300114,1,944,944
  2268. 152,300118,2,401,802.4
  2269. 153,100108,1,142,141.6
  2270. 153,200106,1,378,377.6
  2271. 154,300106,2,1416,2832
  2272. 154,300114,2,944,1888
  2273. 155,300114,2,944,1888
  2274. 155,200102,2,684,1368.8
  2275. 156,300118,1,401,401.2
  2276. 156,300104,2,1947,3894
  2277. 157,200100,2,649,1298
  2278. 157,200102,2,684,1368.8
  2279. 158,100110,1,401,401.2
  2280. 158,100104,1,448,448.4
  2281. 159,300100,2,1829,3658
  2282. 159,200102,2,684,1368.8
  2283. 160,100118,1,283,283.2
  2284. 160,100110,1,401,401.2
  2285. 161,200110,2,289,578.2
  2286. 161,300104,1,1947,1947
  2287. 162,300112,2,661,1321.6
  2288. 162,100104,1,448,448.4
  2289. 163,300110,2,1416,2832
  2290. 163,300108,2,1640,3280.4
  2291. 164,200102,2,684,1368.8
  2292. 164,200116,2,342,684.4
  2293. 165,200114,2,330,660.8
  2294. 165,200108,2,283,566.4
  2295. 166,100108,2,142,283.2
  2296. 166,200100,2,649,1298
  2297. 167,300108,1,1640,1640.2
  2298. 167,200102,2,684,1368.8
  2299. 168,300104,1,1947,1947
  2300. 168,200102,2,684,1368.8
  2301. 169,100106,2,413,826
  2302. 169,100108,1,142,141.6
  2303. 170,200108,2,283,566.4
  2304. 170,200102,2,684,1368.8
  2305. 171,100104,1,448,448.4
  2306. 171,100120,1,270,270.22
  2307. 172,100106,1,413,413
  2308. 172,200100,2,649,1298
  2309. 173,300106,2,1416,2832
  2310. 173,200118,2,354,708
  2311. 174,300106,2,1416,2832
  2312. 174,100116,2,142,283.2
  2313. 175,100106,2,413,826
  2314. 175,300104,1,1947,1947
  2315. 176,300106,1,1416,1416
  2316. 176,300100,2,1829,3658
  2317. 177,100106,2,413,826
  2318. 177,300106,1,1416,1416
  2319. 178,300114,1,944,944
  2320. 178,300122,1,1723,1722.8
  2321. 179,300102,2,1864,3728.8
  2322. 179,300110,2,1416,2832
  2323. 180,200116,1,342,342.2
  2324. 180,300112,2,661,1321.6
  2325. 181,200220,2,342,684.4
  2326. 181,200114,2,330,660.8
  2327. 182,200220,2,342,684.4
  2328. 182,300110,2,1416,2832
  2329. 183,300100,1,1829,1829
  2330. 183,200108,2,283,566.4
  2331. 184,100118,1,283,283.2
  2332. 184,100118,2,283,566.4
  2333. 185,300118,2,401,802.4
  2334. 185,100114,1,588,587.64
  2335. 186,100106,2,413,826
  2336. 186,100116,1,142,141.6
  2337. 187,300112,1,661,660.8
  2338. 187,300102,2,1864,3728.8
  2339. 188,300122,1,1723,1722.8
  2340. 188,200108,2,283,566.4
  2341. 189,200106,2,378,755.2
  2342. 189,200108,1,283,283.2
  2343. 190,300106,2,1416,2832
  2344. 190,300102,2,1864,3728.8
  2345. 191,300120,1,1443,1443.14
  2346. 191,100108,1,142,141.6
  2347. 192,300122,2,1723,3445.6
  2348. 192,300108,2,1640,3280.4
  2349. 193,100100,1,413,413
  2350. 193,100106,2,413,826
  2351. 194,200110,2,289,578.2
  2352. 194,300116,2,378,755.2
  2353. 195,300104,2,1947,3894
  2354. 195,100118,1,283,283.2
  2355. 196,300116,2,378,755.2
  2356. 196,200108,2,283,566.4
  2357. 197,300100,2,1829,3658
  2358. 197,200108,2,283,566.4
  2359. 198,100102,1,484,483.8
  2360. 198,300110,1,1416,1416
  2361. 199,200102,2,684,1368.8
  2362. 199,100118,2,283,566.4
  2363. 200,100116,1,142,141.6
  2364. 200,300120,1,1443,1443.14
  2365. 201,100116,2,142,283.2
  2366. 201,200106,1,378,377.6
  2367. 202,200102,1,684,684.4
  2368. 202,100110,1,401,401.2
  2369. 203,300122,2,1723,3445.6
  2370. 203,100120,1,270,270.22
  2371. 204,200100,1,649,649
  2372. 204,300108,2,1640,3280.4
  2373. 205,300106,2,1416,2832
  2374. 205,100102,1,484,483.8
  2375. 206,300110,2,1416,2832
  2376. 206,300100,1,1829,1829
  2377. 207,300118,2,401,802.4
  2378. 207,100116,1,142,141.6
  2379. 208,100106,2,413,826
  2380. 208,100116,1,142,141.6
  2381. 209,100110,1,401,401.2
  2382. 209,200114,1,330,330.4
  2383. 210,100114,1,588,587.64
  2384. 210,300106,1,1416,1416
  2385. 211,300122,1,1723,1722.8
  2386. 211,300110,2,1416,2832
  2387. 212,300114,1,944,944
  2388. 212,200118,2,354,708
  2389. 213,300102,2,1864,3728.8
  2390. 213,300110,1,1416,1416
  2391. 214,300114,2,944,1888
  2392. 214,300110,1,1416,1416
  2393. 215,300108,2,1640,3280.4
  2394. 215,200100,1,649,649
  2395. 216,200102,2,684,1368.8
  2396. 216,200100,2,649,1298
  2397. 217,100114,2,588,1175.28
  2398. 217,300104,1,1947,1947
  2399. 218,200220,1,342,342.2
  2400. 218,300108,2,1640,3280.4
  2401. 219,100116,2,142,283.2
  2402. 219,300120,1,1443,1443.14
  2403. 220,300120,2,1443,2886.28
  2404. 220,100106,1,413,413
  2405. 221,100116,1,142,141.6
  2406. 221,300104,1,1947,1947
  2407. 222,300112,1,661,660.8
  2408. 222,200116,1,342,342.2
  2409. 223,200110,1,289,289.1
  2410. 223,300100,1,1829,1829
  2411. 224,200116,1,342,342.2
  2412. 224,300102,1,1864,1864.4
  2413. 225,100110,1,401,401.2
  2414. 225,300122,2,1723,3445.6
  2415. 226,200100,1,649,649
  2416. 226,100100,2,413,826
  2417. 227,300122,2,1723,3445.6
  2418. 227,300118,2,401,802.4
  2419. 228,300118,1,401,401.2
  2420. 228,100106,1,413,413
  2421. 229,100100,2,413,826
  2422. 229,100112,2,531,1062
  2423. 230,100120,1,270,270.22
  2424. 230,300120,1,1443,1443.14
  2425. 231,100112,1,531,531
  2426. 231,100118,2,283,566.4
  2427. 232,200100,2,649,1298
  2428. 232,200102,2,684,1368.8
  2429. 233,300114,2,944,1888
  2430. 233,100106,2,413,826
  2431. 234,100114,1,588,587.64
  2432. 234,300108,2,1640,3280.4
  2433. 235,100106,1,413,413
  2434. 235,100120,1,270,270.22
  2435. 236,300122,1,1723,1722.8
  2436. 236,100102,2,484,967.6
  2437. 237,200104,1,767,767
  2438. 237,100106,1,413,413
  2439. 238,200106,1,378,377.6
  2440. 238,200220,2,342,684.4
  2441. 239,200100,2,649,1298
  2442. 239,300110,2,1416,2832
  2443. 240,200104,1,767,767
  2444. 240,100100,2,413,826
  2445. 241,300102,1,1864,1864.4
  2446. 241,100106,2,413,826
  2447. 242,200104,1,767,767
  2448. 242,200116,1,342,342.2
  2449. 243,100106,2,413,826
  2450. 243,100114,2,588,1175.28
  2451. 244,100106,1,413,413
  2452. 244,100110,2,401,802.4
  2453. 245,300108,2,1640,3280.4
  2454. 245,300116,2,378,755.2
  2455. 246,200118,1,354,354
  2456. 246,300118,1,401,401.2
  2457. 247,200100,2,649,1298
  2458. 247,300120,2,1443,2886.28
  2459. 248,300120,1,1443,1443.14
  2460. 248,100110,2,401,802.4
  2461. 249,300110,2,1416,2832
  2462. 249,100116,1,142,141.6
  2463. 250,200112,2,330,660.8
  2464. 250,300118,2,401,802.4
  2465. 251,300112,2,661,1321.6
  2466. 251,200116,2,342,684.4
  2467. 252,200104,1,767,767
  2468. 252,300114,1,944,944
  2469. 253,100108,2,142,283.2
  2470. 253,300120,1,1443,1443.14
  2471. 254,100100,1,413,413
  2472. 254,300100,2,1829,3658
  2473. 255,200104,2,767,1534
  2474. 255,200106,2,378,755.2
  2475. 256,200104,2,767,1534
  2476. 256,200114,2,330,660.8
  2477. 257,100120,2,270,540.44
  2478. 257,100118,2,283,566.4
  2479. 258,200110,2,289,578.2
  2480. 258,200114,1,330,330.4
  2481. 259,300122,2,1723,3445.6
  2482. 259,100110,1,401,401.2
  2483. 260,200220,2,342,684.4
  2484. 260,100104,2,448,896.8
  2485. 261,100108,2,142,283.2
  2486. 261,100108,2,142,283.2
  2487. 262,200110,1,289,289.1
  2488. 262,200110,1,289,289.1
  2489. 263,300120,2,1443,2886.28
  2490. 263,300120,2,1443,2886.28
  2491. 264,300120,1,1443,1443.14
  2492. 264,200118,1,354,354
  2493. 265,300118,2,401,802.4
  2494. 265,100112,2,531,1062
  2495. 266,300120,2,1443,2886.28
  2496. 266,100120,1,270,270.22
  2497. 267,100104,1,448,448.4
  2498. 267,300102,1,1864,1864.4
  2499. 268,300112,1,661,660.8
  2500. 268,300122,1,1723,1722.8
  2501. 269,200112,2,330,660.8
  2502. 269,300120,1,1443,1443.14
  2503. 270,100102,2,484,967.6
  2504. 270,100108,1,142,141.6
  2505. 271,200100,1,649,649
  2506. 271,100118,1,283,283.2
  2507. 272,300102,1,1864,1864.4
  2508. 272,100108,2,142,283.2
  2509. 273,300110,1,1416,1416
  2510. 273,200100,1,649,649
  2511. 274,100108,2,142,283.2
  2512. 274,300100,1,1829,1829
  2513. 275,100108,1,142,141.6
  2514. 275,300110,1,1416,1416
  2515. 276,200112,2,330,660.8
  2516. 276,200102,1,684,684.4
  2517. 277,200102,1,684,684.4
  2518. 277,200220,1,342,342.2
  2519. 278,200116,2,342,684.4
  2520. 278,200110,1,289,289.1
  2521. 279,300108,1,1640,1640.2
  2522. 279,200108,2,283,566.4
  2523. 280,200116,1,342,342.2
  2524. 280,300114,1,944,944
  2525. 281,200110,1,289,289.1
  2526. 281,100118,2,283,566.4
  2527. 282,300104,1,1947,1947
  2528. 282,300118,2,401,802.4
  2529. 283,200108,1,283,283.2
  2530. 283,300104,1,1947,1947
  2531. 284,200102,1,684,684.4
  2532. 284,200102,1,684,684.4
  2533. 285,200116,2,342,684.4
  2534. 285,200102,2,684,1368.8
  2535. 286,200118,2,354,708
  2536. 286,100108,2,142,283.2
  2537. 287,300100,2,1829,3658
  2538. 287,300100,1,1829,1829
  2539. 288,100106,1,413,413
  2540. 288,200118,2,354,708
  2541. 289,100116,1,142,141.6
  2542. 289,300120,1,1443,1443.14
  2543. 290,100116,1,142,141.6
  2544. 290,200104,2,767,1534
  2545. 291,100108,2,142,283.2
  2546. 291,200100,2,649,1298
  2547. 292,300122,1,1723,1722.8
  2548. 292,100102,1,484,483.8
  2549. 293,100108,2,142,283.2
  2550. 293,300110,1,1416,1416
  2551. 294,300104,2,1947,3894
  2552. 294,300104,2,1947,3894
  2553. 295,100118,2,283,566.4
  2554. 295,200118,1,354,354
  2555. 296,100102,2,484,967.6
  2556. 296,200112,1,330,330.4
  2557. 297,200114,2,330,660.8
  2558. 297,100118,2,283,566.4
  2559. 298,300106,2,1416,2832
  2560. 298,200116,2,342,684.4
  2561. 299,200104,2,767,1534
  2562. 299,200116,1,342,342.2
  2563. 300,300122,2,1723,3445.6
  2564. 300,200110,1,289,289.1
  2565. 301,300120,1,1443,1443.14
  2566. 301,300116,2,378,755.2
  2567. 302,200112,2,330,660.8
  2568. 302,100118,2,283,566.4
  2569. 303,300112,2,661,1321.6
  2570. 303,100118,1,283,283.2
  2571. 304,100100,2,413,826
  2572. 304,300110,1,1416,1416
  2573. 305,100104,1,448,448.4
  2574. 305,300112,1,661,660.8
  2575. 306,200220,1,342,342.2
  2576. 306,300120,2,1443,2886.28
  2577. 307,200104,2,767,1534
  2578. 307,300110,1,1416,1416
  2579. 308,200110,2,289,578.2
  2580. 308,100100,1,413,413
  2581. 309,100110,2,401,802.4
  2582. 309,100104,2,448,896.8
  2583. 310,200110,2,289,578.2
  2584. 310,300120,2,1443,2886.28
  2585. 311,300110,2,1416,2832
  2586. 311,200220,1,342,342.2
  2587. 312,100120,2,270,540.44
  2588. 312,300118,2,401,802.4
  2589. 313,200116,2,342,684.4
  2590. 313,100102,1,484,483.8
  2591. 314,200102,1,684,684.4
  2592. 314,100106,1,413,413
  2593. 315,200100,1,649,649
  2594. 315,200116,2,342,684.4
  2595. 316,300120,2,1443,2886.28
  2596. 316,200110,1,289,289.1
  2597. 317,200108,1,283,283.2
  2598. 317,300112,2,661,1321.6
  2599. 318,300102,1,1864,1864.4
  2600. 318,100100,2,413,826
  2601. 319,300110,2,1416,2832
  2602. 319,200116,2,342,684.4
  2603. 320,200112,2,330,660.8
  2604. 320,300114,2,944,1888
  2605. 321,300114,2,944,1888
  2606. 321,100104,1,448,448.4
  2607. 322,300102,1,1864,1864.4
  2608. 322,200106,2,378,755.2
  2609. 323,100104,1,448,448.4
  2610. 323,300114,1,944,944
  2611. 324,100100,1,413,413
  2612. 324,200112,2,330,660.8
  2613. 325,300100,2,1829,3658
  2614. 325,300120,1,1443,1443.14
  2615. 326,200114,2,330,660.8
  2616. 326,300122,1,1723,1722.8
  2617. 327,300100,1,1829,1829
  2618. 327,300122,2,1723,3445.6
  2619. 328,300112,2,661,1321.6
  2620. 328,200110,2,289,578.2
  2621. 329,100118,2,283,566.4
  2622. 329,300118,2,401,802.4
  2623. 330,100100,1,413,413
  2624. 330,200118,2,354,708
  2625. 331,100104,1,448,448.4
  2626. 331,300110,2,1416,2832
  2627. 332,200104,1,767,767
  2628. 332,300120,2,1443,2886.28
  2629. 333,200108,1,283,283.2
  2630. 333,200220,1,342,342.2
  2631. 334,200118,1,354,354
  2632. 334,100116,2,142,283.2
  2633. 335,300102,1,1864,1864.4
  2634. 335,100100,1,413,413
  2635. 336,200110,2,289,578.2
  2636. 336,100108,2,142,283.2
  2637. 337,100106,1,413,413
  2638. 337,200118,2,354,708
  2639. 338,200114,1,330,330.4
  2640. 338,100112,2,531,1062
  2641. 339,300120,2,1443,2886.28
  2642. 339,100108,2,142,283.2
  2643. 340,300118,1,401,401.2
  2644. 340,300114,1,944,944
  2645. 341,300112,2,661,1321.6
  2646. 341,300120,2,1443,2886.28
  2647. 342,100100,1,413,413
  2648. 342,200220,2,342,684.4
  2649. 343,300116,1,378,377.6
  2650. 343,100118,1,283,283.2
  2651. 344,300100,2,1829,3658
  2652. 344,200118,1,354,354
  2653. 345,200108,1,283,283.2
  2654. 345,100108,2,142,283.2
  2655. 346,200114,2,330,660.8
  2656. 346,100102,1,484,483.8
  2657. 347,200220,2,342,684.4
  2658. 347,300120,2,1443,2886.28
  2659. 348,100114,1,588,587.64
  2660. 348,300114,1,944,944
  2661. 349,100106,2,413,826
  2662. 349,300110,2,1416,2832
  2663. 350,300106,2,1416,2832
  2664. 350,200106,2,378,755.2
  2665. 351,300118,1,401,401.2
  2666. 351,300106,2,1416,2832
  2667. 352,200108,1,283,283.2
  2668. 352,300122,2,1723,3445.6
  2669. 353,200102,2,684,1368.8
  2670. 353,100116,1,142,141.6
  2671. 354,200102,2,684,1368.8
  2672. 354,200100,1,649,649
  2673. 355,100100,2,413,826
  2674. 355,100114,1,588,587.64
  2675. 356,100110,1,401,401.2
  2676. 356,100106,1,413,413
  2677. 357,100106,2,413,826
  2678. 357,300120,1,1443,1443.14
  2679. 358,200118,1,354,354
  2680. 358,200112,1,330,330.4
  2681. 359,200220,2,342,684.4
  2682. 359,200118,2,354,708
  2683. 360,300116,1,378,377.6
  2684. 360,300116,2,378,755.2
  2685. 361,300104,1,1947,1947
  2686. 361,200102,1,684,684.4
  2687. 362,300100,2,1829,3658
  2688. 362,200108,1,283,283.2
  2689. 363,200104,2,767,1534
  2690. 363,200116,1,342,342.2
  2691. 364,300120,2,1443,2886.28
  2692. 364,300108,1,1640,1640.2
  2693. 365,100114,1,588,587.64
  2694. 365,300114,2,944,1888
  2695. 366,300118,2,401,802.4
  2696. 366,200118,2,354,708
  2697. 367,300108,1,1640,1640.2
  2698. 367,300120,2,1443,2886.28
  2699. 368,300104,1,1947,1947
  2700. 368,300116,2,378,755.2
  2701. 369,300122,1,1723,1722.8
  2702. 369,200220,1,342,342.2
  2703. 370,100116,1,142,141.6
  2704. 370,100116,1,142,141.6
  2705. 371,100100,1,413,413
  2706. 371,300100,2,1829,3658
  2707. 372,100114,2,588,1175.28
  2708. 372,300112,2,661,1321.6
  2709. 373,300108,1,1640,1640.2
  2710. 373,200110,1,289,289.1
  2711. 374,300106,1,1416,1416
  2712. 374,200114,2,330,660.8
  2713. 375,300120,1,1443,1443.14
  2714. 375,200220,1,342,342.2
  2715. 376,200100,1,649,649
  2716. 376,200112,2,330,660.8
  2717. 377,100106,2,413,826
  2718. 377,100110,2,401,802.4
  2719. 378,200108,2,283,566.4
  2720. 379,200220,2,342,684.4
  2721. 380,200106,1,378,377.6
  2722. 381,100102,1,484,483.8
  2723. 382,100110,2,401,802.4
  2724. 383,200108,2,283,566.4
  2725. 384,300120,1,1443,1443.14
  2726. 385,100120,1,270,270.22
  2727. 386,100100,2,413,826
  2728. 387,100114,1,588,587.64
  2729. 388,300100,2,1829,3658
  2730. 389,200100,2,649,1298
  2731. 390,200114,1,330,330.4
  2732. 391,300116,2,378,755.2
  2733. 392,300106,1,1416,1416
  2734. 393,200104,1,767,767
  2735. 394,200220,2,342,684.4
  2736. 395,200100,2,649,1298
  2737. 396,200220,1,342,342.2
  2738. 397,300106,1,1416,1416
  2739. 398,300118,2,401,802.4
  2740. 399,100100,1,413,413
  2741. 400,300114,1,944,944
  2742. 401,100114,1,588,587.64
  2743. 402,100108,2,142,283.2
  2744. 403,300112,2,661,1321.6
  2745. 404,100116,2,142,283.2
  2746. 405,200114,2,330,660.8
  2747. 406,300114,1,944,944
  2748. 407,100102,1,484,483.8
  2749. 408,100118,1,283,283.2
  2750. 409,100100,1,413,413
  2751. 410,100118,2,283,566.4
  2752. 411,300108,1,1640,1640.2
  2753. 412,200220,2,342,684.4
  2754. 413,200114,1,330,330.4
  2755. 414,300112,2,661,1321.6
  2756. 415,300122,1,1723,1722.8
  2757. 416,100118,1,283,283.2
  2758. 417,300112,2,661,1321.6
  2759. 418,100110,2,401,802.4
  2760. 419,200114,2,330,660.8
  2761. 420,200118,1,354,354
  2762. 421,100118,1,283,283.2
  2763. 422,300114,2,944,1888
  2764. 423,100116,2,142,283.2
  2765. 424,100118,2,283,566.4
  2766. 425,200118,2,354,708
  2767. 426,100112,2,531,1062
  2768. 427,200114,2,330,660.8
  2769. 428,100106,1,413,413
  2770. 429,300122,2,1723,3445.6
  2771. 430,300104,2,1947,3894
  2772. 431,200106,1,378,377.6
  2773. 432,300110,1,1416,1416
  2774. 433,100112,1,531,531
  2775. 434,200102,1,684,684.4
  2776. 435,300116,2,378,755.2
  2777. 436,200220,2,342,684.4
  2778. 437,300102,2,1864,3728.8
  2779.  
  2780. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement