-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc-build.prj.bak
1472 lines (1469 loc) · 77.9 KB
/
doc-build.prj.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
22 Patch Control
0
0
1
doc-build.ox
487
12
5
doc-build.ox
Ox
1049586 4 345 64 345 65 52 52 1310 312 0 0 927 308 -1 -1 0 0 25 0 0 25 1 0 65 345 0 0 0
build.ox
Ox
1049586 0 10 1 7 32 130 130 1366 450 0 0 465 196 -1 -1 0 0 20 0 0 20 1 0 32 7 0 0 0
build-test.ox
Ox
1049586 0 3 49 0 5 0 0 1236 320 0 0 87 0 -1 -1 0 0 20 0 0 20 1 0 5 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\CodeExercisesToAdd\week3Wed.ox
Ox
1049586 0 0 1 0 1 78 78 1336 338 0 0 31 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\LinearAlgebra.htm
HTML
17827835 0 -1 16246 -1 16819 130 130 1362 391 0 1 1027 264 -1 -1 0 0 2 -1 -1 2 1 0 16819 -1 0 -1 0
:\Users\Chris\Desktop\QC\Fit.types.optobj
DATA:UNIX
273776882 0 0 1 0 1 156 156 1534 624 1 0 109 0 -1 -1 0 0 6 0 0 6 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\CodeExercisesToAdd\A06.ox
Ox
1049586 1 28 1 54 1 0 0 1258 260 0 0 31 280 -1 -1 0 0 19 0 0 19 1 0 1 54 0 0 0
test\source\book.toc
TeX:AUX
1060850 0 6 25 6 28 26 26 1262 346 0 0 409 168 -1 -1 0 0 11 0 0 11 1 0 28 6 0 0 0
doc-build.oxh
Ox
1049586 2 2 2 2 10 78 78 1336 338 0 0 157 56 -1 -1 0 0 19 0 0 19 1 0 10 2 0 0 0
setup\book.toc
ASCII
5252986 2 0 6 0 11 26 26 1284 286 1 0 249 0 -1 -1 0 0 11 0 0 11 1 0 11 0 0 0 0
Makefile
TeX
1060859 0 -1 0 -1 0 104 104 1362 364 0 1 53 0 -1 -1 0 0 23 -1 -1 23 1 0 0 -1 0 0 0
oxdoc.xml
DATA
5243122 0 4 56 0 8 0 0 1258 260 1 0 207 0 -1 -1 0 0 8 0 0 8 1 0 8 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\schedule.html
HTML
286263282 1 1 1 16 10 78 78 1336 327 0 1 148 368 -1 -1 0 0 1 0 0 1 1 0 10 16 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Text\book.toc
TeX:AUX
269496306 0 0 1 0 1 26 26 1284 286 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\gather.htm
HTML
269486075 0 -1 1375 -1 3234 234 234 1612 703 0 1 752 198 -1 -1 0 0 8 -1 -1 8 1 0 3234 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part3\Marshall.htm
HTML
1050619 2 -1 2099 -1 2101 156 156 1534 613 0 1 917 220 -1 -1 0 0 2 -1 -1 2 1 0 2101 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part3\ExamplesRevisisted.htm
HTML
17827835 2 -1 623 -1 632 78 78 1336 327 0 1 741 132 -1 -1 0 0 9 -1 -1 9 1 0 632 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part3\Euler.htm
HTML
1050619 0 -1 3144 -1 49 182 182 1560 639 0 1 565 22 -1 -1 0 0 0 -1 -1 0 1 0 49 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Simulation.htm
HTML
17827835 4 -1 4167 -1 4168 130 130 1362 391 0 1 180 88 -1 -1 0 0 0 -1 -1 0 1 0 4168 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\SimApps.htm
HTML
17827835 0 -1 1582 -1 1320 52 52 1310 282 0 1 92 154 -1 -1 0 0 0 -1 -1 0 1 0 1320 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization3.htm
HTML
1050619 0 -1 3053 -1 3079 104 104 1336 365 0 1 1225 242 -1 -1 0 0 343 -1 -1 343 1 0 3079 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization2a.htm
HTML
17827835 2 -1 6582 -1 6593 78 78 1336 308 0 1 565 198 -1 -1 0 0 24 -1 -1 24 1 0 6593 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization2.htm
HTML
1050619 0 -1 1422 -1 1434 78 78 1310 339 0 1 895 66 -1 -1 0 0 2 -1 -1 2 1 0 1434 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization1.htm
HTML
1050619 0 -1 5021 -1 5024 52 52 1284 313 0 1 103 198 -1 -1 0 0 2 -1 -1 2 1 0 5024 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization0.htm
HTML
1050619 0 -1 77 -1 5926 52 52 1284 313 0 1 48 110 -1 -1 0 0 2 -1 -1 2 1 0 5926 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Non-Linear-Systems.htm
HTML
17827835 2 -1 13071 -1 13080 0 0 1232 261 0 1 169 220 -1 -1 0 0 8 -1 -1 8 1 0 13080 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\constrained.htm
HTML
1050619 0 -1 5003 -1 8735 104 104 1482 561 0 1 48 286 -1 -1 0 0 0 -1 -1 0 1 0 8735 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\calculus2.htm
HTML
1050619 0 -1 4929 -1 4976 104 104 1336 365 0 1 532 308 -1 -1 0 0 22 -1 -1 22 1 0 4976 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\calculus.htm
HTML
17827835 4 -1 13163 -1 13164 78 78 1310 339 0 1 895 330 -1 -1 0 0 2 -1 -1 2 1 0 13164 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\files.htm
HTML
17827835 0 -1 32 -1 45 104 104 1362 334 0 1 521 22 -1 -1 0 0 0 -1 -1 0 1 0 45 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\elements.htm
HTML
1050619 2 -1 16562 -1 16571 234 234 1612 703 0 1 191 198 -1 -1 0 0 1726 -1 -1 1726 1 0 16571 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\finalcode\visual.oxh
Ox
1049586 0 4 1 0 1 52 52 1310 301 0 0 31 0 -1 -1 0 0 16 0 0 16 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\finalcode\visual.ox
Ox:UNIX
1147890 0 9 1 0 1 0 0 1258 249 0 0 31 0 -1 -1 0 0 4 0 0 4 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\finalcode\main.ox
Ox
1049586 0 17 26 20 1 26 26 1284 256 0 0 31 308 -1 -1 0 0 17 0 0 17 1 0 1 20 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\css\pdfslides.css
DATA
5308658 0 254 1 269 1 182 182 1560 658 1 0 109 252 -1 -1 0 0 7 0 0 7 1 0 1 269 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\Week1Mon.html
HTML
17827835 0 -1 2008 -1 4099 78 78 1456 535 0 1 202 264 -1 -1 0 0 21 -1 -1 21 1 0 4099 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\midterm1.html
HTML
17827835 2 -1 5819 -1 5828 104 104 1362 315 0 1 147 264 -1 -1 0 0 21 -1 -1 21 1 0 5828 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\index.html
HTML
1050619 2 -1 212 -1 218 52 52 1430 528 0 1 114 110 -1 -1 0 0 15 -1 -1 15 1 0 218 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\contents-small.html
HTML
1050619 2 -1 210 -1 216 78 78 1336 346 0 1 180 88 -1 -1 0 0 23 -1 -1 23 1 0 216 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\contents-large.html
HTML
1050619 0 -1 0 -1 475 130 130 1508 606 0 1 136 176 -1 -1 0 0 15 -1 -1 15 1 0 475 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\title.html
HTML
1050619 0 -1 0 -1 736 52 52 1310 282 0 1 48 242 -1 -1 0 0 57 -1 -1 57 1 0 736 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book.toc
ASCII
5252986 0 45 44 8 1 26 26 828 421 1 0 109 168 -1 -1 0 0 1 0 0 1 1 0 1 8 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\takehomeA.html
HTML
17827835 2 -1 557 -1 559 104 104 1284 534 0 1 576 198 -1 -1 0 0 57 -1 -1 57 1 0 559 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\doc-build.oxh
Ox
269485042 2 13 26 13 31 0 0 1258 249 0 0 451 224 -1 -1 0 0 19 0 0 19 1 0 31 13 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\doc-build.ox
Ox
269485042 0 166 173 0 1 0 0 1378 619 0 0 31 0 -1 -1 0 0 25 0 0 25 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\express.htm
HTML
269486075 0 -1 7221 -1 11412 0 0 1378 469 0 1 796 352 -1 -1 0 0 0 -1 -1 0 1 0 11412 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Style.htm
HTML
286263291 2 -1 24815 -1 24817 104 104 1362 353 0 1 807 88 -1 -1 0 0 19 -1 -1 19 1 0 24817 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Puzzle.htm
HTML
269486075 0 -1 3688 -1 3736 104 104 1482 580 0 1 48 220 -1 -1 0 0 0 -1 -1 0 1 0 3736 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\ProgFAQ.htm
HTML
269486075 0 -1 5252 -1 5258 78 78 1456 554 0 1 158 198 -1 -1 0 0 0 -1 -1 0 1 0 5258 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\ProgCycle.htm
HTML
269486075 2 -1 9600 -1 9602 52 52 1430 528 0 1 334 198 -1 -1 0 0 1048 -1 -1 1048 1 0 9602 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Plans.htm
HTML
286263291 0 -1 10004 -1 0 26 26 1404 502 0 1 48 0 -1 -1 0 0 4427 -1 -1 4427 1 0 0 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\greatdivide.htm
HTML
269486075 0 -1 27234 -1 27233 26 26 1404 495 0 1 1203 330 -1 -1 0 0 716 -1 -1 716 1 0 27233 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Binding.htm
HTML
269486075 0 -1 24138 -1 2 208 208 1586 677 0 1 48 22 -1 -1 0 0 20 -1 -1 20 1 0 2 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Addresses.htm
HTML
269486075 0 -1 3162 -1 3462 182 182 1560 651 0 1 895 308 -1 -1 0 0 2 -1 -1 2 1 0 3462 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\AddItUp.htm
HTML
286263291 0 -1 20860 -1 21101 156 156 1534 625 0 1 92 352 -1 -1 0 0 1167 -1 -1 1167 1 0 21101 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\css\doc.css
DATA
273744114 0 50 5 0 1 182 182 1560 658 1 0 109 0 -1 -1 0 0 7 0 0 7 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\numlimits.ox
Ox
269485042 2 14 39 14 41 26 26 1284 275 0 0 591 308 -1 -1 0 0 19 0 0 19 1 0 41 14 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\OxFunctions.htm
HTML
286263291 0 -1 14038 -1 14895 156 156 1534 632 0 1 48 154 -1 -1 0 0 478 -1 -1 478 1 0 14895 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\morethings.htm
HTML
269486075 0 -1 26 -1 1197 208 208 1586 684 0 1 1588 330 -1 -1 0 0 24 -1 -1 24 1 0 1197 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\CFMPI\MPI_FAQ
TeX
269496315 1 -1 0 -1 9134 182 182 1560 639 0 1 109 1008 -1 -1 0 0 34 -1 -1 34 1 0 9134 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\why.htm
HTML
269486075 2 -1 3416 -1 3419 104 104 1482 573 0 1 708 198 -1 -1 0 0 8 -1 -1 8 1 0 3419 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\plan.htm
HTML
286263291 0 -1 2239 -1 0 104 104 1362 353 0 1 48 0 -1 -1 0 0 0 -1 -1 0 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\nash.htm
HTML
286263291 0 -1 5295 -1 0 26 26 1284 275 0 1 48 0 -1 -1 0 0 67 -1 -1 67 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\Hello.htm
HTML
269486075 2 -1 640 -1 654 26 26 1404 495 0 1 983 198 -1 -1 0 0 8 -1 -1 8 1 0 654 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\examples.htm
HTML
286263291 0 -1 0 -1 783 208 208 1586 677 0 1 1060 132 -1 -1 0 0 219 -1 -1 219 1 0 783 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\edgeworth.htm
HTML
286263291 0 -1 11824 -1 11829 104 104 1362 353 0 1 103 286 -1 -1 0 0 0 -1 -1 0 1 0 11829 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\Matrices.htm
HTML
286263291 0 -1 17494 -1 18958 104 104 1482 723 0 1 48 905 -1 -1 0 0 21 -1 -1 21 1 0 18958 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\MachineHead.htm
HTML
286263291 2 -1 9104 -1 9106 182 182 1560 658 0 1 752 198 -1 -1 0 0 22 -1 -1 22 1 0 9106 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\hpc2.htm
HTML
286263291 0 -1 15263 -1 15275 0 0 1258 249 0 1 235 154 -1 -1 0 0 124 -1 -1 124 1 0 15275 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\hpc1.htm
HTML
269486075 1 -1 45 -1 33 26 26 1284 275 0 1 389 22 -1 -1 0 0 92 -1 -1 92 1 0 33 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\HardwareForDummies.htm
HTML
269486075 0 -1 12181 -1 12180 156 156 1534 632 0 1 1346 154 -1 -1 0 0 751 -1 -1 751 1 0 12180 -1 0 -1 0
:\Users\Chris\Desktop\QC\Main.ox
Ox:UNIX
269583346 0 4 30 4 29 104 104 1482 573 0 0 423 112 -1 -1 0 0 13 0 0 13 1 0 29 4 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part3\Tobin.htm
HTML
269486075 0 -1 32 -1 45 130 130 1508 587 0 1 521 22 -1 -1 0 0 94 -1 -1 94 1 0 45 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Objective.ox
Ox
269485042 2 81 13 81 15 52 52 1310 301 0 0 227 140 -1 -1 0 0 23 0 0 23 1 0 15 81 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\AllTestOpt.ox
Ox
269485042 1 24 1 35 1 52 52 1310 301 0 0 31 280 -1 -1 0 0 24 0 0 24 1 0 1 35 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\AllTestOpt.h
Ox
269485042 1 20 1 25 1 78 78 1336 308 0 0 31 280 -1 -1 0 0 42 0 0 42 1 0 1 25 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\FiveO\Algorithms.ox
Ox
269485042 2 0 10 0 14 78 78 1336 327 0 0 213 0 -1 -1 0 0 24 0 0 24 1 0 14 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Algorithms.h
Ox
269485042 2 189 24 189 26 104 104 1362 353 0 0 381 140 -1 -1 0 0 17 0 0 17 1 0 26 189 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\book.html
HTML
269486075 0 -1 108569 -1 108569 26 26 1284 275 0 1 48 220 -1 -1 0 0 21 -1 -1 21 1 0 108569 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part2\Optimization.htm
HTML
269486075 0 -1 7014 -1 6919 26 26 1258 287 0 1 48 110 -1 -1 0 0 8 -1 -1 8 1 0 6919 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\basics\normdist.tex
TeX
269496315 2 -1 28 -1 34 52 52 1310 282 0 1 403 28 -1 -1 0 0 7 -1 -1 7 1 0 34 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Notes\NormalDistribution.html
HTML
269486075 2 -1 732 -1 740 78 78 1336 289 0 1 367 66 -1 -1 0 0 57 -1 -1 57 1 0 740 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Text\source\what\NormalDistribution.htm
HTML
269486075 2 -1 3464 -1 3468 0 0 1258 211 0 1 147 154 -1 -1 0 0 0 -1 -1 0 1 0 3468 -1 0 -1 0
:\Users\Chris\Desktop\QC\QC.ox
Ox:UNIX
269583346 0 216 29 36 1 0 0 1378 469 0 0 31 0 -1 -1 0 0 16 0 0 16 1 0 1 36 0 0 0
:\Users\Chris\Desktop\QC\QCVariables.ox
Ox:UNIX
269583346 0 78 1 91 3 182 182 1560 651 0 0 101 252 -1 -1 0 0 27 0 0 27 1 0 3 91 0 0 0
:\Users\Chris\Desktop\QC\QCShared.oxh
Ox:UNIX
269583346 0 54 78 54 91 208 208 1586 677 0 0 983 217 -1 -1 0 0 17 0 0 17 1 0 91 54 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\midVersionA.html
HTML
269486075 0 -1 2803 -1 938 78 78 1336 308 0 1 290 264 -1 -1 0 0 57 -1 -1 57 1 0 938 -1 0 -1 0
:\Users\Chris\Desktop\QC\logs\Data--25-09-2016-20-54-04.log
DATA
273678578 2 226 1 226 9 26 26 1284 237 1 0 221 140 -1 -1 0 0 -1 -1 -1 -1 1 0 9 226 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\parpgm-mpi-client-server.tex
TeX
269496315 0 -1 0 -1 11 75 75 1041 484 0 1 207 0 -1 -1 0 0 75 -1 -1 75 1 0 11 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\parpgm-arch.tex
TeX
269496315 0 -1 0 -1 0 25 25 991 434 0 1 53 0 -1 -1 0 0 0 -1 -1 0 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\parpgm-mpi-peers.tex
TeX
269496315 2 -1 0 -1 11 100 100 1066 509 0 1 207 0 -1 -1 0 0 11 -1 -1 11 1 0 11 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\parpgm.tex
TeX
269496315 2 -1 0 -1 11 125 125 1091 534 0 1 207 0 -1 -1 0 0 11 -1 -1 11 1 0 11 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\parpgm-depend.tex
TeX
269496315 1 -1 13 -1 1390 50 50 1016 459 0 1 333 756 -1 -1 0 0 11 -1 -1 11 1 0 1390 -1 0 0 0
:\Users\Chris\Downloads\ferrallc123@gmail.com.ical\ferrallc@queensu.ca_ferrallc123@gmail.com.ics
Binary
269615330 0 0 1 14844 1 52 52 1760 509 1 0 73 646 -1 -1 0 0 65 0 0 65 1 0 1 14844 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\Projects\Anuj\finalcode\timingv1p1.ox
Ox
269485042 0 0 1 138 1 26 26 1284 275 0 0 31 280 -1 -1 0 0 19 0 0 19 1 0 1 138 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\takehomeB.html
HTML
286263291 0 -1 2042 -1 5904 130 130 1310 560 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 5904 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\new20.ox
Ox
269485042 0 3 23 3 25 104 104 1362 334 0 0 367 84 -1 -1 0 0 19 0 0 19 1 0 25 3 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\HTMLversion\Euler.html
HTML
269486075 0 -1 742 -1 614 104 104 1482 561 0 1 48 22 -1 -1 0 0 57 -1 -1 57 1 0 614 -1 0 -1 0
:\Users\Chris\Downloads\Sample Text File.txt
ASCII
273688442 0 0 1 0 1 0 0 1258 230 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\ec351\ox\OxEdit.tool
DATA
273678578 0 0 1 0 1 208 208 1916 665 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\fgrad-eps.ox
Ox
269485042 0 0 1 0 1 78 78 1336 327 0 0 31 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\scanM.ox
Ox
269485042 1 0 1 7 1 78 78 1336 327 0 0 31 196 -1 -1 0 0 19 0 0 19 1 0 1 7 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\fpr-lims.ox
Ox
269485042 0 2 7 4 2 0 0 1258 249 0 0 45 112 -1 -1 0 0 19 0 0 19 1 0 2 4 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\plans.txt
HTML
286263295 4 -1 29 -1 28 78 78 1336 327 0 1 356 0 -1 -1 0 0 34 -1 -1 34 1 0 28 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\css\main.css
DATA
273678578 0 156 4 157 11 208 208 1586 684 1 0 249 196 -1 -1 0 0 1 0 0 1 1 0 11 157 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\finalcode\plottrajectories.ox
Ox:UNIX
269583346 0 0 1 12 1 104 104 1362 353 0 0 31 112 -1 -1 0 0 -1 -1 -1 -1 1 0 1 12 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\fpr-limits.ox
Ox
269485042 0 0 1 7 1 0 0 1258 249 0 0 31 196 -1 -1 0 0 -1 -1 -1 -1 1 0 1 7 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\opt-amoeba2.tex
TeX
269496315 0 -1 0 -1 409 52 52 1310 301 0 1 53 196 -1 -1 0 0 -1 -1 -1 -1 1 0 409 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\opt-amoeba.tex
TeX
269496315 0 -1 0 -1 0 26 26 1284 275 0 1 53 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\part1\moreexpress.htm
HTML
286263291 0 -1 25 -1 6389 130 130 1508 606 0 1 48 330 -1 -1 0 0 4569 -1 -1 4569 1 0 6389 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Notes\probability.html
HTML
269486075 0 -1 787 -1 18889 104 104 1362 353 0 1 48 286 -1 -1 0 0 -1 -1 -1 -1 1 0 18889 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\code\scan.ox
Ox
269485042 0 0 1 4 1 78 78 1336 327 0 0 31 112 -1 -1 0 0 19 0 0 19 1 0 1 4 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\title.html
HTML
269486075 2 -1 173 -1 177 78 78 1456 554 0 1 928 44 -1 -1 0 0 -1 -1 -1 -1 1 0 177 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\contents.html
HTML
269486075 0 -1 424 -1 355 78 78 1336 346 0 1 323 132 -1 -1 0 0 23 -1 -1 23 1 0 355 -1 0 -1 0
:\Users\Chris\Desktop\QC\QCFit.weighted.optobj
DATA
273678578 0 26 1 35 1 78 78 1362 269 1 0 109 896 -1 -1 0 0 8 0 0 8 1 0 1 35 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\CFoxdoc\OxDoc.ox
Ox
269485042 0 5 9 0 1 104 104 1362 353 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\oxdoc\src\entities\OxClass.java
DATA
273678578 1 56 1 58 1 0 0 1258 249 1 0 109 168 -1 -1 0 0 -1 -1 -1 -1 1 0 1 58 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\CFoxdoc\OxDoc.oxh
Ox
269485042 0 6 39 8 1 78 78 1336 327 0 0 31 224 -1 -1 0 0 -1 -1 -1 -1 1 0 1 8 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\oxdoc\src\OxDoc.java
DATA
273678578 0 0 1 0 1 78 78 1336 327 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\print.css
DATA
273678578 0 0 1 0 1 26 26 1284 275 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\css\paper.css
DATA
273678578 0 0 1 0 1 78 78 1336 327 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book\css\print\paper.css
DATA
273678578 0 0 1 9 1 78 78 1336 327 1 0 109 252 -1 -1 0 0 -1 -1 -1 -1 1 0 1 9 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\oxdoc.css
DATA
273744114 0 57 54 57 62 0 0 1378 615 1 0 963 168 -1 -1 0 0 7 0 0 7 1 0 62 57 0 0 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\ConfigEx\ColorEffects.ini
DATA:INI:EDT
269485050 0 17 31 0 1 52 52 987 301 1 1 89 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\ConfigEx\Switches.ini
DATA:INI:EDT
269485050 0 0 1 142 36 104 104 1039 353 1 1 369 0 -1 -1 0 0 -1 -1 -1 -1 1 0 36 142 0 -1 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\ConfigEx\FilterSets.ini
DATA:INI:EDT
269485050 0 628 17 628 18 26 26 961 275 1 1 225 204 -1 -1 0 0 -1 -1 -1 -1 1 0 18 628 0 -1 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\ConfigEx\Keywords.ini
DATA:INI:EDT
269485050 0 1987 11 2064 10 0 0 935 249 1 1 161 102 -1 -1 0 0 -1 -1 -1 -1 1 0 10 2064 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\header.html
HTML
17827834 2 0 462 0 465 52 52 1430 671 0 1 1335 0 -1 -1 0 0 -1 -1 -1 -1 1 0 465 0 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\xx.html
HTML
17827835 0 -1 0 -1 73 78 78 1258 489 0 1 48 44 -1 -1 0 0 -1 -1 -1 -1 1 0 73 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\toc.html
Ox
1049586 0 7 14 5 13 130 130 1508 606 0 0 199 84 -1 -1 0 0 -1 -1 -1 -1 1 0 13 5 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S4a.ox
Ox
1049586 0 17 1 0 1 52 52 1310 320 0 0 31 0 -1 -1 0 0 1 2 2 1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\SUMMARY.hold
DATA
5243122 0 2 1 0 39 26 26 828 421 1 0 641 0 -1 -1 0 0 10 99 99 10 1 0 39 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\README.md
HTML
17827835 0 15 5 -1 0 130 130 1508 768 0 1 48 0 -1 -1 0 0 194 -1 -1 194 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S3a.ox
Ox
1049586 0 1 6 0 1 26 26 1284 294 0 0 31 0 -1 -1 0 0 1 3 3 1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\TommysChoice.ox
Ox
1049586 0 34 1 0 1 104 104 1362 372 0 0 31 0 -1 -1 0 0 14 0 0 14 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\TommyChoice1.ox
Ox
1049586 0 43 20 0 1 78 78 1336 346 0 0 31 0 -1 -1 0 0 14 0 0 14 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S6a.ox
Ox
1049586 0 11 1 33 1 52 52 1310 320 0 0 31 112 -1 -1 0 0 1 4 4 1 1 0 1 33 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S5a.ox
Ox
1049586 1 33 1 39 1 52 52 1310 320 0 0 31 252 -1 -1 0 0 1 5 5 1 1 0 1 39 0 0 0
:\Users\Chris\Desktop\Dope\Dope.h
Ox:UNIX
1147890 0 16 1 19 1 78 78 880 473 0 0 31 532 -1 -1 0 0 17 0 0 17 1 0 1 19 0 0 0
:\Users\Chris\Desktop\QC\QCParams.ox
Ox:UNIX
1147890 0 8 38 0 1 182 182 1554 651 0 0 31 0 -1 -1 0 0 24 0 0 24 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S2a.ox
Ox
1049586 0 1 6 0 1 0 0 1258 268 0 0 31 0 -1 -1 0 0 1 1 1 1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S1a.ox
Ox
1049586 0 0 1 25 1 104 104 1362 372 0 0 31 280 -1 -1 0 0 17 0 0 17 1 0 1 25 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S0.ox
Ox
1049586 1 22 1 26 1 52 52 1310 301 0 0 31 560 -1 -1 0 0 14 0 0 14 1 0 1 26 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\source\preface\README.md
HTML
269486075 0 -1 0 -1 0 104 104 1362 372 0 1 48 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\SUMMARY.md
HTML
286263291 0 -1 1321 -1 9 26 26 828 421 0 1 147 0 -1 -1 0 0 9 -1 -1 9 1 0 9 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\build.ox
Ox
269485042 0 0 1 0 1 0 0 1630 619 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Desktop\Dope\Dope.ox
Ox
269485042 0 25 1 0 1 104 104 906 499 0 0 31 0 -1 -1 0 0 18 0 0 18 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\archX.html
HTML:UNIX
269584379 0 -1 716 -1 1331 182 182 1362 612 0 1 114 352 -1 -1 0 0 109 -1 -1 109 1 0 1331 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\book.json
ASCII
273688434 0 1 26 0 1 0 0 802 395 1 0 109 0 -1 -1 0 0 2 0 0 2 1 0 1 0 0 0 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\ConfigEx\Modes.ini
DATA:INI:EDT
269485050 0 22 66 22 70 156 156 1013 567 1 1 641 374 -1 -1 0 0 83 0 0 83 1 0 70 22 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\TommysChoice1.ox
Ox
1049586 1 32 32 32 17 78 78 1336 346 0 0 255 140 -1 -1 0 0 14 0 0 14 1 0 17 32 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\.bookignore
DATA
273678578 0 0 1 6 7 156 156 958 551 1 0 193 168 -1 -1 0 0 -1 -1 -1 -1 1 0 7 6 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\preface\WhyMeWhyThis.html
HTML
269486075 1 -1 745 -1 13792 182 182 984 577 0 1 48 418 -1 -1 0 0 -1 -1 -1 -1 1 0 13792 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\C4E\.gitignore
DATA
273678578 0 0 1 0 1 156 156 958 551 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\archive.html
HTML:UNIX
269584379 0 -1 283 -1 283 182 182 1362 612 0 1 48 154 -1 -1 0 0 -1 -1 -1 -1 1 0 283 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\.gitignore
DATA
273678578 0 0 1 1 1 156 156 1336 586 1 0 109 28 -1 -1 0 0 -1 -1 -1 -1 1 0 1 1 0 0 0
:\Users\Chris\Desktop\QC\README.md
DATA
273678578 0 0 1 0 1 104 104 1284 534 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Windows\System32\drivers\etc\hosts
TeX
269496315 0 -1 0 -1 0 26 26 1206 456 0 1 53 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 0 0
:\Users\Chris\Desktop\spain.txt
ASCII
273688446 0 30 21 0 1 0 0 802 395 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\index.html
HTML
286263291 0 -1 65803 -1 65799 78 78 1336 346 0 1 488 44 -1 -1 0 0 15 -1 -1 15 1 0 65799 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\print\pdf.css
DATA
273678578 0 4 41 4 51 52 52 1284 313 1 0 809 112 -1 -1 0 0 -1 -1 -1 -1 1 0 51 4 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\oxdoc-lite.css
DATA
273744114 0 14 16 252 1 52 52 1284 313 1 0 109 336 -1 -1 0 0 1 0 0 1 1 0 1 252 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\theme\serif.css
DATA
273678578 0 92 3 287 1 52 52 1232 444 1 0 109 336 -1 -1 0 0 4 0 0 4 1 0 1 287 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S5.txt
ASCII
273688443 0 128 1 143 1 0 0 1232 261 1 0 109 280 -1 -1 0 0 -1 -1 -1 -1 1 0 1 143 0 0 0
:\Users\Chris\Documents\OFFICE\DATA\SSP\ssptext\Binder2.pdf
DATA
273744114 0 0 1 0 1 26 26 1258 287 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\Shared.ox
Ox
269485042 0 31 9 0 1 78 78 1336 346 0 0 31 0 -1 -1 0 0 20 0 0 20 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Data.ox
Ox
269485042 4 1418 26 1418 27 104 104 1362 372 0 0 395 196 -1 -1 0 0 18 0 0 18 1 0 27 1418 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DP.ox
Ox
269485042 2 384 39 384 42 26 26 1284 294 0 0 605 168 -1 -1 0 0 -1 -1 -1 -1 1 0 42 384 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Hybrids\DPSystems.ox
Ox
269485042 0 134 34 0 1 0 0 1258 268 0 0 31 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\StateVariable.ox
Ox
269485042 0 84 16 86 3 52 52 1306 328 0 0 101 224 -1 -1 0 0 27 0 0 27 1 0 3 86 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Methods.ox
Ox
269485042 0 82 8 132 1 104 104 1362 372 0 0 31 308 -1 -1 0 0 -1 -1 -1 -1 1 0 1 132 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\main.ox
Ox
269485042 2 21 27 21 34 78 78 1336 327 0 0 731 196 -1 -1 0 0 -1 -1 -1 -1 1 0 34 21 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\AllTest.ox
Ox
269485042 0 204 15 11 1 52 52 1310 320 0 0 31 308 -1 -1 0 0 -1 -1 -1 -1 1 0 1 11 0 0 0
:\Users\Chris\Desktop\QC\QCParams.oxh
Ox:UNIX
269583346 0 12 71 7 1 208 208 1586 677 0 0 31 196 -1 -1 0 0 22 0 0 22 1 0 1 7 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DDPShared.ox
Ox
269485042 2 34 15 34 22 0 0 1258 249 0 0 325 168 -1 -1 0 0 -1 -1 -1 -1 1 0 22 34 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\DDP.oxdoc
HTML
269486075 2 -1 344 -1 346 666 13 1878 793 0 1 202 154 -1 -1 0 0 78 -1 -1 78 1 0 346 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Clock.ox
Ox
269485042 0 47 1 47 1 26 26 1284 275 0 0 31 140 -1 -1 0 0 -1 -1 -1 -1 1 0 1 47 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Shared.h
Ox
269485042 2 37 9 37 15 104 104 1362 372 0 0 227 168 -1 -1 0 0 101 0 0 101 1 0 15 37 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Bellman.ox
Ox
269485042 2 953 63 953 78 52 52 1310 320 0 0 1109 308 -1 -1 0 0 21 0 0 21 1 0 78 953 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Methods.h
Ox
269485042 0 114 4 114 12 26 26 1284 275 0 0 185 168 -1 -1 0 0 -1 -1 -1 -1 1 0 12 114 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\DPSystems.h
Ox
269485042 2 63 119 63 125 78 78 1336 346 0 0 1190 168 -1 -1 0 0 -1 -1 -1 -1 1 0 125 63 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\WstarTestb.ox
Ox
269485042 1 4 64 4 30 104 104 1362 372 0 0 437 112 -1 -1 0 0 -1 -1 -1 -1 1 0 30 4 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\Tommy1trimmed.txt
ASCII
273688443 0 9 1 0 19 0 0 1258 268 1 0 361 0 -1 -1 0 0 -1 -1 -1 -1 1 0 19 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S1.txt
ASCII
273688443 1 63 1 69 1 26 26 1284 294 1 0 109 327 -1 -1 0 0 1 0 0 1 1 0 1 69 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\Tommy0trimmed.txt
ASCII
273688443 0 27 1 391 1 26 26 1284 294 1 0 109 328 -1 -1 0 0 1 5 5 1 1 0 1 391 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S2trimmed.txt
ASCII
273688443 1 0 1 9 1 52 52 1310 301 1 0 109 252 -1 -1 0 0 -1 -1 -1 -1 1 0 1 9 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S4.txt
ASCII
273688443 0 9 1 15 1 104 104 1362 353 1 0 109 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 15 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S3.txt
ASCII
273688443 1 63 1 69 1 78 78 1336 327 1 0 109 308 -1 -1 0 0 -1 -1 -1 -1 1 0 1 69 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\index.html
HTML
269486075 0 -1 841 -1 709 78 78 1336 350 0 1 48 176 -1 -1 0 0 2474 -1 -1 2474 1 0 709 -1 0 -1 0
:\Users\Chris\Desktop\QC\QC.h
Ox:UNIX
269583346 0 0 1 0 1 156 156 1534 625 0 0 31 0 -1 -1 0 0 17 0 0 17 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Bellman.h
Ox
269485042 0 234 8 249 24 52 52 1310 320 0 0 395 224 -1 -1 0 0 -1 -1 -1 -1 1 0 24 249 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\Data.h
Ox
269485042 2 238 5 238 18 0 0 1258 268 0 0 269 224 -1 -1 0 0 19 0 0 19 1 0 18 238 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\DP.h
Ox
269485042 0 256 55 256 63 26 26 1284 294 0 0 899 168 -1 -1 0 0 20 0 0 20 1 0 63 256 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\include\CGI.oxh
Ox
269485042 0 9 23 0 9 52 52 1284 313 0 0 143 0 -1 -1 0 0 19 0 0 19 1 0 9 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\reveal.css
DATA:UNIX
273776882 2 11 112 11 115 78 78 1310 339 1 0 1313 112 -1 -1 0 0 4 0 0 4 1 0 115 11 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\CGI.ox
Ox
269485042 0 28 12 0 6 26 26 1258 287 0 0 101 0 -1 -1 0 0 19 0 0 19 1 0 6 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\oxcgi.ox
Ox
269485042 0 5 19 5 21 104 104 1482 573 0 0 311 140 -1 -1 0 0 14 0 0 14 1 0 21 5 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\oxcgi.html
HTML
286263291 0 -1 16 -1 171 130 130 1362 391 0 1 48 176 -1 -1 0 0 6 -1 -1 6 1 0 171 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Shared\urlcode.ox
Ox
269485042 0 34 1 0 1 0 0 1232 261 0 0 31 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\theme\default.css
DATA
273678578 2 137 23 137 28 26 26 1206 418 1 0 487 252 -1 -1 0 0 -1 -1 -1 -1 1 0 28 137 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\S2.txt
ASCII
273688443 0 4 1 4 1 52 52 1310 301 1 0 109 112 -1 -1 0 0 -1 -1 -1 -1 1 0 1 4 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S5.ox
Ox
269485042 0 57 28 1 1 52 52 1310 320 0 0 31 28 -1 -1 0 0 17 0 0 17 1 0 1 1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S4.ox
Ox
269485042 0 27 1 32 1 52 52 1310 320 0 0 31 224 -1 -1 0 0 1 0 0 1 1 0 1 32 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S3.ox
Ox
269485042 0 22 13 22 8 26 26 1284 294 0 0 129 252 -1 -1 0 0 17 0 0 17 1 0 8 22 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S2.ox
Ox
269485042 0 0 1 24 31 0 0 1258 268 0 0 451 56 -1 -1 0 0 17 0 0 17 1 0 31 24 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\S1.ox
Ox
269485042 0 10 31 1 10 104 104 1362 372 0 0 157 28 -1 -1 0 0 17 0 0 17 1 0 10 1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\theme\README.md
DATA:UNIX
273776883 0 0 1 5 1 0 0 1180 392 1 0 109 140 -1 -1 0 0 -1 -1 -1 -1 1 0 1 5 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\DDP\Variables.oxdoc
HTML
269486075 0 -1 22071 -1 25520 78 78 1332 354 0 1 48 66 -1 -1 0 0 103 -1 -1 103 1 0 25520 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\Tommy1.txt
ASCII
273688443 0 4 1 12 1 0 0 1258 268 1 0 103 264 -1 -1 0 0 -1 -1 -1 -1 1 0 1 12 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\.gitignore
DATA
273678578 0 0 1 21 10 26 26 1258 287 1 0 220 336 -1 -1 0 0 10 0 0 10 1 0 10 21 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\output\Tommy0.txt
ASCII
273688443 0 71 1 1 1 26 26 1284 294 1 0 103 24 -1 -1 0 0 1 0 0 1 1 0 1 1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\snakeoil.html
HTML
269486075 0 -1 1386 -1 1841 78 78 1336 346 0 1 48 242 -1 -1 0 0 -1 -1 -1 -1 1 0 1841 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\examples\BobsChoiceD1.ox
Ox
269485042 0 0 1 0 1 104 104 1362 372 0 0 30 0 -1 -1 0 0 14 0 0 14 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\reveal.min.css
DATA
273678578 0 0 1 6 2 52 52 1284 313 1 0 116 144 -1 -1 0 0 21 0 0 21 1 0 2 6 0 0 0
:\Users\Chris\Desktop\QC\logs\Data--10-05-2016-7-08-49.log
DATA
273678578 0 0 1 122 7 0 0 1232 261 1 0 181 312 -1 -1 0 0 44 0 0 44 1 0 7 122 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\doc.css
DATA
273744114 0 449 1 0 1 0 0 1258 268 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Hello.html
HTML
286263291 0 -1 825 -1 0 52 52 1310 324 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 0 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\css\myhl.css
DATA:UNIX
273776882 0 5 17 35 1 26 26 1258 287 1 0 103 336 -1 -1 0 0 -1 -1 -1 -1 1 0 1 35 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\plugin\highlight\highlight.js
DATA:UNIX
273776882 0 0 1 14 1 0 0 1232 261 1 0 103 264 -1 -1 0 0 -1 -1 -1 -1 1 0 1 14 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\plugin\highlight\ox.js
DATA:UNIX
273776882 0 5 1 5 1 130 130 1362 391 1 0 103 120 -1 -1 0 0 -1 -1 -1 -1 1 0 1 5 0 0 0
:\Users\Chris\Desktop\QC\logs\Data--2-05-2016-12-41-52.log
DATA
273678578 0 0 1 0 1 130 130 1812 599 1 0 103 -7306 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Desktop\QC\logs\Data--2-05-2016-12-52-50.log
DATA
273678578 0 0 1 0 1 234 234 1916 703 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Desktop\slides\oxsyntax.html
HTML
269486075 0 -1 1531 -1 1683 78 78 1310 339 0 1 675 154 -1 -1 0 0 -1 -1 -1 -1 1 0 1683 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\plugin\highlight\cpp.js
DATA:UNIX
273776882 1 1 1 5 1 130 130 1362 391 1 0 103 120 -1 -1 0 0 3 0 0 3 1 0 1 5 0 0 0
:\Program Files\OxMetrics7\ox\include\oxstd.oxh
Ox
269485042 0 327 1 0 1 104 104 1336 365 0 0 30 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Desktop\slides\css\oxdoc-lite.css
DATA
273744114 0 0 1 0 1 104 104 1336 365 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\text\lib\css\zenburn.css
DATA:UNIX
273776882 0 0 1 0 1 26 26 1258 287 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\ox-doc\oxsyntax.html
HTML
286263291 0 -1 5129 -1 33 78 78 1310 339 0 1 48 66 -1 -1 0 0 15 -1 -1 15 1 0 33 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\CforE.html
HTML
286263291 0 -1 27729 -1 0 50 50 1287 334 0 1 48 0 -1 -1 0 0 13095 -1 -1 13095 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\ox-doc\oxconst.html
HTML
269486075 0 -1 0 -1 300 130 130 1362 391 0 1 48 154 -1 -1 0 0 -1 -1 -1 -1 1 0 300 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\ox-doc\oxtutlan.html
HTML
269486075 0 -1 37908 -1 0 104 104 1336 365 0 1 48 0 -1 -1 0 0 -1 -1 -1 -1 1 0 0 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\doc\ox-doc\oxpackages.html
HTML
269486075 0 -1 0 -1 709 0 0 1232 261 0 1 48 0 -1 -1 0 0 -1 -1 -1 -1 1 0 709 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Style.html
HTML
17827835 0 12 19 -1 728 78 -34 1258 377 0 1 257 220 -1 -1 0 0 57 -1 -1 57 1 0 728 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\OxFunctions.html
HTML
1050619 0 -1 0 -1 0 26 26 1310 236 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 0 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Optimization3.html
HTML
1050619 2 -1 3782 -1 3785 156 156 1534 775 0 1 92 497 -1 -1 0 0 57 -1 -1 57 1 0 3785 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\print.css
DATA:UNIX
5341426 1 67 1 68 1 78 78 1258 508 1 0 103 240 -1 -1 0 0 1 0 0 1 1 0 1 68 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\doc.css
HTML
1116155 0 -1 146 -1 6 0 0 1258 272 1 0 157 0 -1 -1 0 0 7 26 26 7 1 0 6 -1 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Optimization1.html
HTML
17827835 0 -1 4162 -1 2714 52 -60 1232 351 0 1 653 242 -1 -1 0 0 57 -1 -1 57 1 0 2714 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Simulation.html
HTML
1050619 1 -1 4016 -1 4144 260 260 1638 898 0 1 48 242 -1 -1 0 0 57 -1 -1 57 1 0 4144 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\ProgCycle.html
HTML
17827835 1 -1 11387 -1 11569 26 26 1310 243 0 1 48 242 -1 -1 0 0 57 -1 -1 57 1 0 11569 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Non-Linear-Systems.html
HTML
17827835 0 -1 10508 -1 7730 26 26 1206 437 0 1 48 242 -1 -1 0 0 57 -1 -1 57 1 0 7730 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\TheGreatDivide.html
HTML
17827835 0 -1 11570 -1 11663 52 -60 1336 157 0 1 510 242 -1 -1 0 0 29043 -1 -1 29043 1 0 11663 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Tobin.html
HTML
17827835 0 -1 781 -1 770 52 52 1310 324 0 1 48 198 -1 -1 0 0 941 -1 -1 941 1 0 770 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\ExpressYourself.html
HTML
17827835 0 -1 1552 -1 1667 104 104 1362 376 0 1 213 176 -1 -1 0 0 119 -1 -1 119 1 0 1667 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Addresses.html
HTML
17827835 0 -1 5400 -1 6323 0 0 1284 217 0 1 48 132 -1 -1 0 0 6323 -1 -1 6323 1 0 6323 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\AddItUp.html
HTML
17827839 0 720 37 365 102 0 0 1258 272 0 1 1071 242 -1 -1 0 0 21063 -1 -1 21063 1 0 102 365 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Euler.html
HTML
17827835 0 -1 2340 -1 2310 52 52 1310 324 0 1 147 242 -1 -1 0 0 731 -1 -1 731 1 0 2310 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Exercises.html
HTML
17827835 0 -1 4772 -1 0 52 52 1310 324 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 0 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\calculus.html
HTML
17827835 0 -1 12136 -1 14321 0 0 1258 253 0 1 48 66 -1 -1 0 0 5457 -1 -1 5457 1 0 14321 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Nash.html
HTML
286263291 0 -1 2839 -1 4094 52 52 1310 324 0 1 48 308 -1 -1 0 0 58 78 78 58 1 0 4094 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Marshall.html
HTML
286263291 0 -1 3676 -1 3676 52 52 1310 324 0 1 48 88 -1 -1 0 0 3963 -1 -1 3963 1 0 3676 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Edgeworth.html
HTML
286263291 0 -1 1777 -1 746 52 52 1310 324 0 1 48 88 -1 -1 0 0 2304 -1 -1 2304 1 0 746 -1 0 -1 0
:\Users\Chris\Google Drive\Work\HumDimChal\Leach2008\final_code.ox
Ox
269485042 0 754 1 646 1 78 78 1258 489 0 0 30 168 -1 -1 0 0 60 0 0 60 1 0 1 646 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Assignment Part 2\Eric Richert_208547_assignsubmission_file_empricalmicrosimulation.m
DATA
273678578 1 57 1 57 25 286 286 1916 924 1 0 415 312 -1 -1 0 0 -1 -1 -1 -1 1 0 25 57 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Assignment Part 2\Yang Mu_208544_assignsubmission_file_hw3.m
DATA:UNIX
273776882 1 66 1 68 1 0 0 1378 638 1 0 103 630 -1 -1 0 0 -1 -1 -1 -1 1 0 1 68 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Assignment Part 2\Tom Stringham_208542_assignsubmission_file_asst2-2.r
DATA
273678578 0 0 1 70 29 130 130 1310 541 1 0 467 192 -1 -1 0 0 -1 -1 -1 -1 1 0 29 70 0 0 0
:\Users\Chris\Google Drive\Work\HumDimChal\QEDHD\humdim_initial_version.ox
Ox
269485042 0 0 1 0 1 156 156 1336 567 0 0 30 0 -1 -1 0 0 20 0 0 20 1 0 1 0 0 0 0
:\Users\Chris\Downloads\Midterm Take Home - Attempt Details.csv
DATA
273678578 0 0 1 26 565 52 52 1682 690 1 0 1871 624 -1 -1 0 0 -1 -1 -1 -1 1 0 565 26 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\midterm.html
HTML
286263291 0 -1 2741 -1 3372 182 182 1362 593 1 1 936 308 -1 -1 0 0 4539 -1 -1 4539 1 0 3372 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Course Documents_files\print.css
DATA:UNIX
273776882 0 0 1 0 1 78 78 1258 508 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\doc.css
HTML
269551611 0 -1 7900 -1 7900 0 0 1258 272 1 0 102 396 -1 -1 0 0 6 -1 -1 6 1 0 7900 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\midterm.txt
HTML
286263291 0 -1 255 -1 260 182 182 1362 593 0 1 103 154 -1 -1 0 0 1200 -1 -1 1200 1 0 260 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\group-week7.html
HTML
286263291 0 -1 1445 -1 972 156 156 1090 551 0 1 48 264 -1 -1 0 0 -1 -1 -1 -1 1 0 972 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\ProgFAQ.html
HTML
286263291 2 -1 18963 -1 18966 52 -60 1310 212 0 1 488 528 -1 -1 0 0 21533 -1 -1 21533 1 0 18966 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Optimization2.html
HTML
269486075 0 84 62 -1 3766 130 130 1508 749 0 1 796 880 -1 -1 0 0 57 -1 -1 57 1 0 3766 -1 0 -1 0
:\Users\Chris\Google Drive\Work\HumDimChal\QEDHD\README-CF.txt
ASCII
273688443 0 18 41 0 1 182 182 1362 593 1 0 103 0 -1 -1 0 0 66 0 0 66 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\example.do
DATA
273678578 0 0 1 36 1 130 130 1310 541 1 0 103 864 -1 -1 0 0 1 0 0 1 1 0 1 36 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\hecksim.ado
DATA
273678578 0 0 1 0 1 104 104 1284 515 1 0 103 0 -1 -1 0 0 23 0 0 23 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\numerical-limits.ox
Ox
269485042 0 8 53 9 47 26 26 1284 260 0 0 628 216 -1 -1 0 0 97 0 0 97 1 0 47 9 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Puzzle.html
HTML
286263291 0 -1 3210 -1 3864 0 0 1258 272 0 1 48 154 -1 -1 0 0 9401 -1 -1 9401 1 0 3864 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\character.tex
TeX
269496315 0 -1 0 -1 569 26 26 1284 279 0 1 258 120 -1 -1 0 0 11 -1 -1 11 1 0 569 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Oz2016\syllabus.txt
ASCII
273688442 0 0 1 0 1 26 26 1284 279 1 0 103 0 -1 -1 0 0 55 0 0 55 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\PROF\VITAE\review.txt
ASCII
273688443 0 61 1 1 1 0 0 1180 411 1 0 103 24 -1 -1 0 0 1 0 0 1 1 0 1 1 0 0 0
:\Users\Chris\Documents\OFFICE\DATA\NSG\shaq86.log
DATA
273678578 0 0 1 0 1 26 26 1656 645 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\methods\lecture\training2015MERGED.tex
TeX
269496315 0 -1 55350 -1 55484 0 0 1180 411 0 1 583 168 -1 -1 0 0 19 -1 -1 19 1 0 55484 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\hw1.do
DATA:UNIX
273776882 0 0 1 0 1 156 156 1336 567 1 0 103 -1080 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\HumDimChal\QEDHD\include\humdim.ox
Ox
269485042 0 365 4 0 1 26 26 1206 437 0 0 30 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\HumDimChal\QEDHD\include\humdim.oxh
Ox
269485042 0 41 40 41 50 52 52 1232 463 0 0 667 432 -1 -1 0 0 -1 -1 -1 -1 1 0 50 41 0 0 0
:\Users\Chris\Google Drive\Work\HumDimChal\QEDHD\main.ox
Ox
269485042 0 14 43 15 49 0 0 1180 411 0 0 654 360 -1 -1 0 0 -1 -1 -1 -1 1 0 49 15 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\inclass-quiz.txt
ASCII
5252986 0 28 3 0 1 52 52 1310 305 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\step2.do
DATA
5243122 0 7 1 0 1 0 -112 1630 507 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Eric\econ861a1q1r2.do
DATA
5243122 1 288 1 288 60 0 326 1916 764 1 0 870 216 -1 -1 0 0 -1 -1 -1 -1 1 0 60 288 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Margaux\A1_code.do
DATA
5243122 1 559 1 560 1 222 121 1852 740 1 0 103 240 -1 -1 0 0 -1 -1 -1 -1 1 0 1 560 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Aaron\Aaron Gladstone_167186_assignsubmission_file_Assignment 1 Do File.do
DATA:UNIX
5341426 0 620 1 531 22 104 -8 1734 611 1 0 376 264 -1 -1 0 0 -1 -1 -1 -1 1 0 22 531 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Tom\asst1.do
DATA
5243122 0 201 1 0 1 130 18 1760 637 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Daniel\FULL DO A1.do
DATA
5243122 1 2023 1 2024 1 182 70 1345 464 1 0 103 264 -1 -1 0 0 -1 -1 -1 -1 1 0 1 2024 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\ass1.txt
ASCII
5252986 0 53 74 53 57 0 -112 1916 326 1 0 831 168 -1 -1 0 0 -1 -1 -1 -1 1 0 57 53 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Farrisaa\assignment1.do
DATA
5243122 0 210 14 208 1 26 -86 1656 533 1 0 103 240 -1 -1 0 0 -1 -1 -1 -1 1 0 1 208 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Alex\Estimation A1.do
DATA
5243122 0 20 1 21 1 0 0 1378 438 1 0 103 168 -1 -1 0 0 -1 -1 -1 -1 1 0 1 21 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Yang\hw1.do
DATA:UNIX
5341426 0 168 1 168 1 156 156 1319 550 1 0 103 24 -1 -1 0 0 -1 -1 -1 -1 1 0 1 168 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Makefile
TeX
1060859 0 -1 0 -1 800 182 182 1812 801 0 1 427 576 -1 -1 0 0 -1 -1 -1 -1 1 0 800 -1 0 0 0
:\Users\Chris\Documents\OFFICE\software\Microeconometrics\niqlow\source\Makefile.inc
DATA
5243122 1 13 11 13 55 208 208 1838 827 1 0 844 240 -1 -1 0 0 -1 -1 -1 -1 1 0 55 13 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\edgeworth2\doc.bat
Application
1049586 0 0 120 1 1 234 234 1864 853 0 0 30 24 -1 -1 0 0 -1 -1 -1 -1 1 0 1 1 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\calculus2.html
HTML
1050619 0 -1 735 -1 4052 -15 101 1363 739 0 1 895 220 -1 -1 0 0 57 -1 -1 57 1 0 4052 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\LinearAlgebra.html
HTML
17827835 2 -1 1985 -1 1991 104 104 1362 376 0 1 224 176 -1 -1 0 0 7944 -1 -1 7944 1 0 1991 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\address2.tex
TeX
1060859 1 -1 229 -1 748 0 0 1258 253 0 1 50 168 -1 -1 0 0 7 -1 -1 7 1 0 748 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\characterB.tex
TeX
1060859 1 -1 13 -1 1260 52 52 1310 305 0 1 50 168 -1 -1 0 0 11 -1 -1 11 1 0 1260 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\arguments2.ox
Ox
1049586 0 0 1 3 14 78 78 1336 312 0 0 199 72 -1 -1 0 0 19 0 0 19 1 0 14 3 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\no-return.ox
Ox
1049586 0 8 6 0 1 104 104 1362 338 0 0 30 0 -1 -1 0 0 19 0 0 19 1 0 1 0 0 0 0
:\Users\Chris\Documents\To File\chetty.html
HTML
1050619 0 -1 6180 -1 0 104 104 1362 338 0 1 48 0 -1 -1 0 0 48 -1 -1 48 1 0 0 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\pat.mat
ASCII
5252987 0 0 23 0 1 -47 33 1331 671 1 0 103 0 -1 -1 0 0 70 0 0 70 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\jordan.mat
ASCII
5252987 0 0 26 0 1 -37 46 1341 684 1 0 103 0 -1 -1 0 0 73 0 0 73 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Binding.html
HTML
17827835 4 -1 33955 -1 33956 78 78 1258 489 0 1 59 330 -1 -1 0 0 57 -1 -1 57 1 0 33956 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\edgeworth2\CheckPareto.ox
Ox
1049586 0 0 21 8 1 156 156 1786 775 0 0 30 -236 -1 -1 0 0 -1 -1 -1 -1 1 0 1 8 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\Yang\._hw1.do
DATA
5243122 0 0 1 0 1 78 78 1708 697 1 0 40 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\projects.txt
ASCII
273688443 1 2 1 36 1 78 78 1786 539 1 0 103 342 -1 -1 0 0 -1 -1 -1 -1 1 0 1 36 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\assign2.html
HTML
286263291 1 -1 0 -1 2550 0 0 1258 253 0 1 48 308 -1 -1 0 0 -1 -1 -1 -1 1 0 2550 -1 0 -1 0
:\Users\Chris\Documents\OFFICE\DATA\Published\Lmas.zip
DATA:UNIX
273776882 0 0 1 0 1 26 26 1284 279 1 0 103 0 -1 -1 0 0 5 0 0 5 1 0 1 0 0 0 0
:\Users\Chris\Desktop\humdim.ppk
DATA
273678578 0 0 1 0 1 130 130 1838 591 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\CforEcannabilized.tex
TeX
269496315 0 -1 81 -1 4382 50 50 1287 334 0 1 50 168 -1 -1 0 0 29602 -1 -1 29602 1 0 4382 -1 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Notes\Simulation.html
HTML
269486075 0 -1 4540 -1 5040 260 260 1638 898 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 5040 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\HardwareForDummies.html
HTML
269486075 0 -1 23638 -1 23478 26 26 1284 298 0 1 48 418 -1 -1 0 0 23638 -1 -1 23638 1 0 23478 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\MachineHead.html
HTML
269486075 0 298 18 -1 18550 26 26 1284 298 0 1 752 418 -1 -1 0 0 18940 -1 -1 18940 1 0 18550 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\GatherYourTools.html
HTML
286263291 0 52 2 -1 1909 52 52 1310 324 0 1 48 154 -1 -1 0 0 4285 -1 -1 4285 1 0 1909 -1 0 -1 0
:\Users\Chris\AppData\Roaming\WinEdt Team\WinEdt 9\Exec\Ox\OxDoc.edt
ASCII:EDT
269494138 0 3 83 4 148 100 100 1128 396 1 0 1249 68 -1 -1 0 0 64 0 0 64 1 0 148 4 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\edgeworth.ox
Ox
269485042 0 0 1 5 41 0 0 1254 223 0 0 550 120 -1 -1 0 0 -1 -1 -1 -1 1 0 41 5 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ860\econ861a1q1r2.do
DATA
273678578 0 0 1 271 1 26 26 1404 487 1 0 103 30 -1 -1 0 0 -1 -1 -1 -1 1 0 1 271 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\numerical-limits.ox
Ox
269485042 0 3 1 0 57 26 26 1284 260 0 0 758 0 -1 -1 0 0 -1 -1 -1 -1 1 0 57 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\methods\code\second.ox
Ox
269485042 0 0 1 0 1 26 26 1284 260 0 0 30 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\NumMeth\round-off.ox
Ox
269485042 0 0 1 0 1 0 0 1258 234 0 0 30 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\arguments2.ox
Ox
269485042 0 3 10 3 11 78 78 1336 312 0 0 160 72 -1 -1 0 0 -1 -1 -1 -1 1 0 11 3 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ354\key\arguments.ox
Ox
269485042 0 3 10 3 11 78 78 1336 312 0 0 160 72 -1 -1 0 0 -1 -1 -1 -1 1 0 11 3 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\no-return.ox
Ox
269485042 0 8 6 0 1 104 104 1362 338 0 0 30 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\arguments.ox
Ox
269485042 0 0 1 7 9 78 78 1336 312 0 0 134 168 -1 -1 0 0 -1 -1 -1 -1 1 0 9 7 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\Addresses.tex
TeX
269496315 0 -1 0 -1 0 25 25 939 287 0 1 50 0 -1 -1 0 0 25 -1 -1 25 1 0 0 -1 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\Optimization.html
HTML
286263291 0 -1 6160 -1 0 52 52 1232 463 0 1 48 0 -1 -1 0 0 57 -1 -1 57 1 0 0 -1 0 -1 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\pat.mat
ASCII
273688443 0 0 23 0 1 26 26 1656 664 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Google Drive\Work\TeXBook\HTMLversion\code\jordan.mat
ASCII
273688443 0 0 26 0 1 52 52 1682 690 1 0 103 0 -1 -1 0 0 -1 -1 -1 -1 1 0 1 0 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\FinalProjectGradesByGroup.txt
ASCII
273688446 0 0 9 3 11 78 78 1336 331 1 0 285 72 -1 -1 0 0 9 0 0 9 1 0 11 3 0 0 0
:\Users\Chris\Documents\OFFICE\CLASSES\Econ452\Notes\Likelihood.html
HTML
269486075 2 -1 4296 -1 4305 26 26 1284 298 0 1 147 154 -1 -1 0 0 5064 -1 -1 5064 1 0 4305 -1 0 -1 0