master a0724d5e1a61 cached
7102 files
14.2 MB
4.0M tokens
957 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (16,060K chars total). Download the full file to get everything.
Repository: alberduris/The_Math_of_Intelligence
Branch: master
Commit: a0724d5e1a61
Files: 7102
Total size: 14.2 MB

Directory structure:
gitextract_lqk5cqqe/

├── README.md
├── Week1/
│   ├── ADRvsRating.csv
│   ├── README.md
│   └── demo.ipynb
├── Week10/
│   ├── .ipynb_checkpoints/
│   │   └── QuantumComputing - Bell State Tomography-checkpoint.ipynb
│   ├── QuantumComputing - Bell State Tomography.ipynb
│   ├── README.md
│   └── qiskit-sdk-py-master/
│       ├── .github/
│       │   ├── ISSUE_TEMPLATE.md
│       │   └── PULL_REQUEST_TEMPLATE.md
│       ├── .gitignore
│       ├── .pylintrc
│       ├── .travis.yml
│       ├── CODEOWNERS
│       ├── CONTRIBUTING.rst
│       ├── LICENSE
│       ├── Makefile
│       ├── README.rst
│       ├── doc/
│       │   ├── Makefile
│       │   ├── conf.py
│       │   ├── contributing.rst
│       │   ├── index.rst
│       │   └── make.bat
│       ├── examples/
│       │   ├── jupyter/
│       │   │   └── quantum_state_tomography_bell_states.ipynb
│       │   ├── python/
│       │   │   ├── ghz.py
│       │   │   ├── qft.py
│       │   │   ├── rippleadd.py
│       │   │   └── teleport.py
│       │   └── qasm/
│       │       ├── entangled_registers.qasm
│       │       └── plaquette_check.qasm
│       ├── qiskit/
│       │   ├── __init__.py
│       │   ├── _classicalregister.py
│       │   ├── _compositegate.py
│       │   ├── _gate.py
│       │   ├── _instruction.py
│       │   ├── _instructionset.py
│       │   ├── _measure.py
│       │   ├── _qiskiterror.py
│       │   ├── _quantumcircuit.py
│       │   ├── _quantumprogram.py
│       │   ├── _quantumregister.py
│       │   ├── _register.py
│       │   ├── _reset.py
│       │   ├── dagcircuit/
│       │   │   ├── __init__.py
│       │   │   ├── _dagcircuit.py
│       │   │   └── _dagcircuiterror.py
│       │   ├── extensions/
│       │   │   ├── __init__.py
│       │   │   ├── _extensionerror.py
│       │   │   └── standard/
│       │   │       ├── __init__.py
│       │   │       ├── barrier.py
│       │   │       ├── ccx.py
│       │   │       ├── ch.py
│       │   │       ├── crz.py
│       │   │       ├── cswap.py
│       │   │       ├── cu1.py
│       │   │       ├── cu3.py
│       │   │       ├── cx.py
│       │   │       ├── cxbase.py
│       │   │       ├── cy.py
│       │   │       ├── cz.py
│       │   │       ├── gatestools.py
│       │   │       ├── h.py
│       │   │       ├── header.py
│       │   │       ├── iden.py
│       │   │       ├── rx.py
│       │   │       ├── ry.py
│       │   │       ├── rz.py
│       │   │       ├── s.py
│       │   │       ├── swap.py
│       │   │       ├── t.py
│       │   │       ├── u1.py
│       │   │       ├── u2.py
│       │   │       ├── u3.py
│       │   │       ├── ubase.py
│       │   │       ├── x.py
│       │   │       ├── y.py
│       │   │       └── z.py
│       │   ├── mapper/
│       │   │   ├── __init__.py
│       │   │   ├── _compiling.py
│       │   │   ├── _coupling.py
│       │   │   ├── _couplingerror.py
│       │   │   ├── _mappererror.py
│       │   │   └── _mapping.py
│       │   ├── qasm/
│       │   │   ├── __init__.py
│       │   │   ├── _node/
│       │   │   │   ├── __init__.py
│       │   │   │   ├── _barrier.py
│       │   │   │   ├── _binaryop.py
│       │   │   │   ├── _cnot.py
│       │   │   │   ├── _creg.py
│       │   │   │   ├── _customunitary.py
│       │   │   │   ├── _expressionlist.py
│       │   │   │   ├── _external.py
│       │   │   │   ├── _gate.py
│       │   │   │   ├── _gatebody.py
│       │   │   │   ├── _id.py
│       │   │   │   ├── _idlist.py
│       │   │   │   ├── _if.py
│       │   │   │   ├── _indexedid.py
│       │   │   │   ├── _intnode.py
│       │   │   │   ├── _magic.py
│       │   │   │   ├── _measure.py
│       │   │   │   ├── _node.py
│       │   │   │   ├── _nodeexception.py
│       │   │   │   ├── _opaque.py
│       │   │   │   ├── _prefix.py
│       │   │   │   ├── _primarylist.py
│       │   │   │   ├── _program.py
│       │   │   │   ├── _qreg.py
│       │   │   │   ├── _real.py
│       │   │   │   ├── _reset.py
│       │   │   │   └── _universalunitary.py
│       │   │   ├── _qasm.py
│       │   │   ├── _qasmerror.py
│       │   │   ├── _qasmlexer.py
│       │   │   ├── _qasmparser.py
│       │   │   └── libs/
│       │   │       └── qelib1.inc
│       │   ├── simulators/
│       │   │   ├── __init__.py
│       │   │   ├── _localsimulator.py
│       │   │   ├── _qasm_cpp_simulator.py
│       │   │   ├── _qasmsimulator.py
│       │   │   ├── _simulatorerror.py
│       │   │   ├── _simulatortools.py
│       │   │   └── _unitarysimulator.py
│       │   └── unroll/
│       │       ├── __init__.py
│       │       ├── _backenderror.py
│       │       ├── _circuitbackend.py
│       │       ├── _dagbackend.py
│       │       ├── _jsonbackend.py
│       │       ├── _printerbackend.py
│       │       ├── _unroller.py
│       │       ├── _unrollerbackend.py
│       │       └── _unrollererror.py
│       ├── requires-dev.txt
│       ├── requires.txt
│       ├── test/
│       │   ├── __init__.py
│       │   └── python/
│       │       ├── H2Equilibrium.txt
│       │       ├── __init__.py
│       │       ├── _random_qasm_generator.py
│       │       ├── qasm/
│       │       │   └── example.qasm
│       │       ├── qiskit
│       │       ├── test_apps.py
│       │       ├── test_jsonoutput.py
│       │       ├── test_load.json
│       │       ├── test_local_simulator.py
│       │       ├── test_qasm_python_simulator.py
│       │       ├── test_qi.py
│       │       ├── test_quantumprogram.py
│       │       ├── test_save.json
│       │       └── test_unitary_python_simulator.py
│       └── tools/
│           ├── apps/
│           │   ├── fermion.py
│           │   └── optimization.py
│           ├── qcvv/
│           │   ├── fitters.py
│           │   └── tomography.py
│           ├── qi/
│           │   ├── pauli.py
│           │   └── qi.py
│           └── visualization.py
├── Week2/
│   ├── README.md
│   ├── newtons_method_optimization.ipynb
│   └── newtons_method_root_finding.ipynb
├── Week3/
│   ├── LinearRegression-L1-Regularization.ipynb
│   ├── LinearRegression-L2-Regularization.ipynb
│   ├── LinearRegression.ipynb
│   ├── README.md
│   └── blood_fat.csv
├── Week4/
│   ├── README.md
│   ├── SOM-Word2Vec.ipynb
│   ├── SelfOrganizingMap.ipynb
│   └── som_got_embedding_lookup.txt
├── Week5/
│   ├── PCA.ipynb
│   ├── README.md
│   └── som_got_embedding_lookup.txt
├── Week6/
│   ├── NaiveBayesClassifierTextCorpus.ipynb
│   ├── README.md
│   └── data_reviews.csv
├── Week7/
│   ├── Hyperparameter_Optimization.ipynb
│   ├── README.md
│   ├── test.csv
│   └── train.csv
├── Week8/
│   ├── .ipynb_checkpoints/
│   │   └── LDA-Copy1-checkpoint.ipynb
│   ├── LDA.ipynb
│   ├── README.md
│   ├── data/
│   │   ├── doc0.txt
│   │   ├── doc1.txt
│   │   ├── doc10.txt
│   │   ├── doc100.txt
│   │   ├── doc1000.txt
│   │   ├── doc1001.txt
│   │   ├── doc1002.txt
│   │   ├── doc1003.txt
│   │   ├── doc1004.txt
│   │   ├── doc1005.txt
│   │   ├── doc1006.txt
│   │   ├── doc1007.txt
│   │   ├── doc1008.txt
│   │   ├── doc1009.txt
│   │   ├── doc101.txt
│   │   ├── doc1010.txt
│   │   ├── doc1011.txt
│   │   ├── doc1012.txt
│   │   ├── doc1013.txt
│   │   ├── doc1014.txt
│   │   ├── doc1015.txt
│   │   ├── doc1016.txt
│   │   ├── doc1017.txt
│   │   ├── doc1018.txt
│   │   ├── doc1019.txt
│   │   ├── doc102.txt
│   │   ├── doc1020.txt
│   │   ├── doc1021.txt
│   │   ├── doc1022.txt
│   │   ├── doc1023.txt
│   │   ├── doc1024.txt
│   │   ├── doc1025.txt
│   │   ├── doc1026.txt
│   │   ├── doc1027.txt
│   │   ├── doc1028.txt
│   │   ├── doc1029.txt
│   │   ├── doc103.txt
│   │   ├── doc1030.txt
│   │   ├── doc1031.txt
│   │   ├── doc1032.txt
│   │   ├── doc1033.txt
│   │   ├── doc1034.txt
│   │   ├── doc1035.txt
│   │   ├── doc1036.txt
│   │   ├── doc1037.txt
│   │   ├── doc1038.txt
│   │   ├── doc1039.txt
│   │   ├── doc104.txt
│   │   ├── doc1040.txt
│   │   ├── doc1041.txt
│   │   ├── doc1042.txt
│   │   ├── doc1043.txt
│   │   ├── doc1044.txt
│   │   ├── doc1045.txt
│   │   ├── doc1046.txt
│   │   ├── doc1047.txt
│   │   ├── doc1048.txt
│   │   ├── doc1049.txt
│   │   ├── doc105.txt
│   │   ├── doc1050.txt
│   │   ├── doc1051.txt
│   │   ├── doc1052.txt
│   │   ├── doc1053.txt
│   │   ├── doc1054.txt
│   │   ├── doc1055.txt
│   │   ├── doc1056.txt
│   │   ├── doc1057.txt
│   │   ├── doc1058.txt
│   │   ├── doc1059.txt
│   │   ├── doc106.txt
│   │   ├── doc1060.txt
│   │   ├── doc1061.txt
│   │   ├── doc1062.txt
│   │   ├── doc1063.txt
│   │   ├── doc1064.txt
│   │   ├── doc1065.txt
│   │   ├── doc1066.txt
│   │   ├── doc1067.txt
│   │   ├── doc1068.txt
│   │   ├── doc1069.txt
│   │   ├── doc107.txt
│   │   ├── doc1070.txt
│   │   ├── doc1071.txt
│   │   ├── doc1072.txt
│   │   ├── doc1073.txt
│   │   ├── doc1074.txt
│   │   ├── doc1075.txt
│   │   ├── doc1076.txt
│   │   ├── doc1077.txt
│   │   ├── doc1078.txt
│   │   ├── doc1079.txt
│   │   ├── doc108.txt
│   │   ├── doc1080.txt
│   │   ├── doc1081.txt
│   │   ├── doc1082.txt
│   │   ├── doc1083.txt
│   │   ├── doc1084.txt
│   │   ├── doc1085.txt
│   │   ├── doc1086.txt
│   │   ├── doc1087.txt
│   │   ├── doc1088.txt
│   │   ├── doc1089.txt
│   │   ├── doc109.txt
│   │   ├── doc1090.txt
│   │   ├── doc1091.txt
│   │   ├── doc1092.txt
│   │   ├── doc1093.txt
│   │   ├── doc1094.txt
│   │   ├── doc1095.txt
│   │   ├── doc1096.txt
│   │   ├── doc1097.txt
│   │   ├── doc1098.txt
│   │   ├── doc1099.txt
│   │   ├── doc11.txt
│   │   ├── doc110.txt
│   │   ├── doc1100.txt
│   │   ├── doc1101.txt
│   │   ├── doc1102.txt
│   │   ├── doc1103.txt
│   │   ├── doc1104.txt
│   │   ├── doc1105.txt
│   │   ├── doc1106.txt
│   │   ├── doc1107.txt
│   │   ├── doc1108.txt
│   │   ├── doc1109.txt
│   │   ├── doc111.txt
│   │   ├── doc1110.txt
│   │   ├── doc1111.txt
│   │   ├── doc1112.txt
│   │   ├── doc1113.txt
│   │   ├── doc1114.txt
│   │   ├── doc1115.txt
│   │   ├── doc1116.txt
│   │   ├── doc1117.txt
│   │   ├── doc1118.txt
│   │   ├── doc1119.txt
│   │   ├── doc112.txt
│   │   ├── doc1120.txt
│   │   ├── doc1121.txt
│   │   ├── doc1122.txt
│   │   ├── doc1123.txt
│   │   ├── doc1124.txt
│   │   ├── doc1125.txt
│   │   ├── doc1126.txt
│   │   ├── doc1127.txt
│   │   ├── doc1128.txt
│   │   ├── doc1129.txt
│   │   ├── doc113.txt
│   │   ├── doc1130.txt
│   │   ├── doc1131.txt
│   │   ├── doc1132.txt
│   │   ├── doc1133.txt
│   │   ├── doc1134.txt
│   │   ├── doc1135.txt
│   │   ├── doc1136.txt
│   │   ├── doc1137.txt
│   │   ├── doc1138.txt
│   │   ├── doc1139.txt
│   │   ├── doc114.txt
│   │   ├── doc1140.txt
│   │   ├── doc1141.txt
│   │   ├── doc1142.txt
│   │   ├── doc1143.txt
│   │   ├── doc1144.txt
│   │   ├── doc1145.txt
│   │   ├── doc1146.txt
│   │   ├── doc1147.txt
│   │   ├── doc1148.txt
│   │   ├── doc1149.txt
│   │   ├── doc115.txt
│   │   ├── doc1150.txt
│   │   ├── doc1151.txt
│   │   ├── doc1152.txt
│   │   ├── doc1153.txt
│   │   ├── doc1154.txt
│   │   ├── doc1155.txt
│   │   ├── doc1156.txt
│   │   ├── doc1157.txt
│   │   ├── doc1158.txt
│   │   ├── doc1159.txt
│   │   ├── doc116.txt
│   │   ├── doc1160.txt
│   │   ├── doc1161.txt
│   │   ├── doc1162.txt
│   │   ├── doc1163.txt
│   │   ├── doc1164.txt
│   │   ├── doc1165.txt
│   │   ├── doc1166.txt
│   │   ├── doc1167.txt
│   │   ├── doc1168.txt
│   │   ├── doc1169.txt
│   │   ├── doc117.txt
│   │   ├── doc1170.txt
│   │   ├── doc1171.txt
│   │   ├── doc1172.txt
│   │   ├── doc1173.txt
│   │   ├── doc1174.txt
│   │   ├── doc1175.txt
│   │   ├── doc1176.txt
│   │   ├── doc1177.txt
│   │   ├── doc1178.txt
│   │   ├── doc1179.txt
│   │   ├── doc118.txt
│   │   ├── doc1180.txt
│   │   ├── doc1181.txt
│   │   ├── doc1182.txt
│   │   ├── doc1183.txt
│   │   ├── doc1184.txt
│   │   ├── doc1185.txt
│   │   ├── doc1186.txt
│   │   ├── doc1187.txt
│   │   ├── doc1188.txt
│   │   ├── doc1189.txt
│   │   ├── doc119.txt
│   │   ├── doc1190.txt
│   │   ├── doc1191.txt
│   │   ├── doc1192.txt
│   │   ├── doc1193.txt
│   │   ├── doc1194.txt
│   │   ├── doc1195.txt
│   │   ├── doc1196.txt
│   │   ├── doc1197.txt
│   │   ├── doc1198.txt
│   │   ├── doc1199.txt
│   │   ├── doc12.txt
│   │   ├── doc120.txt
│   │   ├── doc1200.txt
│   │   ├── doc1201.txt
│   │   ├── doc1202.txt
│   │   ├── doc1203.txt
│   │   ├── doc1204.txt
│   │   ├── doc1205.txt
│   │   ├── doc1206.txt
│   │   ├── doc1207.txt
│   │   ├── doc1208.txt
│   │   ├── doc1209.txt
│   │   ├── doc121.txt
│   │   ├── doc1210.txt
│   │   ├── doc1211.txt
│   │   ├── doc1212.txt
│   │   ├── doc1213.txt
│   │   ├── doc1214.txt
│   │   ├── doc1215.txt
│   │   ├── doc1216.txt
│   │   ├── doc1217.txt
│   │   ├── doc1218.txt
│   │   ├── doc1219.txt
│   │   ├── doc122.txt
│   │   ├── doc1220.txt
│   │   ├── doc1221.txt
│   │   ├── doc1222.txt
│   │   ├── doc1223.txt
│   │   ├── doc1224.txt
│   │   ├── doc1225.txt
│   │   ├── doc1226.txt
│   │   ├── doc1227.txt
│   │   ├── doc1228.txt
│   │   ├── doc1229.txt
│   │   ├── doc123.txt
│   │   ├── doc1230.txt
│   │   ├── doc1231.txt
│   │   ├── doc1232.txt
│   │   ├── doc1233.txt
│   │   ├── doc1234.txt
│   │   ├── doc1235.txt
│   │   ├── doc1236.txt
│   │   ├── doc1237.txt
│   │   ├── doc1238.txt
│   │   ├── doc1239.txt
│   │   ├── doc124.txt
│   │   ├── doc1240.txt
│   │   ├── doc1241.txt
│   │   ├── doc1242.txt
│   │   ├── doc1243.txt
│   │   ├── doc1244.txt
│   │   ├── doc1245.txt
│   │   ├── doc1246.txt
│   │   ├── doc1247.txt
│   │   ├── doc1248.txt
│   │   ├── doc1249.txt
│   │   ├── doc125.txt
│   │   ├── doc1250.txt
│   │   ├── doc1251.txt
│   │   ├── doc1252.txt
│   │   ├── doc1253.txt
│   │   ├── doc1254.txt
│   │   ├── doc1255.txt
│   │   ├── doc1256.txt
│   │   ├── doc1257.txt
│   │   ├── doc1258.txt
│   │   ├── doc1259.txt
│   │   ├── doc126.txt
│   │   ├── doc1260.txt
│   │   ├── doc1261.txt
│   │   ├── doc1262.txt
│   │   ├── doc1263.txt
│   │   ├── doc1264.txt
│   │   ├── doc1265.txt
│   │   ├── doc1266.txt
│   │   ├── doc1267.txt
│   │   ├── doc1268.txt
│   │   ├── doc1269.txt
│   │   ├── doc127.txt
│   │   ├── doc1270.txt
│   │   ├── doc1271.txt
│   │   ├── doc1272.txt
│   │   ├── doc1273.txt
│   │   ├── doc1274.txt
│   │   ├── doc1275.txt
│   │   ├── doc1276.txt
│   │   ├── doc1277.txt
│   │   ├── doc1278.txt
│   │   ├── doc1279.txt
│   │   ├── doc128.txt
│   │   ├── doc1280.txt
│   │   ├── doc1281.txt
│   │   ├── doc1282.txt
│   │   ├── doc1283.txt
│   │   ├── doc1284.txt
│   │   ├── doc1285.txt
│   │   ├── doc1286.txt
│   │   ├── doc1287.txt
│   │   ├── doc1288.txt
│   │   ├── doc1289.txt
│   │   ├── doc129.txt
│   │   ├── doc1290.txt
│   │   ├── doc1291.txt
│   │   ├── doc1292.txt
│   │   ├── doc1293.txt
│   │   ├── doc1294.txt
│   │   ├── doc1295.txt
│   │   ├── doc1296.txt
│   │   ├── doc1297.txt
│   │   ├── doc1298.txt
│   │   ├── doc1299.txt
│   │   ├── doc13.txt
│   │   ├── doc130.txt
│   │   ├── doc1300.txt
│   │   ├── doc1301.txt
│   │   ├── doc1302.txt
│   │   ├── doc1303.txt
│   │   ├── doc1304.txt
│   │   ├── doc1305.txt
│   │   ├── doc1306.txt
│   │   ├── doc1307.txt
│   │   ├── doc1308.txt
│   │   ├── doc1309.txt
│   │   ├── doc131.txt
│   │   ├── doc1310.txt
│   │   ├── doc1311.txt
│   │   ├── doc1312.txt
│   │   ├── doc1313.txt
│   │   ├── doc1314.txt
│   │   ├── doc1315.txt
│   │   ├── doc1316.txt
│   │   ├── doc1317.txt
│   │   ├── doc1318.txt
│   │   ├── doc1319.txt
│   │   ├── doc132.txt
│   │   ├── doc1320.txt
│   │   ├── doc1321.txt
│   │   ├── doc1322.txt
│   │   ├── doc1323.txt
│   │   ├── doc1324.txt
│   │   ├── doc1325.txt
│   │   ├── doc1326.txt
│   │   ├── doc1327.txt
│   │   ├── doc1328.txt
│   │   ├── doc1329.txt
│   │   ├── doc133.txt
│   │   ├── doc1330.txt
│   │   ├── doc1331.txt
│   │   ├── doc1332.txt
│   │   ├── doc1333.txt
│   │   ├── doc1334.txt
│   │   ├── doc1335.txt
│   │   ├── doc1336.txt
│   │   ├── doc1337.txt
│   │   ├── doc1338.txt
│   │   ├── doc1339.txt
│   │   ├── doc134.txt
│   │   ├── doc1340.txt
│   │   ├── doc1341.txt
│   │   ├── doc1342.txt
│   │   ├── doc1343.txt
│   │   ├── doc1344.txt
│   │   ├── doc1345.txt
│   │   ├── doc1346.txt
│   │   ├── doc1347.txt
│   │   ├── doc1348.txt
│   │   ├── doc1349.txt
│   │   ├── doc135.txt
│   │   ├── doc1350.txt
│   │   ├── doc1351.txt
│   │   ├── doc1352.txt
│   │   ├── doc1353.txt
│   │   ├── doc1354.txt
│   │   ├── doc1355.txt
│   │   ├── doc1356.txt
│   │   ├── doc1357.txt
│   │   ├── doc1358.txt
│   │   ├── doc1359.txt
│   │   ├── doc136.txt
│   │   ├── doc1360.txt
│   │   ├── doc1361.txt
│   │   ├── doc1362.txt
│   │   ├── doc1363.txt
│   │   ├── doc1364.txt
│   │   ├── doc1365.txt
│   │   ├── doc1366.txt
│   │   ├── doc1367.txt
│   │   ├── doc1368.txt
│   │   ├── doc1369.txt
│   │   ├── doc137.txt
│   │   ├── doc1370.txt
│   │   ├── doc1371.txt
│   │   ├── doc1372.txt
│   │   ├── doc1373.txt
│   │   ├── doc1374.txt
│   │   ├── doc1375.txt
│   │   ├── doc1376.txt
│   │   ├── doc1377.txt
│   │   ├── doc1378.txt
│   │   ├── doc1379.txt
│   │   ├── doc138.txt
│   │   ├── doc1380.txt
│   │   ├── doc1381.txt
│   │   ├── doc1382.txt
│   │   ├── doc1383.txt
│   │   ├── doc1384.txt
│   │   ├── doc1385.txt
│   │   ├── doc1386.txt
│   │   ├── doc1387.txt
│   │   ├── doc1388.txt
│   │   ├── doc1389.txt
│   │   ├── doc139.txt
│   │   ├── doc1390.txt
│   │   ├── doc1391.txt
│   │   ├── doc1392.txt
│   │   ├── doc1393.txt
│   │   ├── doc1394.txt
│   │   ├── doc1395.txt
│   │   ├── doc1396.txt
│   │   ├── doc1397.txt
│   │   ├── doc1398.txt
│   │   ├── doc1399.txt
│   │   ├── doc14.txt
│   │   ├── doc140.txt
│   │   ├── doc1400.txt
│   │   ├── doc1401.txt
│   │   ├── doc1402.txt
│   │   ├── doc1403.txt
│   │   ├── doc1404.txt
│   │   ├── doc1405.txt
│   │   ├── doc1406.txt
│   │   ├── doc1407.txt
│   │   ├── doc1408.txt
│   │   ├── doc1409.txt
│   │   ├── doc141.txt
│   │   ├── doc1410.txt
│   │   ├── doc1411.txt
│   │   ├── doc1412.txt
│   │   ├── doc1413.txt
│   │   ├── doc1414.txt
│   │   ├── doc1415.txt
│   │   ├── doc1416.txt
│   │   ├── doc1417.txt
│   │   ├── doc1418.txt
│   │   ├── doc1419.txt
│   │   ├── doc142.txt
│   │   ├── doc1420.txt
│   │   ├── doc1421.txt
│   │   ├── doc1422.txt
│   │   ├── doc1423.txt
│   │   ├── doc1424.txt
│   │   ├── doc1425.txt
│   │   ├── doc1426.txt
│   │   ├── doc1427.txt
│   │   ├── doc1428.txt
│   │   ├── doc1429.txt
│   │   ├── doc143.txt
│   │   ├── doc1430.txt
│   │   ├── doc1431.txt
│   │   ├── doc1432.txt
│   │   ├── doc1433.txt
│   │   ├── doc1434.txt
│   │   ├── doc1435.txt
│   │   ├── doc1436.txt
│   │   ├── doc1437.txt
│   │   ├── doc1438.txt
│   │   ├── doc1439.txt
│   │   ├── doc144.txt
│   │   ├── doc1440.txt
│   │   ├── doc1441.txt
│   │   ├── doc1442.txt
│   │   ├── doc1443.txt
│   │   ├── doc1444.txt
│   │   ├── doc1445.txt
│   │   ├── doc1446.txt
│   │   ├── doc1447.txt
│   │   ├── doc1448.txt
│   │   ├── doc1449.txt
│   │   ├── doc145.txt
│   │   ├── doc1450.txt
│   │   ├── doc1451.txt
│   │   ├── doc1452.txt
│   │   ├── doc1453.txt
│   │   ├── doc1454.txt
│   │   ├── doc1455.txt
│   │   ├── doc1456.txt
│   │   ├── doc1457.txt
│   │   ├── doc1458.txt
│   │   ├── doc1459.txt
│   │   ├── doc146.txt
│   │   ├── doc1460.txt
│   │   ├── doc1461.txt
│   │   ├── doc1462.txt
│   │   ├── doc1463.txt
│   │   ├── doc1464.txt
│   │   ├── doc1465.txt
│   │   ├── doc1466.txt
│   │   ├── doc1467.txt
│   │   ├── doc1468.txt
│   │   ├── doc1469.txt
│   │   ├── doc147.txt
│   │   ├── doc1470.txt
│   │   ├── doc1471.txt
│   │   ├── doc1472.txt
│   │   ├── doc1473.txt
│   │   ├── doc1474.txt
│   │   ├── doc1475.txt
│   │   ├── doc1476.txt
│   │   ├── doc1477.txt
│   │   ├── doc1478.txt
│   │   ├── doc1479.txt
│   │   ├── doc148.txt
│   │   ├── doc1480.txt
│   │   ├── doc1481.txt
│   │   ├── doc1482.txt
│   │   ├── doc1483.txt
│   │   ├── doc1484.txt
│   │   ├── doc1485.txt
│   │   ├── doc1486.txt
│   │   ├── doc1487.txt
│   │   ├── doc1488.txt
│   │   ├── doc1489.txt
│   │   ├── doc149.txt
│   │   ├── doc1490.txt
│   │   ├── doc1491.txt
│   │   ├── doc1492.txt
│   │   ├── doc1493.txt
│   │   ├── doc1494.txt
│   │   ├── doc1495.txt
│   │   ├── doc1496.txt
│   │   ├── doc1497.txt
│   │   ├── doc1498.txt
│   │   ├── doc1499.txt
│   │   ├── doc15.txt
│   │   ├── doc150.txt
│   │   ├── doc1500.txt
│   │   ├── doc1501.txt
│   │   ├── doc1502.txt
│   │   ├── doc1503.txt
│   │   ├── doc1504.txt
│   │   ├── doc1505.txt
│   │   ├── doc1506.txt
│   │   ├── doc1507.txt
│   │   ├── doc1508.txt
│   │   ├── doc1509.txt
│   │   ├── doc151.txt
│   │   ├── doc1510.txt
│   │   ├── doc1511.txt
│   │   ├── doc1512.txt
│   │   ├── doc1513.txt
│   │   ├── doc1514.txt
│   │   ├── doc1515.txt
│   │   ├── doc1516.txt
│   │   ├── doc1517.txt
│   │   ├── doc1518.txt
│   │   ├── doc1519.txt
│   │   ├── doc152.txt
│   │   ├── doc1520.txt
│   │   ├── doc1521.txt
│   │   ├── doc1522.txt
│   │   ├── doc1523.txt
│   │   ├── doc1524.txt
│   │   ├── doc1525.txt
│   │   ├── doc1526.txt
│   │   ├── doc1527.txt
│   │   ├── doc1528.txt
│   │   ├── doc1529.txt
│   │   ├── doc153.txt
│   │   ├── doc1530.txt
│   │   ├── doc1531.txt
│   │   ├── doc1532.txt
│   │   ├── doc1533.txt
│   │   ├── doc1534.txt
│   │   ├── doc1535.txt
│   │   ├── doc1536.txt
│   │   ├── doc1537.txt
│   │   ├── doc1538.txt
│   │   ├── doc1539.txt
│   │   ├── doc154.txt
│   │   ├── doc1540.txt
│   │   ├── doc1541.txt
│   │   ├── doc1542.txt
│   │   ├── doc1543.txt
│   │   ├── doc1544.txt
│   │   ├── doc1545.txt
│   │   ├── doc1546.txt
│   │   ├── doc1547.txt
│   │   ├── doc1548.txt
│   │   ├── doc1549.txt
│   │   ├── doc155.txt
│   │   ├── doc1550.txt
│   │   ├── doc1551.txt
│   │   ├── doc1552.txt
│   │   ├── doc1553.txt
│   │   ├── doc1554.txt
│   │   ├── doc1555.txt
│   │   ├── doc1556.txt
│   │   ├── doc1557.txt
│   │   ├── doc1558.txt
│   │   ├── doc1559.txt
│   │   ├── doc156.txt
│   │   ├── doc1560.txt
│   │   ├── doc1561.txt
│   │   ├── doc1562.txt
│   │   ├── doc1563.txt
│   │   ├── doc1564.txt
│   │   ├── doc1565.txt
│   │   ├── doc1566.txt
│   │   ├── doc1567.txt
│   │   ├── doc1568.txt
│   │   ├── doc1569.txt
│   │   ├── doc157.txt
│   │   ├── doc1570.txt
│   │   ├── doc1571.txt
│   │   ├── doc1572.txt
│   │   ├── doc1573.txt
│   │   ├── doc1574.txt
│   │   ├── doc1575.txt
│   │   ├── doc1576.txt
│   │   ├── doc1577.txt
│   │   ├── doc1578.txt
│   │   ├── doc1579.txt
│   │   ├── doc158.txt
│   │   ├── doc1580.txt
│   │   ├── doc1581.txt
│   │   ├── doc1582.txt
│   │   ├── doc1583.txt
│   │   ├── doc1584.txt
│   │   ├── doc1585.txt
│   │   ├── doc1586.txt
│   │   ├── doc1587.txt
│   │   ├── doc1588.txt
│   │   ├── doc1589.txt
│   │   ├── doc159.txt
│   │   ├── doc1590.txt
│   │   ├── doc1591.txt
│   │   ├── doc1592.txt
│   │   ├── doc1593.txt
│   │   ├── doc1594.txt
│   │   ├── doc1595.txt
│   │   ├── doc1596.txt
│   │   ├── doc1597.txt
│   │   ├── doc1598.txt
│   │   ├── doc1599.txt
│   │   ├── doc16.txt
│   │   ├── doc160.txt
│   │   ├── doc1600.txt
│   │   ├── doc1601.txt
│   │   ├── doc1602.txt
│   │   ├── doc1603.txt
│   │   ├── doc1604.txt
│   │   ├── doc1605.txt
│   │   ├── doc1606.txt
│   │   ├── doc1607.txt
│   │   ├── doc1608.txt
│   │   ├── doc1609.txt
│   │   ├── doc161.txt
│   │   ├── doc1610.txt
│   │   ├── doc1611.txt
│   │   ├── doc1612.txt
│   │   ├── doc1613.txt
│   │   ├── doc1614.txt
│   │   ├── doc1615.txt
│   │   ├── doc1616.txt
│   │   ├── doc1617.txt
│   │   ├── doc1618.txt
│   │   ├── doc1619.txt
│   │   ├── doc162.txt
│   │   ├── doc1620.txt
│   │   ├── doc1621.txt
│   │   ├── doc1622.txt
│   │   ├── doc1623.txt
│   │   ├── doc1624.txt
│   │   ├── doc1625.txt
│   │   ├── doc1626.txt
│   │   ├── doc1627.txt
│   │   ├── doc1628.txt
│   │   ├── doc1629.txt
│   │   ├── doc163.txt
│   │   ├── doc1630.txt
│   │   ├── doc1631.txt
│   │   ├── doc1632.txt
│   │   ├── doc1633.txt
│   │   ├── doc1634.txt
│   │   ├── doc1635.txt
│   │   ├── doc1636.txt
│   │   ├── doc1637.txt
│   │   ├── doc1638.txt
│   │   ├── doc1639.txt
│   │   ├── doc164.txt
│   │   ├── doc1640.txt
│   │   ├── doc1641.txt
│   │   ├── doc1642.txt
│   │   ├── doc1643.txt
│   │   ├── doc1644.txt
│   │   ├── doc1645.txt
│   │   ├── doc1646.txt
│   │   ├── doc1647.txt
│   │   ├── doc1648.txt
│   │   ├── doc1649.txt
│   │   ├── doc165.txt
│   │   ├── doc1650.txt
│   │   ├── doc1651.txt
│   │   ├── doc1652.txt
│   │   ├── doc1653.txt
│   │   ├── doc1654.txt
│   │   ├── doc1655.txt
│   │   ├── doc1656.txt
│   │   ├── doc1657.txt
│   │   ├── doc1658.txt
│   │   ├── doc1659.txt
│   │   ├── doc166.txt
│   │   ├── doc1660.txt
│   │   ├── doc1661.txt
│   │   ├── doc1662.txt
│   │   ├── doc1663.txt
│   │   ├── doc1664.txt
│   │   ├── doc1665.txt
│   │   ├── doc1666.txt
│   │   ├── doc1667.txt
│   │   ├── doc1668.txt
│   │   ├── doc1669.txt
│   │   ├── doc167.txt
│   │   ├── doc1670.txt
│   │   ├── doc1671.txt
│   │   ├── doc1672.txt
│   │   ├── doc1673.txt
│   │   ├── doc1674.txt
│   │   ├── doc1675.txt
│   │   ├── doc1676.txt
│   │   ├── doc1677.txt
│   │   ├── doc1678.txt
│   │   ├── doc1679.txt
│   │   ├── doc168.txt
│   │   ├── doc1680.txt
│   │   ├── doc1681.txt
│   │   ├── doc1682.txt
│   │   ├── doc1683.txt
│   │   ├── doc1684.txt
│   │   ├── doc1685.txt
│   │   ├── doc1686.txt
│   │   ├── doc1687.txt
│   │   ├── doc1688.txt
│   │   ├── doc1689.txt
│   │   ├── doc169.txt
│   │   ├── doc1690.txt
│   │   ├── doc1691.txt
│   │   ├── doc1692.txt
│   │   ├── doc1693.txt
│   │   ├── doc1694.txt
│   │   ├── doc1695.txt
│   │   ├── doc1696.txt
│   │   ├── doc1697.txt
│   │   ├── doc1698.txt
│   │   ├── doc1699.txt
│   │   ├── doc17.txt
│   │   ├── doc170.txt
│   │   ├── doc1700.txt
│   │   ├── doc1701.txt
│   │   ├── doc1702.txt
│   │   ├── doc1703.txt
│   │   ├── doc1704.txt
│   │   ├── doc1705.txt
│   │   ├── doc1706.txt
│   │   ├── doc1707.txt
│   │   ├── doc1708.txt
│   │   ├── doc1709.txt
│   │   ├── doc171.txt
│   │   ├── doc1710.txt
│   │   ├── doc1711.txt
│   │   ├── doc1712.txt
│   │   ├── doc1713.txt
│   │   ├── doc1714.txt
│   │   ├── doc1715.txt
│   │   ├── doc1716.txt
│   │   ├── doc1717.txt
│   │   ├── doc1718.txt
│   │   ├── doc1719.txt
│   │   ├── doc172.txt
│   │   ├── doc1720.txt
│   │   ├── doc1721.txt
│   │   ├── doc1722.txt
│   │   ├── doc1723.txt
│   │   ├── doc1724.txt
│   │   ├── doc1725.txt
│   │   ├── doc1726.txt
│   │   ├── doc1727.txt
│   │   ├── doc1728.txt
│   │   ├── doc1729.txt
│   │   ├── doc173.txt
│   │   ├── doc1730.txt
│   │   ├── doc1731.txt
│   │   ├── doc1732.txt
│   │   ├── doc1733.txt
│   │   ├── doc1734.txt
│   │   ├── doc1735.txt
│   │   ├── doc1736.txt
│   │   ├── doc1737.txt
│   │   ├── doc1738.txt
│   │   ├── doc1739.txt
│   │   ├── doc174.txt
│   │   ├── doc1740.txt
│   │   ├── doc1741.txt
│   │   ├── doc1742.txt
│   │   ├── doc1743.txt
│   │   ├── doc1744.txt
│   │   ├── doc1745.txt
│   │   ├── doc1746.txt
│   │   ├── doc1747.txt
│   │   ├── doc1748.txt
│   │   ├── doc1749.txt
│   │   ├── doc175.txt
│   │   ├── doc1750.txt
│   │   ├── doc1751.txt
│   │   ├── doc1752.txt
│   │   ├── doc1753.txt
│   │   ├── doc1754.txt
│   │   ├── doc1755.txt
│   │   ├── doc1756.txt
│   │   ├── doc1757.txt
│   │   ├── doc1758.txt
│   │   ├── doc1759.txt
│   │   ├── doc176.txt
│   │   ├── doc1760.txt
│   │   ├── doc1761.txt
│   │   ├── doc1762.txt
│   │   ├── doc1763.txt
│   │   ├── doc1764.txt
│   │   ├── doc1765.txt
│   │   ├── doc1766.txt
│   │   ├── doc1767.txt
│   │   ├── doc1768.txt
│   │   ├── doc1769.txt
│   │   ├── doc177.txt
│   │   ├── doc1770.txt
│   │   ├── doc1771.txt
│   │   ├── doc1772.txt
│   │   ├── doc1773.txt
│   │   ├── doc1774.txt
│   │   ├── doc1775.txt
│   │   ├── doc1776.txt
│   │   ├── doc1777.txt
│   │   ├── doc1778.txt
│   │   ├── doc1779.txt
│   │   ├── doc178.txt
│   │   ├── doc1780.txt
│   │   ├── doc1781.txt
│   │   ├── doc1782.txt
│   │   ├── doc1783.txt
│   │   ├── doc1784.txt
│   │   ├── doc1785.txt
│   │   ├── doc1786.txt
│   │   ├── doc1787.txt
│   │   ├── doc1788.txt
│   │   ├── doc1789.txt
│   │   ├── doc179.txt
│   │   ├── doc1790.txt
│   │   ├── doc1791.txt
│   │   ├── doc1792.txt
│   │   ├── doc1793.txt
│   │   ├── doc1794.txt
│   │   ├── doc1795.txt
│   │   ├── doc1796.txt
│   │   ├── doc1797.txt
│   │   ├── doc1798.txt
│   │   ├── doc1799.txt
│   │   ├── doc18.txt
│   │   ├── doc180.txt
│   │   ├── doc1800.txt
│   │   ├── doc1801.txt
│   │   ├── doc1802.txt
│   │   ├── doc1803.txt
│   │   ├── doc1804.txt
│   │   ├── doc1805.txt
│   │   ├── doc1806.txt
│   │   ├── doc1807.txt
│   │   ├── doc1808.txt
│   │   ├── doc1809.txt
│   │   ├── doc181.txt
│   │   ├── doc1810.txt
│   │   ├── doc1811.txt
│   │   ├── doc1812.txt
│   │   ├── doc1813.txt
│   │   ├── doc1814.txt
│   │   ├── doc1815.txt
│   │   ├── doc1816.txt
│   │   ├── doc1817.txt
│   │   ├── doc1818.txt
│   │   ├── doc1819.txt
│   │   ├── doc182.txt
│   │   ├── doc1820.txt
│   │   ├── doc1821.txt
│   │   ├── doc1822.txt
│   │   ├── doc1823.txt
│   │   ├── doc1824.txt
│   │   ├── doc1825.txt
│   │   ├── doc1826.txt
│   │   ├── doc1827.txt
│   │   ├── doc1828.txt
│   │   ├── doc1829.txt
│   │   ├── doc183.txt
│   │   ├── doc1830.txt
│   │   ├── doc1831.txt
│   │   ├── doc1832.txt
│   │   ├── doc1833.txt
│   │   ├── doc1834.txt
│   │   ├── doc1835.txt
│   │   ├── doc1836.txt
│   │   ├── doc1837.txt
│   │   ├── doc1838.txt
│   │   ├── doc1839.txt
│   │   ├── doc184.txt
│   │   ├── doc1840.txt
│   │   ├── doc1841.txt
│   │   ├── doc1842.txt
│   │   ├── doc1843.txt
│   │   ├── doc1844.txt
│   │   ├── doc1845.txt
│   │   ├── doc1846.txt
│   │   ├── doc1847.txt
│   │   ├── doc1848.txt
│   │   ├── doc1849.txt
│   │   ├── doc185.txt
│   │   ├── doc1850.txt
│   │   ├── doc1851.txt
│   │   ├── doc1852.txt
│   │   ├── doc1853.txt
│   │   ├── doc1854.txt
│   │   ├── doc1855.txt
│   │   ├── doc1856.txt
│   │   ├── doc1857.txt
│   │   ├── doc1858.txt
│   │   ├── doc1859.txt
│   │   ├── doc186.txt
│   │   ├── doc1860.txt
│   │   ├── doc1861.txt
│   │   ├── doc1862.txt
│   │   ├── doc1863.txt
│   │   ├── doc1864.txt
│   │   ├── doc1865.txt
│   │   ├── doc1866.txt
│   │   ├── doc1867.txt
│   │   ├── doc1868.txt
│   │   ├── doc1869.txt
│   │   ├── doc187.txt
│   │   ├── doc1870.txt
│   │   ├── doc1871.txt
│   │   ├── doc1872.txt
│   │   ├── doc1873.txt
│   │   ├── doc1874.txt
│   │   ├── doc1875.txt
│   │   ├── doc1876.txt
│   │   ├── doc1877.txt
│   │   ├── doc1878.txt
│   │   ├── doc1879.txt
│   │   ├── doc188.txt
│   │   ├── doc1880.txt
│   │   ├── doc1881.txt
│   │   ├── doc1882.txt
│   │   ├── doc1883.txt
│   │   ├── doc1884.txt
│   │   ├── doc1885.txt
│   │   ├── doc1886.txt
│   │   ├── doc1887.txt
│   │   ├── doc1888.txt
│   │   ├── doc1889.txt
│   │   ├── doc189.txt
│   │   ├── doc1890.txt
│   │   ├── doc1891.txt
│   │   ├── doc1892.txt
│   │   ├── doc1893.txt
│   │   ├── doc1894.txt
│   │   ├── doc1895.txt
│   │   ├── doc1896.txt
│   │   ├── doc1897.txt
│   │   ├── doc1898.txt
│   │   ├── doc1899.txt
│   │   ├── doc19.txt
│   │   ├── doc190.txt
│   │   ├── doc1900.txt
│   │   ├── doc1901.txt
│   │   ├── doc1902.txt
│   │   ├── doc1903.txt
│   │   ├── doc1904.txt
│   │   ├── doc1905.txt
│   │   ├── doc1906.txt
│   │   ├── doc1907.txt
│   │   ├── doc1908.txt
│   │   ├── doc1909.txt
│   │   ├── doc191.txt
│   │   ├── doc1910.txt
│   │   ├── doc1911.txt
│   │   ├── doc1912.txt
│   │   ├── doc1913.txt
│   │   ├── doc1914.txt
│   │   ├── doc1915.txt
│   │   ├── doc1916.txt
│   │   ├── doc1917.txt
│   │   ├── doc1918.txt
│   │   ├── doc1919.txt
│   │   ├── doc192.txt
│   │   ├── doc1920.txt
│   │   ├── doc1921.txt
│   │   ├── doc1922.txt
│   │   ├── doc1923.txt
│   │   ├── doc1924.txt
│   │   ├── doc1925.txt
│   │   ├── doc1926.txt
│   │   ├── doc1927.txt
│   │   ├── doc1928.txt
│   │   ├── doc1929.txt
│   │   ├── doc193.txt
│   │   ├── doc1930.txt
│   │   ├── doc1931.txt
│   │   ├── doc1932.txt
│   │   ├── doc1933.txt
│   │   ├── doc1934.txt
│   │   ├── doc1935.txt
│   │   ├── doc1936.txt
│   │   ├── doc1937.txt
│   │   ├── doc1938.txt
│   │   ├── doc1939.txt
│   │   ├── doc194.txt
│   │   ├── doc1940.txt
│   │   ├── doc1941.txt
│   │   ├── doc1942.txt
│   │   ├── doc1943.txt
│   │   ├── doc1944.txt
│   │   ├── doc1945.txt
│   │   ├── doc1946.txt
│   │   ├── doc1947.txt
│   │   ├── doc1948.txt
│   │   ├── doc1949.txt
│   │   ├── doc195.txt
│   │   ├── doc1950.txt
│   │   ├── doc1951.txt
│   │   ├── doc1952.txt
│   │   ├── doc1953.txt
│   │   ├── doc1954.txt
│   │   ├── doc1955.txt
│   │   ├── doc1956.txt
│   │   ├── doc1957.txt
│   │   ├── doc1958.txt
│   │   ├── doc1959.txt
│   │   ├── doc196.txt
│   │   ├── doc1960.txt
│   │   ├── doc1961.txt
│   │   ├── doc1962.txt
│   │   ├── doc1963.txt
│   │   ├── doc1964.txt
│   │   ├── doc1965.txt
│   │   ├── doc1966.txt
│   │   ├── doc1967.txt
│   │   ├── doc1968.txt
│   │   ├── doc1969.txt
│   │   ├── doc197.txt
│   │   ├── doc1970.txt
│   │   ├── doc1971.txt
│   │   ├── doc1972.txt
│   │   ├── doc1973.txt
│   │   ├── doc1974.txt
│   │   ├── doc1975.txt
│   │   ├── doc1976.txt
│   │   ├── doc1977.txt
│   │   ├── doc1978.txt
│   │   ├── doc1979.txt
│   │   ├── doc198.txt
│   │   ├── doc1980.txt
│   │   ├── doc1981.txt
│   │   ├── doc1982.txt
│   │   ├── doc1983.txt
│   │   ├── doc1984.txt
│   │   ├── doc1985.txt
│   │   ├── doc1986.txt
│   │   ├── doc1987.txt
│   │   ├── doc1988.txt
│   │   ├── doc1989.txt
│   │   ├── doc199.txt
│   │   ├── doc1990.txt
│   │   ├── doc1991.txt
│   │   ├── doc1992.txt
│   │   ├── doc1993.txt
│   │   ├── doc1994.txt
│   │   ├── doc1995.txt
│   │   ├── doc1996.txt
│   │   ├── doc1997.txt
│   │   ├── doc1998.txt
│   │   ├── doc1999.txt
│   │   ├── doc2.txt
│   │   ├── doc20.txt
│   │   ├── doc200.txt
│   │   ├── doc2000.txt
│   │   ├── doc2001.txt
│   │   ├── doc2002.txt
│   │   ├── doc2003.txt
│   │   ├── doc2004.txt
│   │   ├── doc2005.txt
│   │   ├── doc2006.txt
│   │   ├── doc2007.txt
│   │   ├── doc2008.txt
│   │   ├── doc2009.txt
│   │   ├── doc201.txt
│   │   ├── doc2010.txt
│   │   ├── doc2011.txt
│   │   ├── doc2012.txt
│   │   ├── doc2013.txt
│   │   ├── doc2014.txt
│   │   ├── doc2015.txt
│   │   ├── doc2016.txt
│   │   ├── doc2017.txt
│   │   ├── doc2018.txt
│   │   ├── doc2019.txt
│   │   ├── doc202.txt
│   │   ├── doc2020.txt
│   │   ├── doc2021.txt
│   │   ├── doc2022.txt
│   │   ├── doc2023.txt
│   │   ├── doc2024.txt
│   │   ├── doc2025.txt
│   │   ├── doc2026.txt
│   │   ├── doc2027.txt
│   │   ├── doc2028.txt
│   │   ├── doc2029.txt
│   │   ├── doc203.txt
│   │   ├── doc2030.txt
│   │   ├── doc2031.txt
│   │   ├── doc2032.txt
│   │   ├── doc2033.txt
│   │   ├── doc2034.txt
│   │   ├── doc2035.txt
│   │   ├── doc2036.txt
│   │   ├── doc2037.txt
│   │   ├── doc2038.txt
│   │   ├── doc2039.txt
│   │   ├── doc204.txt
│   │   ├── doc2040.txt
│   │   ├── doc2041.txt
│   │   ├── doc2042.txt
│   │   ├── doc2043.txt
│   │   ├── doc2044.txt
│   │   ├── doc2045.txt
│   │   ├── doc2046.txt
│   │   ├── doc2047.txt
│   │   ├── doc2048.txt
│   │   ├── doc2049.txt
│   │   ├── doc205.txt
│   │   ├── doc2050.txt
│   │   ├── doc2051.txt
│   │   ├── doc2052.txt
│   │   ├── doc2053.txt
│   │   ├── doc2054.txt
│   │   ├── doc2055.txt
│   │   ├── doc2056.txt
│   │   ├── doc2057.txt
│   │   ├── doc2058.txt
│   │   ├── doc2059.txt
│   │   ├── doc206.txt
│   │   ├── doc2060.txt
│   │   ├── doc2061.txt
│   │   ├── doc2062.txt
│   │   ├── doc2063.txt
│   │   ├── doc2064.txt
│   │   ├── doc2065.txt
│   │   ├── doc2066.txt
│   │   ├── doc2067.txt
│   │   ├── doc2068.txt
│   │   ├── doc2069.txt
│   │   ├── doc207.txt
│   │   ├── doc2070.txt
│   │   ├── doc2071.txt
│   │   ├── doc2072.txt
│   │   ├── doc2073.txt
│   │   ├── doc2074.txt
│   │   ├── doc2075.txt
│   │   ├── doc2076.txt
│   │   ├── doc2077.txt
│   │   ├── doc2078.txt
│   │   ├── doc2079.txt
│   │   ├── doc208.txt
│   │   ├── doc2080.txt
│   │   ├── doc2081.txt
│   │   ├── doc2082.txt
│   │   ├── doc2083.txt
│   │   ├── doc2084.txt
│   │   ├── doc2085.txt
│   │   ├── doc2086.txt
│   │   ├── doc2087.txt
│   │   ├── doc2088.txt
│   │   ├── doc2089.txt
│   │   ├── doc209.txt
│   │   ├── doc2090.txt
│   │   ├── doc2091.txt
│   │   ├── doc2092.txt
│   │   ├── doc2093.txt
│   │   ├── doc2094.txt
│   │   ├── doc2095.txt
│   │   ├── doc2096.txt
│   │   ├── doc2097.txt
│   │   ├── doc2098.txt
│   │   ├── doc2099.txt
│   │   ├── doc21.txt
│   │   ├── doc210.txt
│   │   ├── doc2100.txt
│   │   ├── doc2101.txt
│   │   ├── doc2102.txt
│   │   ├── doc2103.txt
│   │   ├── doc2104.txt
│   │   ├── doc2105.txt
│   │   ├── doc2106.txt
│   │   ├── doc2107.txt
│   │   ├── doc2108.txt
│   │   ├── doc2109.txt
│   │   ├── doc211.txt
│   │   ├── doc2110.txt
│   │   ├── doc2111.txt
│   │   ├── doc2112.txt
│   │   ├── doc2113.txt
│   │   ├── doc2114.txt
│   │   ├── doc2115.txt
│   │   ├── doc2116.txt
│   │   ├── doc2117.txt
│   │   ├── doc2118.txt
│   │   ├── doc2119.txt
│   │   ├── doc212.txt
│   │   ├── doc2120.txt
│   │   ├── doc2121.txt
│   │   ├── doc2122.txt
│   │   ├── doc2123.txt
│   │   ├── doc2124.txt
│   │   ├── doc2125.txt
│   │   ├── doc2126.txt
│   │   ├── doc2127.txt
│   │   ├── doc2128.txt
│   │   ├── doc2129.txt
│   │   ├── doc213.txt
│   │   ├── doc2130.txt
│   │   ├── doc2131.txt
│   │   ├── doc2132.txt
│   │   ├── doc2133.txt
│   │   ├── doc2134.txt
│   │   ├── doc2135.txt
│   │   ├── doc2136.txt
│   │   ├── doc2137.txt
│   │   ├── doc2138.txt
│   │   ├── doc2139.txt
│   │   ├── doc214.txt
│   │   ├── doc2140.txt
│   │   ├── doc2141.txt
│   │   ├── doc2142.txt
│   │   ├── doc2143.txt
│   │   ├── doc2144.txt
│   │   ├── doc2145.txt
│   │   ├── doc2146.txt
│   │   ├── doc2147.txt
│   │   ├── doc2148.txt
│   │   ├── doc2149.txt
│   │   ├── doc215.txt
│   │   ├── doc2150.txt
│   │   ├── doc2151.txt
│   │   ├── doc2152.txt
│   │   ├── doc2153.txt
│   │   ├── doc2154.txt
│   │   ├── doc2155.txt
│   │   ├── doc2156.txt
│   │   ├── doc2157.txt
│   │   ├── doc2158.txt
│   │   ├── doc2159.txt
│   │   ├── doc216.txt
│   │   ├── doc2160.txt
│   │   ├── doc2161.txt
│   │   ├── doc2162.txt
│   │   ├── doc2163.txt
│   │   ├── doc2164.txt
│   │   ├── doc2165.txt
│   │   ├── doc2166.txt
│   │   ├── doc2167.txt
│   │   ├── doc2168.txt
│   │   ├── doc2169.txt
│   │   ├── doc217.txt
│   │   ├── doc2170.txt
│   │   ├── doc2171.txt
│   │   ├── doc2172.txt
│   │   ├── doc2173.txt
│   │   ├── doc2174.txt
│   │   ├── doc2175.txt
│   │   ├── doc2176.txt
│   │   ├── doc2177.txt
│   │   ├── doc2178.txt
│   │   ├── doc2179.txt
│   │   ├── doc218.txt
│   │   ├── doc2180.txt
│   │   ├── doc2181.txt
│   │   ├── doc2182.txt
│   │   ├── doc2183.txt
│   │   ├── doc2184.txt
│   │   ├── doc2185.txt
│   │   ├── doc2186.txt
│   │   ├── doc2187.txt
│   │   ├── doc2188.txt
│   │   ├── doc2189.txt
│   │   ├── doc219.txt
│   │   ├── doc2190.txt
│   │   ├── doc2191.txt
│   │   ├── doc2192.txt
│   │   ├── doc2193.txt
│   │   ├── doc2194.txt
│   │   ├── doc2195.txt
│   │   ├── doc2196.txt
│   │   ├── doc2197.txt
│   │   ├── doc2198.txt
│   │   ├── doc2199.txt
│   │   ├── doc22.txt
│   │   ├── doc220.txt
│   │   ├── doc2200.txt
│   │   ├── doc2201.txt
│   │   ├── doc2202.txt
│   │   ├── doc2203.txt
│   │   ├── doc2204.txt
│   │   ├── doc2205.txt
│   │   ├── doc2206.txt
│   │   ├── doc2207.txt
│   │   ├── doc2208.txt
│   │   ├── doc2209.txt
│   │   ├── doc221.txt
│   │   ├── doc2210.txt
│   │   ├── doc2211.txt
│   │   ├── doc2212.txt
│   │   ├── doc2213.txt
│   │   ├── doc2214.txt
│   │   ├── doc2215.txt
│   │   ├── doc2216.txt
│   │   ├── doc2217.txt
│   │   ├── doc2218.txt
│   │   ├── doc2219.txt
│   │   ├── doc222.txt
│   │   ├── doc2220.txt
│   │   ├── doc2221.txt
│   │   ├── doc2222.txt
│   │   ├── doc2223.txt
│   │   ├── doc2224.txt
│   │   ├── doc2225.txt
│   │   ├── doc2226.txt
│   │   ├── doc2227.txt
│   │   ├── doc2228.txt
│   │   ├── doc2229.txt
│   │   ├── doc223.txt
│   │   ├── doc2230.txt
│   │   ├── doc2231.txt
│   │   ├── doc2232.txt
│   │   ├── doc2233.txt
│   │   ├── doc2234.txt
│   │   ├── doc2235.txt
│   │   ├── doc2236.txt
│   │   ├── doc2237.txt
│   │   ├── doc2238.txt
│   │   ├── doc2239.txt
│   │   ├── doc224.txt
│   │   ├── doc2240.txt
│   │   ├── doc2241.txt
│   │   ├── doc2242.txt
│   │   ├── doc2243.txt
│   │   ├── doc2244.txt
│   │   ├── doc2245.txt
│   │   ├── doc2246.txt
│   │   ├── doc2247.txt
│   │   ├── doc2248.txt
│   │   ├── doc2249.txt
│   │   ├── doc225.txt
│   │   ├── doc2250.txt
│   │   ├── doc2251.txt
│   │   ├── doc2252.txt
│   │   ├── doc2253.txt
│   │   ├── doc2254.txt
│   │   ├── doc2255.txt
│   │   ├── doc2256.txt
│   │   ├── doc2257.txt
│   │   ├── doc2258.txt
│   │   ├── doc2259.txt
│   │   ├── doc226.txt
│   │   ├── doc2260.txt
│   │   ├── doc2261.txt
│   │   ├── doc2262.txt
│   │   ├── doc2263.txt
│   │   ├── doc2264.txt
│   │   ├── doc2265.txt
│   │   ├── doc2266.txt
│   │   ├── doc2267.txt
│   │   ├── doc2268.txt
│   │   ├── doc2269.txt
│   │   ├── doc227.txt
│   │   ├── doc2270.txt
│   │   ├── doc2271.txt
│   │   ├── doc2272.txt
│   │   ├── doc2273.txt
│   │   ├── doc2274.txt
│   │   ├── doc2275.txt
│   │   ├── doc2276.txt
│   │   ├── doc2277.txt
│   │   ├── doc2278.txt
│   │   ├── doc2279.txt
│   │   ├── doc228.txt
│   │   ├── doc2280.txt
│   │   ├── doc2281.txt
│   │   ├── doc2282.txt
│   │   ├── doc2283.txt
│   │   ├── doc2284.txt
│   │   ├── doc2285.txt
│   │   ├── doc2286.txt
│   │   ├── doc2287.txt
│   │   ├── doc2288.txt
│   │   ├── doc2289.txt
│   │   ├── doc229.txt
│   │   ├── doc2290.txt
│   │   ├── doc2291.txt
│   │   ├── doc2292.txt
│   │   ├── doc2293.txt
│   │   ├── doc2294.txt
│   │   ├── doc2295.txt
│   │   ├── doc2296.txt
│   │   ├── doc2297.txt
│   │   ├── doc2298.txt
│   │   ├── doc2299.txt
│   │   ├── doc23.txt
│   │   ├── doc230.txt
│   │   ├── doc2300.txt
│   │   ├── doc2301.txt
│   │   ├── doc2302.txt
│   │   ├── doc2303.txt
│   │   ├── doc2304.txt
│   │   ├── doc2305.txt
│   │   ├── doc2306.txt
│   │   ├── doc2307.txt
│   │   ├── doc2308.txt
│   │   ├── doc2309.txt
│   │   ├── doc231.txt
│   │   ├── doc2310.txt
│   │   ├── doc2311.txt
│   │   ├── doc2312.txt
│   │   ├── doc2313.txt
│   │   ├── doc2314.txt
│   │   ├── doc2315.txt
│   │   ├── doc2316.txt
│   │   ├── doc2317.txt
│   │   ├── doc2318.txt
│   │   ├── doc2319.txt
│   │   ├── doc232.txt
│   │   ├── doc2320.txt
│   │   ├── doc2321.txt
│   │   ├── doc2322.txt
│   │   ├── doc2323.txt
│   │   ├── doc2324.txt
│   │   ├── doc2325.txt
│   │   ├── doc2326.txt
│   │   ├── doc2327.txt
│   │   ├── doc2328.txt
│   │   ├── doc2329.txt
│   │   ├── doc233.txt
│   │   ├── doc2330.txt
│   │   ├── doc2331.txt
│   │   ├── doc2332.txt
│   │   ├── doc2333.txt
│   │   ├── doc2334.txt
│   │   ├── doc2335.txt
│   │   ├── doc2336.txt
│   │   ├── doc2337.txt
│   │   ├── doc2338.txt
│   │   ├── doc2339.txt
│   │   ├── doc234.txt
│   │   ├── doc2340.txt
│   │   ├── doc2341.txt
│   │   ├── doc2342.txt
│   │   ├── doc2343.txt
│   │   ├── doc2344.txt
│   │   ├── doc2345.txt
│   │   ├── doc2346.txt
│   │   ├── doc2347.txt
│   │   ├── doc2348.txt
│   │   ├── doc2349.txt
│   │   ├── doc235.txt
│   │   ├── doc2350.txt
│   │   ├── doc2351.txt
│   │   ├── doc2352.txt
│   │   ├── doc2353.txt
│   │   ├── doc2354.txt
│   │   ├── doc2355.txt
│   │   ├── doc2356.txt
│   │   ├── doc2357.txt
│   │   ├── doc2358.txt
│   │   ├── doc2359.txt
│   │   ├── doc236.txt
│   │   ├── doc2360.txt
│   │   ├── doc2361.txt
│   │   ├── doc2362.txt
│   │   ├── doc2363.txt
│   │   ├── doc2364.txt
│   │   ├── doc2365.txt
│   │   ├── doc2366.txt
│   │   ├── doc2367.txt
│   │   ├── doc2368.txt
│   │   ├── doc2369.txt
│   │   ├── doc237.txt
│   │   ├── doc2370.txt
│   │   ├── doc2371.txt
│   │   ├── doc2372.txt
│   │   ├── doc2373.txt
│   │   ├── doc2374.txt
│   │   ├── doc2375.txt
│   │   ├── doc2376.txt
│   │   ├── doc2377.txt
│   │   ├── doc2378.txt
│   │   ├── doc2379.txt
│   │   ├── doc238.txt
│   │   ├── doc2380.txt
│   │   ├── doc2381.txt
│   │   ├── doc2382.txt
│   │   ├── doc2383.txt
│   │   ├── doc2384.txt
│   │   ├── doc2385.txt
│   │   ├── doc2386.txt
│   │   ├── doc2387.txt
│   │   ├── doc2388.txt
│   │   ├── doc2389.txt
│   │   ├── doc239.txt
│   │   ├── doc2390.txt
│   │   ├── doc2391.txt
│   │   ├── doc2392.txt
│   │   ├── doc2393.txt
│   │   ├── doc2394.txt
│   │   ├── doc2395.txt
│   │   ├── doc2396.txt
│   │   ├── doc2397.txt
│   │   ├── doc2398.txt
│   │   ├── doc2399.txt
│   │   ├── doc24.txt
│   │   ├── doc240.txt
│   │   ├── doc2400.txt
│   │   ├── doc2401.txt
│   │   ├── doc2402.txt
│   │   ├── doc2403.txt
│   │   ├── doc2404.txt
│   │   ├── doc2405.txt
│   │   ├── doc2406.txt
│   │   ├── doc2407.txt
│   │   ├── doc2408.txt
│   │   ├── doc2409.txt
│   │   ├── doc241.txt
│   │   ├── doc2410.txt
│   │   ├── doc2411.txt
│   │   ├── doc2412.txt
│   │   ├── doc2413.txt
│   │   ├── doc2414.txt
│   │   ├── doc2415.txt
│   │   ├── doc2416.txt
│   │   ├── doc2417.txt
│   │   ├── doc2418.txt
│   │   ├── doc2419.txt
│   │   ├── doc242.txt
│   │   ├── doc2420.txt
│   │   ├── doc2421.txt
│   │   ├── doc2422.txt
│   │   ├── doc2423.txt
│   │   ├── doc2424.txt
│   │   ├── doc2425.txt
│   │   ├── doc2426.txt
│   │   ├── doc2427.txt
│   │   ├── doc2428.txt
│   │   ├── doc2429.txt
│   │   ├── doc243.txt
│   │   ├── doc2430.txt
│   │   ├── doc2431.txt
│   │   ├── doc2432.txt
│   │   ├── doc2433.txt
│   │   ├── doc2434.txt
│   │   ├── doc2435.txt
│   │   ├── doc2436.txt
│   │   ├── doc2437.txt
│   │   ├── doc2438.txt
│   │   ├── doc2439.txt
│   │   ├── doc244.txt
│   │   ├── doc2440.txt
│   │   ├── doc2441.txt
│   │   ├── doc2442.txt
│   │   ├── doc2443.txt
│   │   ├── doc2444.txt
│   │   ├── doc2445.txt
│   │   ├── doc2446.txt
│   │   ├── doc2447.txt
│   │   ├── doc2448.txt
│   │   ├── doc2449.txt
│   │   ├── doc245.txt
│   │   ├── doc2450.txt
│   │   ├── doc2451.txt
│   │   ├── doc2452.txt
│   │   ├── doc2453.txt
│   │   ├── doc2454.txt
│   │   ├── doc2455.txt
│   │   ├── doc2456.txt
│   │   ├── doc2457.txt
│   │   ├── doc2458.txt
│   │   ├── doc2459.txt
│   │   ├── doc246.txt
│   │   ├── doc2460.txt
│   │   ├── doc2461.txt
│   │   ├── doc2462.txt
│   │   ├── doc2463.txt
│   │   ├── doc2464.txt
│   │   ├── doc2465.txt
│   │   ├── doc2466.txt
│   │   ├── doc2467.txt
│   │   ├── doc2468.txt
│   │   ├── doc2469.txt
│   │   ├── doc247.txt
│   │   ├── doc2470.txt
│   │   ├── doc2471.txt
│   │   ├── doc2472.txt
│   │   ├── doc2473.txt
│   │   ├── doc2474.txt
│   │   ├── doc2475.txt
│   │   ├── doc2476.txt
│   │   ├── doc2477.txt
│   │   ├── doc2478.txt
│   │   ├── doc2479.txt
│   │   ├── doc248.txt
│   │   ├── doc2480.txt
│   │   ├── doc2481.txt
│   │   ├── doc2482.txt
│   │   ├── doc2483.txt
│   │   ├── doc2484.txt
│   │   ├── doc2485.txt
│   │   ├── doc2486.txt
│   │   ├── doc2487.txt
│   │   ├── doc2488.txt
│   │   ├── doc2489.txt
│   │   ├── doc249.txt
│   │   ├── doc2490.txt
│   │   ├── doc2491.txt
│   │   ├── doc2492.txt
│   │   ├── doc2493.txt
│   │   ├── doc2494.txt
│   │   ├── doc2495.txt
│   │   ├── doc2496.txt
│   │   ├── doc2497.txt
│   │   ├── doc2498.txt
│   │   ├── doc2499.txt
│   │   ├── doc25.txt
│   │   ├── doc250.txt
│   │   ├── doc2500.txt
│   │   ├── doc2501.txt
│   │   ├── doc2502.txt
│   │   ├── doc2503.txt
│   │   ├── doc2504.txt
│   │   ├── doc2505.txt
│   │   ├── doc2506.txt
│   │   ├── doc2507.txt
│   │   ├── doc2508.txt
│   │   ├── doc2509.txt
│   │   ├── doc251.txt
│   │   ├── doc2510.txt
│   │   ├── doc2511.txt
│   │   ├── doc2512.txt
│   │   ├── doc2513.txt
│   │   ├── doc2514.txt
│   │   ├── doc2515.txt
│   │   ├── doc2516.txt
│   │   ├── doc2517.txt
│   │   ├── doc2518.txt
│   │   ├── doc2519.txt
│   │   ├── doc252.txt
│   │   ├── doc2520.txt
│   │   ├── doc2521.txt
│   │   ├── doc2522.txt
│   │   ├── doc2523.txt
│   │   ├── doc2524.txt
│   │   ├── doc2525.txt
│   │   ├── doc2526.txt
│   │   ├── doc2527.txt
│   │   ├── doc2528.txt
│   │   ├── doc2529.txt
│   │   ├── doc253.txt
│   │   ├── doc2530.txt
│   │   ├── doc2531.txt
│   │   ├── doc2532.txt
│   │   ├── doc2533.txt
│   │   ├── doc2534.txt
│   │   ├── doc2535.txt
│   │   ├── doc2536.txt
│   │   ├── doc2537.txt
│   │   ├── doc2538.txt
│   │   ├── doc2539.txt
│   │   ├── doc254.txt
│   │   ├── doc2540.txt
│   │   ├── doc2541.txt
│   │   ├── doc2542.txt
│   │   ├── doc2543.txt
│   │   ├── doc2544.txt
│   │   ├── doc2545.txt
│   │   ├── doc2546.txt
│   │   ├── doc2547.txt
│   │   ├── doc2548.txt
│   │   ├── doc2549.txt
│   │   ├── doc255.txt
│   │   ├── doc2550.txt
│   │   ├── doc2551.txt
│   │   ├── doc2552.txt
│   │   ├── doc2553.txt
│   │   ├── doc2554.txt
│   │   ├── doc2555.txt
│   │   ├── doc2556.txt
│   │   ├── doc2557.txt
│   │   ├── doc2558.txt
│   │   ├── doc2559.txt
│   │   ├── doc256.txt
│   │   ├── doc2560.txt
│   │   ├── doc2561.txt
│   │   ├── doc2562.txt
│   │   ├── doc2563.txt
│   │   ├── doc2564.txt
│   │   ├── doc2565.txt
│   │   ├── doc2566.txt
│   │   ├── doc2567.txt
│   │   ├── doc2568.txt
│   │   ├── doc2569.txt
│   │   ├── doc257.txt
│   │   ├── doc2570.txt
│   │   ├── doc2571.txt
│   │   ├── doc2572.txt
│   │   ├── doc2573.txt
│   │   ├── doc2574.txt
│   │   ├── doc2575.txt
│   │   ├── doc2576.txt
│   │   ├── doc2577.txt
│   │   ├── doc2578.txt
│   │   ├── doc2579.txt
│   │   ├── doc258.txt
│   │   ├── doc2580.txt
│   │   ├── doc2581.txt
│   │   ├── doc2582.txt
│   │   ├── doc2583.txt
│   │   ├── doc2584.txt
│   │   ├── doc2585.txt
│   │   ├── doc2586.txt
│   │   ├── doc2587.txt
│   │   ├── doc2588.txt
│   │   ├── doc2589.txt
│   │   ├── doc259.txt
│   │   ├── doc2590.txt
│   │   ├── doc2591.txt
│   │   ├── doc2592.txt
│   │   ├── doc2593.txt
│   │   ├── doc2594.txt
│   │   ├── doc2595.txt
│   │   ├── doc2596.txt
│   │   ├── doc2597.txt
│   │   ├── doc2598.txt
│   │   ├── doc2599.txt
│   │   ├── doc26.txt
│   │   ├── doc260.txt
│   │   ├── doc2600.txt
│   │   ├── doc2601.txt
│   │   ├── doc2602.txt
│   │   ├── doc2603.txt
│   │   ├── doc2604.txt
│   │   ├── doc2605.txt
│   │   ├── doc2606.txt
│   │   ├── doc2607.txt
│   │   ├── doc2608.txt
│   │   ├── doc2609.txt
│   │   ├── doc261.txt
│   │   ├── doc2610.txt
│   │   ├── doc2611.txt
│   │   ├── doc2612.txt
│   │   ├── doc2613.txt
│   │   ├── doc2614.txt
│   │   ├── doc2615.txt
│   │   ├── doc2616.txt
│   │   ├── doc2617.txt
│   │   ├── doc2618.txt
│   │   ├── doc2619.txt
│   │   ├── doc262.txt
│   │   ├── doc2620.txt
│   │   ├── doc2621.txt
│   │   ├── doc2622.txt
│   │   ├── doc2623.txt
│   │   ├── doc2624.txt
│   │   ├── doc2625.txt
│   │   ├── doc2626.txt
│   │   ├── doc2627.txt
│   │   ├── doc2628.txt
│   │   ├── doc2629.txt
│   │   ├── doc263.txt
│   │   ├── doc2630.txt
│   │   ├── doc2631.txt
│   │   ├── doc2632.txt
│   │   ├── doc2633.txt
│   │   ├── doc2634.txt
│   │   ├── doc2635.txt
│   │   ├── doc2636.txt
│   │   ├── doc2637.txt
│   │   ├── doc2638.txt
│   │   ├── doc2639.txt
│   │   ├── doc264.txt
│   │   ├── doc2640.txt
│   │   ├── doc2641.txt
│   │   ├── doc2642.txt
│   │   ├── doc2643.txt
│   │   ├── doc2644.txt
│   │   ├── doc2645.txt
│   │   ├── doc2646.txt
│   │   ├── doc2647.txt
│   │   ├── doc2648.txt
│   │   ├── doc2649.txt
│   │   ├── doc265.txt
│   │   ├── doc2650.txt
│   │   ├── doc2651.txt
│   │   ├── doc2652.txt
│   │   ├── doc2653.txt
│   │   ├── doc2654.txt
│   │   ├── doc2655.txt
│   │   ├── doc2656.txt
│   │   ├── doc2657.txt
│   │   ├── doc2658.txt
│   │   ├── doc2659.txt
│   │   ├── doc266.txt
│   │   ├── doc2660.txt
│   │   ├── doc2661.txt
│   │   ├── doc2662.txt
│   │   ├── doc2663.txt
│   │   ├── doc2664.txt
│   │   ├── doc2665.txt
│   │   ├── doc2666.txt
│   │   ├── doc2667.txt
│   │   ├── doc2668.txt
│   │   ├── doc2669.txt
│   │   ├── doc267.txt
│   │   ├── doc2670.txt
│   │   ├── doc2671.txt
│   │   ├── doc2672.txt
│   │   ├── doc2673.txt
│   │   ├── doc2674.txt
│   │   ├── doc2675.txt
│   │   ├── doc2676.txt
│   │   ├── doc2677.txt
│   │   ├── doc2678.txt
│   │   ├── doc2679.txt
│   │   ├── doc268.txt
│   │   ├── doc2680.txt
│   │   ├── doc2681.txt
│   │   ├── doc2682.txt
│   │   ├── doc2683.txt
│   │   ├── doc2684.txt
│   │   ├── doc2685.txt
│   │   ├── doc2686.txt
│   │   ├── doc2687.txt
│   │   ├── doc2688.txt
│   │   ├── doc2689.txt
│   │   ├── doc269.txt
│   │   ├── doc2690.txt
│   │   ├── doc2691.txt
│   │   ├── doc2692.txt
│   │   ├── doc2693.txt
│   │   ├── doc2694.txt
│   │   ├── doc2695.txt
│   │   ├── doc2696.txt
│   │   ├── doc2697.txt
│   │   ├── doc2698.txt
│   │   ├── doc2699.txt
│   │   ├── doc27.txt
│   │   ├── doc270.txt
│   │   ├── doc2700.txt
│   │   ├── doc2701.txt
│   │   ├── doc2702.txt
│   │   ├── doc2703.txt
│   │   ├── doc2704.txt
│   │   ├── doc2705.txt
│   │   ├── doc2706.txt
│   │   ├── doc2707.txt
│   │   ├── doc2708.txt
│   │   ├── doc2709.txt
│   │   ├── doc271.txt
│   │   ├── doc2710.txt
│   │   ├── doc2711.txt
│   │   ├── doc2712.txt
│   │   ├── doc2713.txt
│   │   ├── doc2714.txt
│   │   ├── doc2715.txt
│   │   ├── doc2716.txt
│   │   ├── doc2717.txt
│   │   ├── doc2718.txt
│   │   ├── doc2719.txt
│   │   ├── doc272.txt
│   │   ├── doc2720.txt
│   │   ├── doc2721.txt
│   │   ├── doc2722.txt
│   │   ├── doc2723.txt
│   │   ├── doc2724.txt
│   │   ├── doc2725.txt
│   │   ├── doc2726.txt
│   │   ├── doc2727.txt
│   │   ├── doc2728.txt
│   │   ├── doc2729.txt
│   │   ├── doc273.txt
│   │   ├── doc2730.txt
│   │   ├── doc2731.txt
│   │   ├── doc2732.txt
│   │   ├── doc2733.txt
│   │   ├── doc2734.txt
│   │   ├── doc2735.txt
│   │   ├── doc2736.txt
│   │   ├── doc2737.txt
│   │   ├── doc2738.txt
│   │   ├── doc2739.txt
│   │   ├── doc274.txt
│   │   ├── doc2740.txt
│   │   ├── doc2741.txt
│   │   ├── doc2742.txt
│   │   ├── doc2743.txt
│   │   ├── doc2744.txt
│   │   ├── doc2745.txt
│   │   ├── doc2746.txt
│   │   ├── doc2747.txt
│   │   ├── doc2748.txt
│   │   ├── doc2749.txt
│   │   ├── doc275.txt
│   │   ├── doc2750.txt
│   │   ├── doc2751.txt
│   │   ├── doc2752.txt
│   │   ├── doc2753.txt
│   │   ├── doc2754.txt
│   │   ├── doc2755.txt
│   │   ├── doc2756.txt
│   │   ├── doc2757.txt
│   │   ├── doc2758.txt
│   │   ├── doc2759.txt
│   │   ├── doc276.txt
│   │   ├── doc2760.txt
│   │   ├── doc2761.txt
│   │   ├── doc2762.txt
│   │   ├── doc2763.txt
│   │   ├── doc2764.txt
│   │   ├── doc2765.txt
│   │   ├── doc2766.txt
│   │   ├── doc2767.txt
│   │   ├── doc2768.txt
│   │   ├── doc2769.txt
│   │   ├── doc277.txt
│   │   ├── doc2770.txt
│   │   ├── doc2771.txt
│   │   ├── doc2772.txt
│   │   ├── doc2773.txt
│   │   ├── doc2774.txt
│   │   ├── doc2775.txt
│   │   ├── doc2776.txt
│   │   ├── doc2777.txt
│   │   ├── doc2778.txt
│   │   ├── doc2779.txt
│   │   ├── doc278.txt
│   │   ├── doc2780.txt
│   │   ├── doc2781.txt
│   │   ├── doc2782.txt
│   │   ├── doc2783.txt
│   │   ├── doc2784.txt
│   │   ├── doc2785.txt
│   │   ├── doc2786.txt
│   │   ├── doc2787.txt
│   │   ├── doc2788.txt
│   │   ├── doc2789.txt
│   │   ├── doc279.txt
│   │   ├── doc2790.txt
│   │   ├── doc2791.txt
│   │   ├── doc2792.txt
│   │   ├── doc2793.txt
│   │   ├── doc2794.txt
│   │   ├── doc2795.txt
│   │   ├── doc2796.txt
│   │   ├── doc2797.txt
│   │   ├── doc2798.txt
│   │   ├── doc2799.txt
│   │   ├── doc28.txt
│   │   ├── doc280.txt
│   │   ├── doc2800.txt
│   │   ├── doc2801.txt
│   │   ├── doc2802.txt
│   │   ├── doc2803.txt
│   │   ├── doc2804.txt
│   │   ├── doc2805.txt
│   │   ├── doc2806.txt
│   │   ├── doc2807.txt
│   │   ├── doc2808.txt
│   │   ├── doc2809.txt
│   │   ├── doc281.txt
│   │   ├── doc2810.txt
│   │   ├── doc2811.txt
│   │   ├── doc2812.txt
│   │   ├── doc2813.txt
│   │   ├── doc2814.txt
│   │   ├── doc2815.txt
│   │   ├── doc2816.txt
│   │   ├── doc2817.txt
│   │   ├── doc2818.txt
│   │   ├── doc2819.txt
│   │   ├── doc282.txt
│   │   ├── doc2820.txt
│   │   ├── doc2821.txt
│   │   ├── doc2822.txt
│   │   ├── doc2823.txt
│   │   ├── doc2824.txt
│   │   ├── doc2825.txt
│   │   ├── doc2826.txt
│   │   ├── doc2827.txt
│   │   ├── doc2828.txt
│   │   ├── doc2829.txt
│   │   ├── doc283.txt
│   │   ├── doc2830.txt
│   │   ├── doc2831.txt
│   │   ├── doc2832.txt
│   │   ├── doc2833.txt
│   │   ├── doc2834.txt
│   │   ├── doc2835.txt
│   │   ├── doc2836.txt
│   │   ├── doc2837.txt
│   │   ├── doc2838.txt
│   │   ├── doc2839.txt
│   │   ├── doc284.txt
│   │   ├── doc2840.txt
│   │   ├── doc2841.txt
│   │   ├── doc2842.txt
│   │   ├── doc2843.txt
│   │   ├── doc2844.txt
│   │   ├── doc2845.txt
│   │   ├── doc2846.txt
│   │   ├── doc2847.txt
│   │   ├── doc2848.txt
│   │   ├── doc2849.txt
│   │   ├── doc285.txt
│   │   ├── doc2850.txt
│   │   ├── doc2851.txt
│   │   ├── doc2852.txt
│   │   ├── doc2853.txt
│   │   ├── doc2854.txt
│   │   ├── doc2855.txt
│   │   ├── doc2856.txt
│   │   ├── doc2857.txt
│   │   ├── doc2858.txt
│   │   ├── doc2859.txt
│   │   ├── doc286.txt
│   │   ├── doc2860.txt
│   │   ├── doc2861.txt
│   │   ├── doc2862.txt
│   │   ├── doc2863.txt
│   │   ├── doc2864.txt
│   │   ├── doc2865.txt
│   │   ├── doc2866.txt
│   │   ├── doc2867.txt
│   │   ├── doc2868.txt
│   │   ├── doc2869.txt
│   │   ├── doc287.txt
│   │   ├── doc2870.txt
│   │   ├── doc2871.txt
│   │   ├── doc2872.txt
│   │   ├── doc2873.txt
│   │   ├── doc2874.txt
│   │   ├── doc2875.txt
│   │   ├── doc2876.txt
│   │   ├── doc2877.txt
│   │   ├── doc2878.txt
│   │   ├── doc2879.txt
│   │   ├── doc288.txt
│   │   ├── doc2880.txt
│   │   ├── doc2881.txt
│   │   ├── doc2882.txt
│   │   ├── doc2883.txt
│   │   ├── doc2884.txt
│   │   ├── doc2885.txt
│   │   ├── doc2886.txt
│   │   ├── doc2887.txt
│   │   ├── doc2888.txt
│   │   ├── doc2889.txt
│   │   ├── doc289.txt
│   │   ├── doc2890.txt
│   │   ├── doc2891.txt
│   │   ├── doc2892.txt
│   │   ├── doc2893.txt
│   │   ├── doc2894.txt
│   │   ├── doc2895.txt
│   │   ├── doc2896.txt
│   │   ├── doc2897.txt
│   │   ├── doc2898.txt
│   │   ├── doc2899.txt
│   │   ├── doc29.txt
│   │   ├── doc290.txt
│   │   ├── doc2900.txt
│   │   ├── doc2901.txt
│   │   ├── doc2902.txt
│   │   ├── doc2903.txt
│   │   ├── doc2904.txt
│   │   ├── doc2905.txt
│   │   ├── doc2906.txt
│   │   ├── doc2907.txt
│   │   ├── doc2908.txt
│   │   ├── doc2909.txt
│   │   ├── doc291.txt
│   │   ├── doc2910.txt
│   │   ├── doc2911.txt
│   │   ├── doc2912.txt
│   │   ├── doc2913.txt
│   │   ├── doc2914.txt
│   │   ├── doc2915.txt
│   │   ├── doc2916.txt
│   │   ├── doc2917.txt
│   │   ├── doc2918.txt
│   │   ├── doc2919.txt
│   │   ├── doc292.txt
│   │   ├── doc2920.txt
│   │   ├── doc2921.txt
│   │   ├── doc2922.txt
│   │   ├── doc2923.txt
│   │   ├── doc2924.txt
│   │   ├── doc2925.txt
│   │   ├── doc2926.txt
│   │   ├── doc2927.txt
│   │   ├── doc2928.txt
│   │   ├── doc2929.txt
│   │   ├── doc293.txt
│   │   ├── doc2930.txt
│   │   ├── doc2931.txt
│   │   ├── doc2932.txt
│   │   ├── doc2933.txt
│   │   ├── doc2934.txt
│   │   ├── doc2935.txt
│   │   ├── doc2936.txt
│   │   ├── doc2937.txt
│   │   ├── doc2938.txt
│   │   ├── doc2939.txt
│   │   ├── doc294.txt
│   │   ├── doc2940.txt
│   │   ├── doc2941.txt
│   │   ├── doc2942.txt
│   │   ├── doc2943.txt
│   │   ├── doc2944.txt
│   │   ├── doc2945.txt
│   │   ├── doc2946.txt
│   │   ├── doc2947.txt
│   │   ├── doc2948.txt
│   │   ├── doc2949.txt
│   │   ├── doc295.txt
│   │   ├── doc2950.txt
│   │   ├── doc2951.txt
│   │   ├── doc2952.txt
│   │   ├── doc2953.txt
│   │   ├── doc2954.txt
│   │   ├── doc2955.txt
│   │   ├── doc2956.txt
│   │   ├── doc2957.txt
│   │   ├── doc2958.txt
│   │   ├── doc2959.txt
│   │   ├── doc296.txt
│   │   ├── doc2960.txt
│   │   ├── doc2961.txt
│   │   ├── doc2962.txt
│   │   ├── doc2963.txt
│   │   ├── doc2964.txt
│   │   ├── doc2965.txt
│   │   ├── doc2966.txt
│   │   ├── doc2967.txt
│   │   ├── doc2968.txt
│   │   ├── doc2969.txt
│   │   ├── doc297.txt
│   │   ├── doc2970.txt
│   │   ├── doc2971.txt
│   │   ├── doc2972.txt
│   │   ├── doc2973.txt
│   │   ├── doc2974.txt
│   │   ├── doc2975.txt
│   │   ├── doc2976.txt
│   │   ├── doc2977.txt
│   │   ├── doc2978.txt
│   │   ├── doc2979.txt
│   │   ├── doc298.txt
│   │   ├── doc2980.txt
│   │   ├── doc2981.txt
│   │   ├── doc2982.txt
│   │   ├── doc2983.txt
│   │   ├── doc2984.txt
│   │   ├── doc2985.txt
│   │   ├── doc2986.txt
│   │   ├── doc2987.txt
│   │   ├── doc2988.txt
│   │   ├── doc2989.txt
│   │   ├── doc299.txt
│   │   ├── doc2990.txt
│   │   ├── doc2991.txt
│   │   ├── doc2992.txt
│   │   ├── doc2993.txt
│   │   ├── doc2994.txt
│   │   ├── doc2995.txt
│   │   ├── doc2996.txt
│   │   ├── doc2997.txt
│   │   ├── doc2998.txt
│   │   ├── doc2999.txt
│   │   ├── doc3.txt
│   │   ├── doc30.txt
│   │   ├── doc300.txt
│   │   ├── doc3000.txt
│   │   ├── doc3001.txt
│   │   ├── doc3002.txt
│   │   ├── doc3003.txt
│   │   ├── doc3004.txt
│   │   ├── doc3005.txt
│   │   ├── doc3006.txt
│   │   ├── doc3007.txt
│   │   ├── doc3008.txt
│   │   ├── doc3009.txt
│   │   ├── doc301.txt
│   │   ├── doc3010.txt
│   │   ├── doc3011.txt
│   │   ├── doc3012.txt
│   │   ├── doc3013.txt
│   │   ├── doc3014.txt
│   │   ├── doc3015.txt
│   │   ├── doc3016.txt
│   │   ├── doc3017.txt
│   │   ├── doc3018.txt
│   │   ├── doc3019.txt
│   │   ├── doc302.txt
│   │   ├── doc3020.txt
│   │   ├── doc3021.txt
│   │   ├── doc3022.txt
│   │   ├── doc3023.txt
│   │   ├── doc3024.txt
│   │   ├── doc3025.txt
│   │   ├── doc3026.txt
│   │   ├── doc3027.txt
│   │   ├── doc3028.txt
│   │   ├── doc3029.txt
│   │   ├── doc303.txt
│   │   ├── doc3030.txt
│   │   ├── doc3031.txt
│   │   ├── doc3032.txt
│   │   ├── doc3033.txt
│   │   ├── doc3034.txt
│   │   ├── doc3035.txt
│   │   ├── doc3036.txt
│   │   ├── doc3037.txt
│   │   ├── doc3038.txt
│   │   ├── doc3039.txt
│   │   ├── doc304.txt
│   │   ├── doc3040.txt
│   │   ├── doc3041.txt
│   │   ├── doc3042.txt
│   │   ├── doc3043.txt
│   │   ├── doc3044.txt
│   │   ├── doc3045.txt
│   │   ├── doc3046.txt
│   │   ├── doc3047.txt
│   │   ├── doc3048.txt
│   │   ├── doc3049.txt
│   │   ├── doc305.txt
│   │   ├── doc3050.txt
│   │   ├── doc3051.txt
│   │   ├── doc3052.txt
│   │   ├── doc3053.txt
│   │   ├── doc3054.txt
│   │   ├── doc3055.txt
│   │   ├── doc3056.txt
│   │   ├── doc3057.txt
│   │   ├── doc3058.txt
│   │   ├── doc3059.txt
│   │   ├── doc306.txt
│   │   ├── doc3060.txt
│   │   ├── doc3061.txt
│   │   ├── doc3062.txt
│   │   ├── doc3063.txt
│   │   ├── doc3064.txt
│   │   ├── doc3065.txt
│   │   ├── doc3066.txt
│   │   ├── doc3067.txt
│   │   ├── doc3068.txt
│   │   ├── doc3069.txt
│   │   ├── doc307.txt
│   │   ├── doc3070.txt
│   │   ├── doc3071.txt
│   │   ├── doc3072.txt
│   │   ├── doc3073.txt
│   │   ├── doc3074.txt
│   │   ├── doc3075.txt
│   │   ├── doc3076.txt
│   │   ├── doc3077.txt
│   │   ├── doc3078.txt
│   │   ├── doc3079.txt
│   │   ├── doc308.txt
│   │   ├── doc3080.txt
│   │   ├── doc3081.txt
│   │   ├── doc3082.txt
│   │   ├── doc3083.txt
│   │   ├── doc3084.txt
│   │   ├── doc3085.txt
│   │   ├── doc3086.txt
│   │   ├── doc3087.txt
│   │   ├── doc3088.txt
│   │   ├── doc3089.txt
│   │   ├── doc309.txt
│   │   ├── doc3090.txt
│   │   ├── doc3091.txt
│   │   ├── doc3092.txt
│   │   ├── doc3093.txt
│   │   ├── doc3094.txt
│   │   ├── doc3095.txt
│   │   ├── doc3096.txt
│   │   ├── doc3097.txt
│   │   ├── doc3098.txt
│   │   ├── doc3099.txt
│   │   ├── doc31.txt
│   │   ├── doc310.txt
│   │   ├── doc3100.txt
│   │   ├── doc3101.txt
│   │   ├── doc3102.txt
│   │   ├── doc3103.txt
│   │   ├── doc3104.txt
│   │   ├── doc3105.txt
│   │   ├── doc3106.txt
│   │   ├── doc3107.txt
│   │   ├── doc3108.txt
│   │   ├── doc3109.txt
│   │   ├── doc311.txt
│   │   ├── doc3110.txt
│   │   ├── doc3111.txt
│   │   ├── doc3112.txt
│   │   ├── doc3113.txt
│   │   ├── doc3114.txt
│   │   ├── doc3115.txt
│   │   ├── doc3116.txt
│   │   ├── doc3117.txt
│   │   ├── doc3118.txt
│   │   ├── doc3119.txt
│   │   ├── doc312.txt
│   │   ├── doc3120.txt
│   │   ├── doc3121.txt
│   │   ├── doc3122.txt
│   │   ├── doc3123.txt
│   │   ├── doc3124.txt
│   │   ├── doc3125.txt
│   │   ├── doc3126.txt
│   │   ├── doc3127.txt
│   │   ├── doc3128.txt
│   │   ├── doc3129.txt
│   │   ├── doc313.txt
│   │   ├── doc3130.txt
│   │   ├── doc3131.txt
│   │   ├── doc3132.txt
│   │   ├── doc3133.txt
│   │   ├── doc3134.txt
│   │   ├── doc3135.txt
│   │   ├── doc3136.txt
│   │   ├── doc3137.txt
│   │   ├── doc3138.txt
│   │   ├── doc3139.txt
│   │   ├── doc314.txt
│   │   ├── doc3140.txt
│   │   ├── doc3141.txt
│   │   ├── doc3142.txt
│   │   ├── doc3143.txt
│   │   ├── doc3144.txt
│   │   ├── doc3145.txt
│   │   ├── doc3146.txt
│   │   ├── doc3147.txt
│   │   ├── doc3148.txt
│   │   ├── doc3149.txt
│   │   ├── doc315.txt
│   │   ├── doc3150.txt
│   │   ├── doc3151.txt
│   │   ├── doc3152.txt
│   │   ├── doc3153.txt
│   │   ├── doc3154.txt
│   │   ├── doc3155.txt
│   │   ├── doc3156.txt
│   │   ├── doc3157.txt
│   │   ├── doc3158.txt
│   │   ├── doc3159.txt
│   │   ├── doc316.txt
│   │   ├── doc3160.txt
│   │   ├── doc3161.txt
│   │   ├── doc3162.txt
│   │   ├── doc3163.txt
│   │   ├── doc3164.txt
│   │   ├── doc3165.txt
│   │   ├── doc3166.txt
│   │   ├── doc3167.txt
│   │   ├── doc3168.txt
│   │   ├── doc3169.txt
│   │   ├── doc317.txt
│   │   ├── doc3170.txt
│   │   ├── doc3171.txt
│   │   ├── doc3172.txt
│   │   ├── doc3173.txt
│   │   ├── doc3174.txt
│   │   ├── doc3175.txt
│   │   ├── doc3176.txt
│   │   ├── doc3177.txt
│   │   ├── doc3178.txt
│   │   ├── doc3179.txt
│   │   ├── doc318.txt
│   │   ├── doc3180.txt
│   │   ├── doc3181.txt
│   │   ├── doc3182.txt
│   │   ├── doc3183.txt
│   │   ├── doc3184.txt
│   │   ├── doc3185.txt
│   │   ├── doc3186.txt
│   │   ├── doc3187.txt
│   │   ├── doc3188.txt
│   │   ├── doc3189.txt
│   │   ├── doc319.txt
│   │   ├── doc3190.txt
│   │   ├── doc3191.txt
│   │   ├── doc3192.txt
│   │   ├── doc3193.txt
│   │   ├── doc3194.txt
│   │   ├── doc3195.txt
│   │   ├── doc3196.txt
│   │   ├── doc3197.txt
│   │   ├── doc3198.txt
│   │   ├── doc3199.txt
│   │   ├── doc32.txt
│   │   ├── doc320.txt
│   │   ├── doc3200.txt
│   │   ├── doc3201.txt
│   │   ├── doc3202.txt
│   │   ├── doc3203.txt
│   │   ├── doc3204.txt
│   │   ├── doc3205.txt
│   │   ├── doc3206.txt
│   │   ├── doc3207.txt
│   │   ├── doc3208.txt
│   │   ├── doc3209.txt
│   │   ├── doc321.txt
│   │   ├── doc3210.txt
│   │   ├── doc3211.txt
│   │   ├── doc3212.txt
│   │   ├── doc3213.txt
│   │   ├── doc3214.txt
│   │   ├── doc3215.txt
│   │   ├── doc3216.txt
│   │   ├── doc3217.txt
│   │   ├── doc3218.txt
│   │   ├── doc3219.txt
│   │   ├── doc322.txt
│   │   ├── doc3220.txt
│   │   ├── doc3221.txt
│   │   ├── doc3222.txt
│   │   ├── doc3223.txt
│   │   ├── doc3224.txt
│   │   ├── doc3225.txt
│   │   ├── doc3226.txt
│   │   ├── doc3227.txt
│   │   ├── doc3228.txt
│   │   ├── doc3229.txt
│   │   ├── doc323.txt
│   │   ├── doc3230.txt
│   │   ├── doc3231.txt
│   │   ├── doc3232.txt
│   │   ├── doc3233.txt
│   │   ├── doc3234.txt
│   │   ├── doc3235.txt
│   │   ├── doc3236.txt
│   │   ├── doc3237.txt
│   │   ├── doc3238.txt
│   │   ├── doc3239.txt
│   │   ├── doc324.txt
│   │   ├── doc3240.txt
│   │   ├── doc3241.txt
│   │   ├── doc3242.txt
│   │   ├── doc3243.txt
│   │   ├── doc3244.txt
│   │   ├── doc3245.txt
│   │   ├── doc3246.txt
│   │   ├── doc3247.txt
│   │   ├── doc3248.txt
│   │   ├── doc3249.txt
│   │   ├── doc325.txt
│   │   ├── doc3250.txt
│   │   ├── doc3251.txt
│   │   ├── doc3252.txt
│   │   ├── doc3253.txt
│   │   ├── doc3254.txt
│   │   ├── doc3255.txt
│   │   ├── doc3256.txt
│   │   ├── doc3257.txt
│   │   ├── doc3258.txt
│   │   ├── doc3259.txt
│   │   ├── doc326.txt
│   │   ├── doc3260.txt
│   │   ├── doc3261.txt
│   │   ├── doc3262.txt
│   │   ├── doc3263.txt
│   │   ├── doc3264.txt
│   │   ├── doc3265.txt
│   │   ├── doc3266.txt
│   │   ├── doc3267.txt
│   │   ├── doc3268.txt
│   │   ├── doc3269.txt
│   │   ├── doc327.txt
│   │   ├── doc3270.txt
│   │   ├── doc3271.txt
│   │   ├── doc3272.txt
│   │   ├── doc3273.txt
│   │   ├── doc3274.txt
│   │   ├── doc3275.txt
│   │   ├── doc3276.txt
│   │   ├── doc3277.txt
│   │   ├── doc3278.txt
│   │   ├── doc3279.txt
│   │   ├── doc328.txt
│   │   ├── doc3280.txt
│   │   ├── doc3281.txt
│   │   ├── doc3282.txt
│   │   ├── doc3283.txt
│   │   ├── doc3284.txt
│   │   ├── doc3285.txt
│   │   ├── doc3286.txt
│   │   ├── doc3287.txt
│   │   ├── doc3288.txt
│   │   ├── doc3289.txt
│   │   ├── doc329.txt
│   │   ├── doc3290.txt
│   │   ├── doc3291.txt
│   │   ├── doc3292.txt
│   │   ├── doc3293.txt
│   │   ├── doc3294.txt
│   │   ├── doc3295.txt
│   │   ├── doc3296.txt
│   │   ├── doc3297.txt
│   │   ├── doc3298.txt
│   │   ├── doc3299.txt
│   │   ├── doc33.txt
│   │   ├── doc330.txt
│   │   ├── doc3300.txt
│   │   ├── doc3301.txt
│   │   ├── doc3302.txt
│   │   ├── doc3303.txt
│   │   ├── doc3304.txt
│   │   ├── doc3305.txt
│   │   ├── doc3306.txt
│   │   ├── doc3307.txt
│   │   ├── doc3308.txt
│   │   ├── doc3309.txt
│   │   ├── doc331.txt
│   │   ├── doc3310.txt
│   │   ├── doc3311.txt
│   │   ├── doc3312.txt
│   │   ├── doc3313.txt
│   │   ├── doc3314.txt
│   │   ├── doc3315.txt
│   │   ├── doc3316.txt
│   │   ├── doc3317.txt
│   │   ├── doc3318.txt
│   │   ├── doc3319.txt
│   │   ├── doc332.txt
│   │   ├── doc3320.txt
│   │   ├── doc3321.txt
│   │   ├── doc3322.txt
│   │   ├── doc3323.txt
│   │   ├── doc3324.txt
│   │   ├── doc3325.txt
│   │   ├── doc3326.txt
│   │   ├── doc3327.txt
│   │   ├── doc3328.txt
│   │   ├── doc3329.txt
│   │   ├── doc333.txt
│   │   ├── doc3330.txt
│   │   ├── doc3331.txt
│   │   ├── doc3332.txt
│   │   ├── doc3333.txt
│   │   ├── doc3334.txt
│   │   ├── doc3335.txt
│   │   ├── doc3336.txt
│   │   ├── doc3337.txt
│   │   ├── doc3338.txt
│   │   ├── doc3339.txt
│   │   ├── doc334.txt
│   │   ├── doc3340.txt
│   │   ├── doc3341.txt
│   │   ├── doc3342.txt
│   │   ├── doc3343.txt
│   │   ├── doc3344.txt
│   │   ├── doc3345.txt
│   │   ├── doc3346.txt
│   │   ├── doc3347.txt
│   │   ├── doc3348.txt
│   │   ├── doc3349.txt
│   │   ├── doc335.txt
│   │   ├── doc3350.txt
│   │   ├── doc3351.txt
│   │   ├── doc3352.txt
│   │   ├── doc3353.txt
│   │   ├── doc3354.txt
│   │   ├── doc3355.txt
│   │   ├── doc3356.txt
│   │   ├── doc3357.txt
│   │   ├── doc3358.txt
│   │   ├── doc3359.txt
│   │   ├── doc336.txt
│   │   ├── doc3360.txt
│   │   ├── doc3361.txt
│   │   ├── doc3362.txt
│   │   ├── doc3363.txt
│   │   ├── doc3364.txt
│   │   ├── doc3365.txt
│   │   ├── doc3366.txt
│   │   ├── doc3367.txt
│   │   ├── doc3368.txt
│   │   ├── doc3369.txt
│   │   ├── doc337.txt
│   │   ├── doc3370.txt
│   │   ├── doc3371.txt
│   │   ├── doc3372.txt
│   │   ├── doc3373.txt
│   │   ├── doc3374.txt
│   │   ├── doc3375.txt
│   │   ├── doc3376.txt
│   │   ├── doc3377.txt
│   │   ├── doc3378.txt
│   │   ├── doc3379.txt
│   │   ├── doc338.txt
│   │   ├── doc3380.txt
│   │   ├── doc3381.txt
│   │   ├── doc3382.txt
│   │   ├── doc3383.txt
│   │   ├── doc3384.txt
│   │   ├── doc3385.txt
│   │   ├── doc3386.txt
│   │   ├── doc3387.txt
│   │   ├── doc3388.txt
│   │   ├── doc3389.txt
│   │   ├── doc339.txt
│   │   ├── doc3390.txt
│   │   ├── doc3391.txt
│   │   ├── doc3392.txt
│   │   ├── doc3393.txt
│   │   ├── doc3394.txt
│   │   ├── doc3395.txt
│   │   ├── doc3396.txt
│   │   ├── doc3397.txt
│   │   ├── doc3398.txt
│   │   ├── doc3399.txt
│   │   ├── doc34.txt
│   │   ├── doc340.txt
│   │   ├── doc3400.txt
│   │   ├── doc3401.txt
│   │   ├── doc3402.txt
│   │   ├── doc3403.txt
│   │   ├── doc3404.txt
│   │   ├── doc3405.txt
│   │   ├── doc3406.txt
│   │   ├── doc3407.txt
│   │   ├── doc3408.txt
│   │   ├── doc3409.txt
│   │   ├── doc341.txt
│   │   ├── doc3410.txt
│   │   ├── doc3411.txt
│   │   ├── doc3412.txt
│   │   ├── doc3413.txt
│   │   ├── doc3414.txt
│   │   ├── doc3415.txt
│   │   ├── doc3416.txt
│   │   ├── doc3417.txt
│   │   ├── doc3418.txt
│   │   ├── doc3419.txt
│   │   ├── doc342.txt
│   │   ├── doc3420.txt
│   │   ├── doc3421.txt
│   │   ├── doc3422.txt
│   │   ├── doc3423.txt
│   │   ├── doc3424.txt
│   │   ├── doc3425.txt
│   │   ├── doc3426.txt
│   │   ├── doc3427.txt
│   │   ├── doc3428.txt
│   │   ├── doc3429.txt
│   │   ├── doc343.txt
│   │   ├── doc3430.txt
│   │   ├── doc3431.txt
│   │   ├── doc3432.txt
│   │   ├── doc3433.txt
│   │   ├── doc3434.txt
│   │   ├── doc3435.txt
│   │   ├── doc3436.txt
│   │   ├── doc3437.txt
│   │   ├── doc3438.txt
│   │   ├── doc3439.txt
│   │   ├── doc344.txt
│   │   ├── doc3440.txt
│   │   ├── doc3441.txt
│   │   ├── doc3442.txt
│   │   ├── doc3443.txt
│   │   ├── doc3444.txt
│   │   ├── doc3445.txt
│   │   ├── doc3446.txt
│   │   ├── doc3447.txt
│   │   ├── doc3448.txt
│   │   ├── doc3449.txt
│   │   ├── doc345.txt
│   │   ├── doc3450.txt
│   │   ├── doc3451.txt
│   │   ├── doc3452.txt
│   │   ├── doc3453.txt
│   │   ├── doc3454.txt
│   │   ├── doc3455.txt
│   │   ├── doc3456.txt
│   │   ├── doc3457.txt
│   │   ├── doc3458.txt
│   │   ├── doc3459.txt
│   │   ├── doc346.txt
│   │   ├── doc3460.txt
│   │   ├── doc3461.txt
│   │   ├── doc3462.txt
│   │   ├── doc3463.txt
│   │   ├── doc3464.txt
│   │   ├── doc3465.txt
│   │   ├── doc3466.txt
│   │   ├── doc3467.txt
│   │   ├── doc3468.txt
│   │   ├── doc3469.txt
│   │   ├── doc347.txt
│   │   ├── doc3470.txt
│   │   ├── doc3471.txt
│   │   ├── doc3472.txt
│   │   ├── doc3473.txt
│   │   ├── doc3474.txt
│   │   ├── doc3475.txt
│   │   ├── doc3476.txt
│   │   ├── doc3477.txt
│   │   ├── doc3478.txt
│   │   ├── doc3479.txt
│   │   ├── doc348.txt
│   │   ├── doc3480.txt
│   │   ├── doc3481.txt
│   │   ├── doc3482.txt
│   │   ├── doc3483.txt
│   │   ├── doc3484.txt
│   │   ├── doc3485.txt
│   │   ├── doc3486.txt
│   │   ├── doc3487.txt
│   │   ├── doc3488.txt
│   │   ├── doc3489.txt
│   │   ├── doc349.txt
│   │   ├── doc3490.txt
│   │   ├── doc3491.txt
│   │   ├── doc3492.txt
│   │   ├── doc3493.txt
│   │   ├── doc3494.txt
│   │   ├── doc3495.txt
│   │   ├── doc3496.txt
│   │   ├── doc3497.txt
│   │   ├── doc3498.txt
│   │   ├── doc3499.txt
│   │   ├── doc35.txt
│   │   ├── doc350.txt
│   │   ├── doc3500.txt
│   │   ├── doc3501.txt
│   │   ├── doc3502.txt
│   │   ├── doc3503.txt
│   │   ├── doc3504.txt
│   │   ├── doc3505.txt
│   │   ├── doc3506.txt
│   │   ├── doc3507.txt
│   │   ├── doc3508.txt
│   │   ├── doc3509.txt
│   │   ├── doc351.txt
│   │   ├── doc3510.txt
│   │   ├── doc3511.txt
│   │   ├── doc3512.txt
│   │   ├── doc3513.txt
│   │   ├── doc3514.txt
│   │   ├── doc3515.txt
│   │   ├── doc3516.txt
│   │   ├── doc3517.txt
│   │   ├── doc3518.txt
│   │   ├── doc3519.txt
│   │   ├── doc352.txt
│   │   ├── doc3520.txt
│   │   ├── doc3521.txt
│   │   ├── doc3522.txt
│   │   ├── doc3523.txt
│   │   ├── doc3524.txt
│   │   ├── doc3525.txt
│   │   ├── doc3526.txt
│   │   ├── doc3527.txt
│   │   ├── doc3528.txt
│   │   ├── doc3529.txt
│   │   ├── doc353.txt
│   │   ├── doc3530.txt
│   │   ├── doc3531.txt
│   │   ├── doc3532.txt
│   │   ├── doc3533.txt
│   │   ├── doc3534.txt
│   │   ├── doc3535.txt
│   │   ├── doc3536.txt
│   │   ├── doc3537.txt
│   │   ├── doc3538.txt
│   │   ├── doc3539.txt
│   │   ├── doc354.txt
│   │   ├── doc3540.txt
│   │   ├── doc3541.txt
│   │   ├── doc3542.txt
│   │   ├── doc3543.txt
│   │   ├── doc3544.txt
│   │   ├── doc3545.txt
│   │   ├── doc3546.txt
│   │   ├── doc3547.txt
│   │   ├── doc3548.txt
│   │   ├── doc3549.txt
│   │   ├── doc355.txt
│   │   ├── doc3550.txt
│   │   ├── doc3551.txt
│   │   ├── doc3552.txt
│   │   ├── doc3553.txt
│   │   ├── doc3554.txt
│   │   ├── doc3555.txt
│   │   ├── doc3556.txt
│   │   ├── doc3557.txt
│   │   ├── doc3558.txt
│   │   ├── doc3559.txt
│   │   ├── doc356.txt
│   │   ├── doc3560.txt
│   │   ├── doc3561.txt
│   │   ├── doc3562.txt
│   │   ├── doc3563.txt
│   │   ├── doc3564.txt
│   │   ├── doc3565.txt
│   │   ├── doc3566.txt
│   │   ├── doc3567.txt
│   │   ├── doc3568.txt
│   │   ├── doc3569.txt
│   │   ├── doc357.txt
│   │   ├── doc3570.txt
│   │   ├── doc3571.txt
│   │   ├── doc3572.txt
│   │   ├── doc3573.txt
│   │   ├── doc3574.txt
│   │   ├── doc3575.txt
│   │   ├── doc3576.txt
│   │   ├── doc3577.txt
│   │   ├── doc3578.txt
│   │   ├── doc3579.txt
│   │   ├── doc358.txt
│   │   ├── doc3580.txt
│   │   ├── doc3581.txt
│   │   ├── doc3582.txt
│   │   ├── doc3583.txt
│   │   ├── doc3584.txt
│   │   ├── doc3585.txt
│   │   ├── doc3586.txt
│   │   ├── doc3587.txt
│   │   ├── doc3588.txt
│   │   ├── doc3589.txt
│   │   ├── doc359.txt
│   │   ├── doc3590.txt
│   │   ├── doc3591.txt
│   │   ├── doc3592.txt
│   │   ├── doc3593.txt
│   │   ├── doc3594.txt
│   │   ├── doc3595.txt
│   │   ├── doc3596.txt
│   │   ├── doc3597.txt
│   │   ├── doc3598.txt
│   │   ├── doc3599.txt
│   │   ├── doc36.txt
│   │   ├── doc360.txt
│   │   ├── doc3600.txt
│   │   ├── doc3601.txt
│   │   ├── doc3602.txt
│   │   ├── doc3603.txt
│   │   ├── doc3604.txt
│   │   ├── doc3605.txt
│   │   ├── doc3606.txt
│   │   ├── doc3607.txt
│   │   ├── doc3608.txt
│   │   ├── doc3609.txt
│   │   ├── doc361.txt
│   │   ├── doc3610.txt
│   │   ├── doc3611.txt
│   │   ├── doc3612.txt
│   │   ├── doc3613.txt
│   │   ├── doc3614.txt
│   │   ├── doc3615.txt
│   │   ├── doc3616.txt
│   │   ├── doc3617.txt
│   │   ├── doc3618.txt
│   │   ├── doc3619.txt
│   │   ├── doc362.txt
│   │   ├── doc3620.txt
│   │   ├── doc3621.txt
│   │   ├── doc3622.txt
│   │   ├── doc3623.txt
│   │   ├── doc3624.txt
│   │   ├── doc3625.txt
│   │   ├── doc3626.txt
│   │   ├── doc3627.txt
│   │   ├── doc3628.txt
│   │   ├── doc3629.txt
│   │   ├── doc363.txt
│   │   ├── doc3630.txt
│   │   ├── doc3631.txt
│   │   ├── doc3632.txt
│   │   ├── doc3633.txt
│   │   ├── doc3634.txt
│   │   ├── doc3635.txt
│   │   ├── doc3636.txt
│   │   ├── doc3637.txt
│   │   ├── doc3638.txt
│   │   ├── doc3639.txt
│   │   ├── doc364.txt
│   │   ├── doc3640.txt
│   │   ├── doc3641.txt
│   │   ├── doc3642.txt
│   │   ├── doc3643.txt
│   │   ├── doc3644.txt
│   │   ├── doc3645.txt
│   │   ├── doc3646.txt
│   │   ├── doc3647.txt
│   │   ├── doc3648.txt
│   │   ├── doc3649.txt
│   │   ├── doc365.txt
│   │   ├── doc3650.txt
│   │   ├── doc3651.txt
│   │   ├── doc3652.txt
│   │   ├── doc3653.txt
│   │   ├── doc3654.txt
│   │   ├── doc3655.txt
│   │   ├── doc3656.txt
│   │   ├── doc3657.txt
│   │   ├── doc3658.txt
│   │   ├── doc3659.txt
│   │   ├── doc366.txt
│   │   ├── doc3660.txt
│   │   ├── doc3661.txt
│   │   ├── doc3662.txt
│   │   ├── doc3663.txt
│   │   ├── doc3664.txt
│   │   ├── doc3665.txt
│   │   ├── doc3666.txt
│   │   ├── doc3667.txt
│   │   ├── doc3668.txt
│   │   ├── doc3669.txt
│   │   ├── doc367.txt
│   │   ├── doc3670.txt
│   │   ├── doc3671.txt
│   │   ├── doc3672.txt
│   │   ├── doc3673.txt
│   │   ├── doc3674.txt
│   │   ├── doc3675.txt
│   │   ├── doc3676.txt
│   │   ├── doc3677.txt
│   │   ├── doc3678.txt
│   │   ├── doc3679.txt
│   │   ├── doc368.txt
│   │   ├── doc3680.txt
│   │   ├── doc3681.txt
│   │   ├── doc3682.txt
│   │   ├── doc3683.txt
│   │   ├── doc3684.txt
│   │   ├── doc3685.txt
│   │   ├── doc3686.txt
│   │   ├── doc3687.txt
│   │   ├── doc3688.txt
│   │   ├── doc3689.txt
│   │   ├── doc369.txt
│   │   ├── doc3690.txt
│   │   ├── doc3691.txt
│   │   ├── doc3692.txt
│   │   ├── doc3693.txt
│   │   ├── doc3694.txt
│   │   ├── doc3695.txt
│   │   ├── doc3696.txt
│   │   ├── doc3697.txt
│   │   ├── doc3698.txt
│   │   ├── doc3699.txt
│   │   ├── doc37.txt
│   │   ├── doc370.txt
│   │   ├── doc3700.txt
│   │   ├── doc3701.txt
│   │   ├── doc3702.txt
│   │   ├── doc3703.txt
│   │   ├── doc3704.txt
│   │   ├── doc3705.txt
│   │   ├── doc3706.txt
│   │   ├── doc3707.txt
│   │   ├── doc3708.txt
│   │   ├── doc3709.txt
│   │   ├── doc371.txt
│   │   ├── doc3710.txt
│   │   ├── doc3711.txt
│   │   ├── doc3712.txt
│   │   ├── doc3713.txt
│   │   ├── doc3714.txt
│   │   ├── doc3715.txt
│   │   ├── doc3716.txt
│   │   ├── doc3717.txt
│   │   ├── doc3718.txt
│   │   ├── doc3719.txt
│   │   ├── doc372.txt
│   │   ├── doc3720.txt
│   │   ├── doc3721.txt
│   │   ├── doc3722.txt
│   │   ├── doc3723.txt
│   │   ├── doc3724.txt
│   │   ├── doc3725.txt
│   │   ├── doc3726.txt
│   │   ├── doc3727.txt
│   │   ├── doc3728.txt
│   │   ├── doc3729.txt
│   │   ├── doc373.txt
│   │   ├── doc3730.txt
│   │   ├── doc3731.txt
│   │   ├── doc3732.txt
│   │   ├── doc3733.txt
│   │   ├── doc3734.txt
│   │   ├── doc3735.txt
│   │   ├── doc3736.txt
│   │   ├── doc3737.txt
│   │   ├── doc3738.txt
│   │   ├── doc3739.txt
│   │   ├── doc374.txt
│   │   ├── doc3740.txt
│   │   ├── doc3741.txt
│   │   ├── doc3742.txt
│   │   ├── doc3743.txt
│   │   ├── doc3744.txt
│   │   ├── doc3745.txt
│   │   ├── doc3746.txt
│   │   ├── doc3747.txt
│   │   ├── doc3748.txt
│   │   ├── doc3749.txt
│   │   ├── doc375.txt
│   │   ├── doc3750.txt
│   │   ├── doc3751.txt
│   │   ├── doc3752.txt
│   │   ├── doc3753.txt
│   │   ├── doc3754.txt
│   │   ├── doc3755.txt
│   │   ├── doc3756.txt
│   │   ├── doc3757.txt
│   │   ├── doc3758.txt
│   │   ├── doc3759.txt
│   │   ├── doc376.txt
│   │   ├── doc3760.txt
│   │   ├── doc3761.txt
│   │   ├── doc3762.txt
│   │   ├── doc3763.txt
│   │   ├── doc3764.txt
│   │   ├── doc3765.txt
│   │   ├── doc3766.txt
│   │   ├── doc3767.txt
│   │   ├── doc3768.txt
│   │   ├── doc3769.txt
│   │   ├── doc377.txt
│   │   ├── doc3770.txt
│   │   ├── doc3771.txt
│   │   ├── doc3772.txt
│   │   ├── doc3773.txt
│   │   ├── doc3774.txt
│   │   ├── doc3775.txt
│   │   ├── doc3776.txt
│   │   ├── doc3777.txt
│   │   ├── doc3778.txt
│   │   ├── doc3779.txt
│   │   ├── doc378.txt
│   │   ├── doc3780.txt
│   │   ├── doc3781.txt
│   │   ├── doc3782.txt
│   │   ├── doc3783.txt
│   │   ├── doc3784.txt
│   │   ├── doc3785.txt
│   │   ├── doc3786.txt
│   │   ├── doc3787.txt
│   │   ├── doc3788.txt
│   │   ├── doc3789.txt
│   │   ├── doc379.txt
│   │   ├── doc3790.txt
│   │   ├── doc3791.txt
│   │   ├── doc3792.txt
│   │   ├── doc3793.txt
│   │   ├── doc3794.txt
│   │   ├── doc3795.txt
│   │   ├── doc3796.txt
│   │   ├── doc3797.txt
│   │   ├── doc3798.txt
│   │   ├── doc3799.txt
│   │   ├── doc38.txt
│   │   ├── doc380.txt
│   │   ├── doc3800.txt
│   │   ├── doc3801.txt
│   │   ├── doc3802.txt
│   │   ├── doc3803.txt
│   │   ├── doc3804.txt
│   │   ├── doc3805.txt
│   │   ├── doc3806.txt
│   │   ├── doc3807.txt
│   │   ├── doc3808.txt
│   │   ├── doc3809.txt
│   │   ├── doc381.txt
│   │   ├── doc3810.txt
│   │   ├── doc3811.txt
│   │   ├── doc3812.txt
│   │   ├── doc3813.txt
│   │   ├── doc3814.txt
│   │   ├── doc3815.txt
│   │   ├── doc3816.txt
│   │   ├── doc3817.txt
│   │   ├── doc3818.txt
│   │   ├── doc3819.txt
│   │   ├── doc382.txt
│   │   ├── doc3820.txt
│   │   ├── doc3821.txt
│   │   ├── doc3822.txt
│   │   ├── doc3823.txt
│   │   ├── doc3824.txt
│   │   ├── doc3825.txt
│   │   ├── doc3826.txt
│   │   ├── doc3827.txt
│   │   ├── doc3828.txt
│   │   ├── doc3829.txt
│   │   ├── doc383.txt
│   │   ├── doc3830.txt
│   │   ├── doc3831.txt
│   │   ├── doc3832.txt
│   │   ├── doc3833.txt
│   │   ├── doc3834.txt
│   │   ├── doc3835.txt
│   │   ├── doc3836.txt
│   │   ├── doc3837.txt
│   │   ├── doc3838.txt
│   │   ├── doc3839.txt
│   │   ├── doc384.txt
│   │   ├── doc3840.txt
│   │   ├── doc3841.txt
│   │   ├── doc3842.txt
│   │   ├── doc3843.txt
│   │   ├── doc3844.txt
│   │   ├── doc3845.txt
│   │   ├── doc3846.txt
│   │   ├── doc3847.txt
│   │   ├── doc3848.txt
│   │   ├── doc3849.txt
│   │   ├── doc385.txt
│   │   ├── doc3850.txt
│   │   ├── doc3851.txt
│   │   ├── doc3852.txt
│   │   ├── doc3853.txt
│   │   ├── doc3854.txt
│   │   ├── doc3855.txt
│   │   ├── doc3856.txt
│   │   ├── doc3857.txt
│   │   ├── doc3858.txt
│   │   ├── doc3859.txt
│   │   ├── doc386.txt
│   │   ├── doc3860.txt
│   │   ├── doc3861.txt
│   │   ├── doc3862.txt
│   │   ├── doc3863.txt
│   │   ├── doc3864.txt
│   │   ├── doc3865.txt
│   │   ├── doc3866.txt
│   │   ├── doc3867.txt
│   │   ├── doc3868.txt
│   │   ├── doc3869.txt
│   │   ├── doc387.txt
│   │   ├── doc3870.txt
│   │   ├── doc3871.txt
│   │   ├── doc3872.txt
│   │   ├── doc3873.txt
│   │   ├── doc3874.txt
│   │   ├── doc3875.txt
│   │   ├── doc3876.txt
│   │   ├── doc3877.txt
│   │   ├── doc3878.txt
│   │   ├── doc3879.txt
│   │   ├── doc388.txt
│   │   ├── doc3880.txt
│   │   ├── doc3881.txt
│   │   ├── doc3882.txt
│   │   ├── doc3883.txt
│   │   ├── doc3884.txt
│   │   ├── doc3885.txt
│   │   ├── doc3886.txt
│   │   ├── doc3887.txt
│   │   ├── doc3888.txt
│   │   ├── doc3889.txt
│   │   ├── doc389.txt
│   │   ├── doc3890.txt
│   │   ├── doc3891.txt
│   │   ├── doc3892.txt
│   │   ├── doc3893.txt
│   │   ├── doc3894.txt
│   │   ├── doc3895.txt
│   │   ├── doc3896.txt
│   │   ├── doc3897.txt
│   │   ├── doc3898.txt
│   │   ├── doc3899.txt
│   │   ├── doc39.txt
│   │   ├── doc390.txt
│   │   ├── doc3900.txt
│   │   ├── doc3901.txt
│   │   ├── doc3902.txt
│   │   ├── doc3903.txt
│   │   ├── doc3904.txt
│   │   ├── doc3905.txt
│   │   ├── doc3906.txt
│   │   ├── doc3907.txt
│   │   ├── doc3908.txt
│   │   ├── doc3909.txt
│   │   ├── doc391.txt
│   │   ├── doc3910.txt
│   │   ├── doc3911.txt
│   │   ├── doc3912.txt
│   │   ├── doc3913.txt
│   │   ├── doc3914.txt
│   │   ├── doc3915.txt
│   │   ├── doc3916.txt
│   │   ├── doc3917.txt
│   │   ├── doc3918.txt
│   │   ├── doc3919.txt
│   │   ├── doc392.txt
│   │   ├── doc3920.txt
│   │   ├── doc3921.txt
│   │   ├── doc3922.txt
│   │   ├── doc3923.txt
│   │   ├── doc3924.txt
│   │   ├── doc3925.txt
│   │   ├── doc3926.txt
│   │   ├── doc3927.txt
│   │   ├── doc3928.txt
│   │   ├── doc3929.txt
│   │   ├── doc393.txt
│   │   ├── doc3930.txt
│   │   ├── doc3931.txt
│   │   ├── doc3932.txt
│   │   ├── doc3933.txt
│   │   ├── doc3934.txt
│   │   ├── doc3935.txt
│   │   ├── doc3936.txt
│   │   ├── doc3937.txt
│   │   ├── doc3938.txt
│   │   ├── doc3939.txt
│   │   ├── doc394.txt
│   │   ├── doc3940.txt
│   │   ├── doc3941.txt
│   │   ├── doc3942.txt
│   │   ├── doc3943.txt
│   │   ├── doc3944.txt
│   │   ├── doc3945.txt
│   │   ├── doc3946.txt
│   │   ├── doc3947.txt
│   │   ├── doc3948.txt
│   │   ├── doc3949.txt
│   │   ├── doc395.txt
│   │   ├── doc3950.txt
│   │   ├── doc3951.txt
│   │   ├── doc3952.txt
│   │   ├── doc3953.txt
│   │   ├── doc3954.txt
│   │   ├── doc3955.txt
│   │   ├── doc3956.txt
│   │   ├── doc3957.txt
│   │   ├── doc3958.txt
│   │   ├── doc3959.txt
│   │   ├── doc396.txt
│   │   ├── doc3960.txt
│   │   ├── doc3961.txt
│   │   ├── doc3962.txt
│   │   ├── doc3963.txt
│   │   ├── doc3964.txt
│   │   ├── doc3965.txt
│   │   ├── doc3966.txt
│   │   ├── doc3967.txt
│   │   ├── doc3968.txt
│   │   ├── doc3969.txt
│   │   ├── doc397.txt
│   │   ├── doc3970.txt
│   │   ├── doc3971.txt
│   │   ├── doc3972.txt
│   │   ├── doc3973.txt
│   │   ├── doc3974.txt
│   │   ├── doc3975.txt
│   │   ├── doc3976.txt
│   │   ├── doc3977.txt
│   │   ├── doc3978.txt
│   │   ├── doc3979.txt
│   │   ├── doc398.txt
│   │   ├── doc3980.txt
│   │   ├── doc3981.txt
│   │   ├── doc3982.txt
│   │   ├── doc3983.txt
│   │   ├── doc3984.txt
│   │   ├── doc3985.txt
│   │   ├── doc3986.txt
│   │   ├── doc3987.txt
│   │   ├── doc3988.txt
│   │   ├── doc3989.txt
│   │   ├── doc399.txt
│   │   ├── doc3990.txt
│   │   ├── doc3991.txt
│   │   ├── doc3992.txt
│   │   ├── doc3993.txt
│   │   ├── doc3994.txt
│   │   ├── doc3995.txt
│   │   ├── doc3996.txt
│   │   ├── doc3997.txt
│   │   ├── doc3998.txt
│   │   ├── doc3999.txt
│   │   ├── doc4.txt
│   │   ├── doc40.txt
│   │   ├── doc400.txt
│   │   ├── doc4000.txt
│   │   ├── doc4001.txt
│   │   ├── doc4002.txt
│   │   ├── doc4003.txt
│   │   ├── doc4004.txt
│   │   ├── doc4005.txt
│   │   ├── doc4006.txt
│   │   ├── doc4007.txt
│   │   ├── doc4008.txt
│   │   ├── doc4009.txt
│   │   ├── doc401.txt
│   │   ├── doc4010.txt
│   │   ├── doc4011.txt
│   │   ├── doc4012.txt
│   │   ├── doc4013.txt
│   │   ├── doc4014.txt
│   │   ├── doc4015.txt
│   │   ├── doc4016.txt
│   │   ├── doc4017.txt
│   │   ├── doc4018.txt
│   │   ├── doc4019.txt
│   │   ├── doc402.txt
│   │   ├── doc4020.txt
│   │   ├── doc4021.txt
│   │   ├── doc4022.txt
│   │   ├── doc4023.txt
│   │   ├── doc4024.txt
│   │   ├── doc4025.txt
│   │   ├── doc4026.txt
│   │   ├── doc4027.txt
│   │   ├── doc4028.txt
│   │   ├── doc4029.txt
│   │   ├── doc403.txt
│   │   ├── doc4030.txt
│   │   ├── doc4031.txt
│   │   ├── doc4032.txt
│   │   ├── doc4033.txt
│   │   ├── doc4034.txt
│   │   ├── doc4035.txt
│   │   ├── doc4036.txt
│   │   ├── doc4037.txt
│   │   ├── doc4038.txt
│   │   ├── doc4039.txt
│   │   ├── doc404.txt
│   │   ├── doc4040.txt
│   │   ├── doc4041.txt
│   │   ├── doc4042.txt
│   │   ├── doc4043.txt
│   │   ├── doc4044.txt
│   │   ├── doc4045.txt
│   │   ├── doc4046.txt
│   │   ├── doc4047.txt
│   │   ├── doc4048.txt
│   │   ├── doc4049.txt
│   │   ├── doc405.txt
│   │   ├── doc4050.txt
│   │   ├── doc4051.txt
│   │   ├── doc4052.txt
│   │   ├── doc4053.txt
│   │   ├── doc4054.txt
│   │   ├── doc4055.txt
│   │   ├── doc4056.txt
│   │   ├── doc4057.txt
│   │   ├── doc4058.txt
│   │   ├── doc4059.txt
│   │   ├── doc406.txt
│   │   ├── doc4060.txt
│   │   ├── doc4061.txt
│   │   ├── doc4062.txt
│   │   ├── doc4063.txt
│   │   ├── doc4064.txt
│   │   ├── doc4065.txt
│   │   ├── doc4066.txt
│   │   ├── doc4067.txt
│   │   ├── doc4068.txt
│   │   ├── doc4069.txt
│   │   ├── doc407.txt
│   │   ├── doc4070.txt
│   │   ├── doc4071.txt
│   │   ├── doc4072.txt
│   │   ├── doc4073.txt
│   │   ├── doc4074.txt
│   │   ├── doc4075.txt
│   │   ├── doc4076.txt
│   │   ├── doc4077.txt
│   │   ├── doc4078.txt
│   │   ├── doc4079.txt
│   │   ├── doc408.txt
│   │   ├── doc4080.txt
│   │   ├── doc4081.txt
│   │   ├── doc4082.txt
│   │   ├── doc4083.txt
│   │   ├── doc4084.txt
│   │   ├── doc4085.txt
│   │   ├── doc4086.txt
│   │   ├── doc4087.txt
│   │   ├── doc4088.txt
│   │   ├── doc4089.txt
│   │   ├── doc409.txt
│   │   ├── doc4090.txt
│   │   ├── doc4091.txt
│   │   ├── doc4092.txt
│   │   ├── doc4093.txt
│   │   ├── doc4094.txt
│   │   ├── doc4095.txt
│   │   ├── doc4096.txt
│   │   ├── doc4097.txt
│   │   ├── doc4098.txt
│   │   ├── doc4099.txt
│   │   ├── doc41.txt
│   │   ├── doc410.txt
│   │   ├── doc4100.txt
│   │   ├── doc4101.txt
│   │   ├── doc4102.txt
│   │   ├── doc4103.txt
│   │   ├── doc4104.txt
│   │   ├── doc4105.txt
│   │   ├── doc4106.txt
│   │   ├── doc4107.txt
│   │   ├── doc4108.txt
│   │   ├── doc4109.txt
│   │   ├── doc411.txt
│   │   ├── doc4110.txt
│   │   ├── doc4111.txt
│   │   ├── doc4112.txt
│   │   ├── doc4113.txt
│   │   ├── doc4114.txt
│   │   ├── doc4115.txt
│   │   ├── doc4116.txt
│   │   ├── doc4117.txt
│   │   ├── doc4118.txt
│   │   ├── doc4119.txt
│   │   ├── doc412.txt
│   │   ├── doc4120.txt
│   │   ├── doc4121.txt
│   │   ├── doc4122.txt
│   │   ├── doc4123.txt
│   │   ├── doc4124.txt
│   │   ├── doc4125.txt
│   │   ├── doc4126.txt
│   │   ├── doc4127.txt
│   │   ├── doc4128.txt
│   │   ├── doc4129.txt
│   │   ├── doc413.txt
│   │   ├── doc4130.txt
│   │   ├── doc4131.txt
│   │   ├── doc4132.txt
│   │   ├── doc4133.txt
│   │   ├── doc4134.txt
│   │   ├── doc4135.txt
│   │   ├── doc4136.txt
│   │   ├── doc4137.txt
│   │   ├── doc4138.txt
│   │   ├── doc4139.txt
│   │   ├── doc414.txt
│   │   ├── doc4140.txt
│   │   ├── doc4141.txt
│   │   ├── doc4142.txt
│   │   ├── doc4143.txt
│   │   ├── doc4144.txt
│   │   ├── doc4145.txt
│   │   ├── doc4146.txt
│   │   ├── doc4147.txt
│   │   ├── doc4148.txt
│   │   ├── doc4149.txt
│   │   ├── doc415.txt
│   │   ├── doc4150.txt
│   │   ├── doc4151.txt
│   │   ├── doc4152.txt
│   │   ├── doc4153.txt
│   │   ├── doc4154.txt
│   │   ├── doc4155.txt
│   │   ├── doc4156.txt
│   │   ├── doc4157.txt
│   │   ├── doc4158.txt
│   │   ├── doc4159.txt
│   │   ├── doc416.txt
│   │   ├── doc4160.txt
│   │   ├── doc4161.txt
│   │   ├── doc4162.txt
│   │   ├── doc4163.txt
│   │   ├── doc4164.txt
│   │   ├── doc4165.txt
│   │   ├── doc4166.txt
│   │   ├── doc4167.txt
│   │   ├── doc4168.txt
│   │   ├── doc4169.txt
│   │   ├── doc417.txt
│   │   ├── doc4170.txt
│   │   ├── doc4171.txt
│   │   ├── doc4172.txt
│   │   ├── doc4173.txt
│   │   ├── doc4174.txt
│   │   ├── doc4175.txt
│   │   ├── doc4176.txt
│   │   ├── doc4177.txt
│   │   ├── doc4178.txt
│   │   ├── doc4179.txt
│   │   ├── doc418.txt
│   │   ├── doc4180.txt
│   │   ├── doc4181.txt
│   │   ├── doc4182.txt
│   │   ├── doc4183.txt
│   │   ├── doc4184.txt
│   │   ├── doc4185.txt
│   │   ├── doc4186.txt
│   │   ├── doc4187.txt
│   │   ├── doc4188.txt
│   │   ├── doc4189.txt
│   │   ├── doc419.txt
│   │   ├── doc4190.txt
│   │   ├── doc4191.txt
│   │   ├── doc4192.txt
│   │   ├── doc4193.txt
│   │   ├── doc4194.txt
│   │   ├── doc4195.txt
│   │   ├── doc4196.txt
│   │   ├── doc4197.txt
│   │   ├── doc4198.txt
│   │   ├── doc4199.txt
│   │   ├── doc42.txt
│   │   ├── doc420.txt
│   │   ├── doc4200.txt
│   │   ├── doc4201.txt
│   │   ├── doc4202.txt
│   │   ├── doc4203.txt
│   │   ├── doc4204.txt
│   │   ├── doc4205.txt
│   │   ├── doc4206.txt
│   │   ├── doc4207.txt
│   │   ├── doc4208.txt
│   │   ├── doc4209.txt
│   │   ├── doc421.txt
│   │   ├── doc4210.txt
│   │   ├── doc4211.txt
│   │   ├── doc4212.txt
│   │   ├── doc4213.txt
│   │   ├── doc4214.txt
│   │   ├── doc4215.txt
│   │   ├── doc4216.txt
│   │   ├── doc4217.txt
│   │   ├── doc4218.txt
│   │   ├── doc4219.txt
│   │   ├── doc422.txt
│   │   ├── doc4220.txt
│   │   ├── doc4221.txt
│   │   ├── doc4222.txt
│   │   ├── doc4223.txt
│   │   ├── doc4224.txt
│   │   ├── doc4225.txt
│   │   ├── doc4226.txt
│   │   ├── doc4227.txt
│   │   ├── doc4228.txt
│   │   ├── doc4229.txt
│   │   ├── doc423.txt
│   │   ├── doc4230.txt
│   │   ├── doc4231.txt
│   │   ├── doc4232.txt
│   │   ├── doc4233.txt
│   │   ├── doc4234.txt
│   │   ├── doc4235.txt
│   │   ├── doc4236.txt
│   │   ├── doc4237.txt
│   │   ├── doc4238.txt
│   │   ├── doc4239.txt
│   │   ├── doc424.txt
│   │   ├── doc4240.txt
│   │   ├── doc4241.txt
│   │   ├── doc4242.txt
│   │   ├── doc4243.txt
│   │   ├── doc4244.txt
│   │   ├── doc4245.txt
│   │   ├── doc4246.txt
│   │   ├── doc4247.txt
│   │   ├── doc4248.txt
│   │   ├── doc4249.txt
│   │   ├── doc425.txt
│   │   ├── doc4250.txt
│   │   ├── doc4251.txt
│   │   ├── doc4252.txt
│   │   ├── doc4253.txt
│   │   ├── doc4254.txt
│   │   ├── doc4255.txt
│   │   ├── doc4256.txt
│   │   ├── doc4257.txt
│   │   ├── doc4258.txt
│   │   ├── doc4259.txt
│   │   ├── doc426.txt
│   │   ├── doc4260.txt
│   │   ├── doc4261.txt
│   │   ├── doc4262.txt
│   │   ├── doc4263.txt
│   │   ├── doc4264.txt
│   │   ├── doc4265.txt
│   │   ├── doc4266.txt
│   │   ├── doc4267.txt
│   │   ├── doc4268.txt
│   │   ├── doc4269.txt
│   │   ├── doc427.txt
│   │   ├── doc4270.txt
│   │   ├── doc4271.txt
│   │   ├── doc4272.txt
│   │   ├── doc4273.txt
│   │   ├── doc4274.txt
│   │   ├── doc4275.txt
│   │   ├── doc4276.txt
│   │   ├── doc4277.txt
│   │   ├── doc4278.txt
│   │   ├── doc4279.txt
│   │   ├── doc428.txt
│   │   ├── doc4280.txt
│   │   ├── doc4281.txt
│   │   ├── doc4282.txt
│   │   ├── doc4283.txt
│   │   ├── doc4284.txt
│   │   ├── doc4285.txt
│   │   ├── doc4286.txt
│   │   ├── doc4287.txt
│   │   ├── doc4288.txt
│   │   ├── doc4289.txt
│   │   ├── doc429.txt
│   │   ├── doc4290.txt
│   │   ├── doc4291.txt
│   │   ├── doc4292.txt
│   │   ├── doc4293.txt
│   │   ├── doc4294.txt
│   │   ├── doc4295.txt
│   │   ├── doc4296.txt
│   │   ├── doc4297.txt
│   │   ├── doc4298.txt
│   │   ├── doc4299.txt
│   │   ├── doc43.txt
│   │   ├── doc430.txt
│   │   ├── doc4300.txt
│   │   ├── doc4301.txt
│   │   ├── doc4302.txt
│   │   ├── doc4303.txt
│   │   ├── doc4304.txt
│   │   ├── doc4305.txt
│   │   ├── doc4306.txt
│   │   ├── doc4307.txt
│   │   ├── doc4308.txt
│   │   ├── doc4309.txt
│   │   ├── doc431.txt
│   │   ├── doc4310.txt
│   │   ├── doc4311.txt
│   │   ├── doc4312.txt
│   │   ├── doc4313.txt
│   │   ├── doc4314.txt
│   │   ├── doc4315.txt
│   │   ├── doc4316.txt
│   │   ├── doc4317.txt
│   │   ├── doc4318.txt
│   │   ├── doc4319.txt
│   │   ├── doc432.txt
│   │   ├── doc4320.txt
│   │   ├── doc4321.txt
│   │   ├── doc4322.txt
│   │   ├── doc4323.txt
│   │   ├── doc4324.txt
│   │   ├── doc4325.txt
│   │   ├── doc4326.txt
│   │   ├── doc4327.txt
│   │   ├── doc4328.txt
│   │   ├── doc4329.txt
│   │   ├── doc433.txt
│   │   ├── doc4330.txt
│   │   ├── doc4331.txt
│   │   ├── doc4332.txt
│   │   ├── doc4333.txt
│   │   ├── doc4334.txt
│   │   ├── doc4335.txt
│   │   ├── doc4336.txt
│   │   ├── doc4337.txt
│   │   ├── doc4338.txt
│   │   ├── doc4339.txt
│   │   ├── doc434.txt
│   │   ├── doc4340.txt
│   │   ├── doc4341.txt
│   │   ├── doc4342.txt
│   │   ├── doc4343.txt
│   │   ├── doc4344.txt
│   │   ├── doc4345.txt
│   │   ├── doc4346.txt
│   │   ├── doc4347.txt
│   │   ├── doc4348.txt
│   │   ├── doc4349.txt
│   │   ├── doc435.txt
│   │   ├── doc4350.txt
│   │   ├── doc4351.txt
│   │   ├── doc4352.txt
│   │   ├── doc4353.txt
│   │   ├── doc4354.txt
│   │   ├── doc4355.txt
│   │   ├── doc4356.txt
│   │   ├── doc4357.txt
│   │   ├── doc4358.txt
│   │   ├── doc4359.txt
│   │   ├── doc436.txt
│   │   ├── doc4360.txt
│   │   ├── doc4361.txt
│   │   ├── doc4362.txt
│   │   ├── doc4363.txt
│   │   ├── doc4364.txt
│   │   ├── doc4365.txt
│   │   ├── doc4366.txt
│   │   ├── doc4367.txt
│   │   ├── doc4368.txt
│   │   ├── doc4369.txt
│   │   ├── doc437.txt
│   │   ├── doc4370.txt
│   │   ├── doc4371.txt
│   │   ├── doc4372.txt
│   │   ├── doc4373.txt
│   │   ├── doc4374.txt
│   │   ├── doc4375.txt
│   │   ├── doc4376.txt
│   │   ├── doc4377.txt
│   │   ├── doc4378.txt
│   │   ├── doc4379.txt
│   │   ├── doc438.txt
│   │   ├── doc4380.txt
│   │   ├── doc4381.txt
│   │   ├── doc4382.txt
│   │   ├── doc4383.txt
│   │   ├── doc4384.txt
│   │   ├── doc4385.txt
│   │   ├── doc4386.txt
│   │   ├── doc4387.txt
│   │   ├── doc4388.txt
│   │   ├── doc4389.txt
│   │   ├── doc439.txt
│   │   ├── doc4390.txt
│   │   ├── doc4391.txt
│   │   ├── doc4392.txt
│   │   ├── doc4393.txt
│   │   ├── doc4394.txt
│   │   ├── doc4395.txt
│   │   ├── doc4396.txt
│   │   ├── doc4397.txt
│   │   ├── doc4398.txt
│   │   ├── doc4399.txt
│   │   ├── doc44.txt
│   │   ├── doc440.txt
│   │   ├── doc4400.txt
│   │   ├── doc4401.txt
│   │   ├── doc4402.txt
│   │   ├── doc4403.txt
│   │   ├── doc4404.txt
│   │   ├── doc4405.txt
│   │   ├── doc4406.txt
│   │   ├── doc4407.txt
│   │   ├── doc4408.txt
│   │   ├── doc4409.txt
│   │   ├── doc441.txt
│   │   ├── doc4410.txt
│   │   ├── doc4411.txt
│   │   ├── doc4412.txt
│   │   ├── doc4413.txt
│   │   ├── doc4414.txt
│   │   ├── doc4415.txt
│   │   ├── doc4416.txt
│   │   ├── doc4417.txt
│   │   ├── doc4418.txt
│   │   ├── doc4419.txt
│   │   ├── doc442.txt
│   │   ├── doc4420.txt
│   │   ├── doc4421.txt
│   │   ├── doc4422.txt
│   │   ├── doc4423.txt
│   │   ├── doc4424.txt
│   │   ├── doc4425.txt
│   │   ├── doc4426.txt
│   │   ├── doc4427.txt
│   │   ├── doc4428.txt
│   │   ├── doc4429.txt
│   │   ├── doc443.txt
│   │   ├── doc4430.txt
│   │   ├── doc4431.txt
│   │   ├── doc4432.txt
│   │   ├── doc4433.txt
│   │   ├── doc4434.txt
│   │   ├── doc4435.txt
│   │   ├── doc4436.txt
│   │   ├── doc4437.txt
│   │   ├── doc4438.txt
│   │   ├── doc4439.txt
│   │   ├── doc444.txt
│   │   ├── doc4440.txt
│   │   ├── doc4441.txt
│   │   ├── doc4442.txt
│   │   ├── doc4443.txt
│   │   ├── doc4444.txt
│   │   ├── doc4445.txt
│   │   ├── doc4446.txt
│   │   ├── doc4447.txt
│   │   ├── doc4448.txt
│   │   ├── doc4449.txt
│   │   ├── doc445.txt
│   │   ├── doc4450.txt
│   │   ├── doc4451.txt
│   │   ├── doc4452.txt
│   │   ├── doc4453.txt
│   │   ├── doc4454.txt
│   │   ├── doc4455.txt
│   │   ├── doc4456.txt
│   │   ├── doc4457.txt
│   │   ├── doc4458.txt
│   │   ├── doc4459.txt
│   │   ├── doc446.txt
│   │   ├── doc4460.txt
│   │   ├── doc4461.txt
│   │   ├── doc4462.txt
│   │   ├── doc4463.txt
│   │   ├── doc4464.txt
│   │   ├── doc4465.txt
│   │   ├── doc4466.txt
│   │   ├── doc4467.txt
│   │   ├── doc4468.txt
│   │   ├── doc4469.txt
│   │   ├── doc447.txt
│   │   ├── doc4470.txt
│   │   ├── doc4471.txt
│   │   ├── doc4472.txt
│   │   ├── doc4473.txt
│   │   ├── doc4474.txt
│   │   ├── doc4475.txt
│   │   ├── doc4476.txt
│   │   ├── doc4477.txt
│   │   ├── doc4478.txt
│   │   ├── doc4479.txt
│   │   ├── doc448.txt
│   │   ├── doc4480.txt
│   │   ├── doc4481.txt
│   │   ├── doc4482.txt
│   │   ├── doc4483.txt
│   │   ├── doc4484.txt
│   │   ├── doc4485.txt
│   │   ├── doc4486.txt
│   │   ├── doc4487.txt
│   │   ├── doc4488.txt
│   │   ├── doc4489.txt
│   │   ├── doc449.txt
│   │   ├── doc4490.txt
│   │   ├── doc4491.txt
│   │   ├── doc4492.txt
│   │   ├── doc4493.txt
│   │   ├── doc4494.txt
│   │   ├── doc4495.txt
│   │   ├── doc4496.txt
│   │   ├── doc4497.txt
│   │   ├── doc4498.txt
│   │   ├── doc4499.txt
│   │   ├── doc45.txt
│   │   ├── doc450.txt
│   │   ├── doc4500.txt
│   │   ├── doc4501.txt
│   │   ├── doc4502.txt
│   │   ├── doc4503.txt
│   │   ├── doc4504.txt
│   │   ├── doc4505.txt
│   │   ├── doc4506.txt
│   │   ├── doc4507.txt
│   │   ├── doc4508.txt
│   │   ├── doc4509.txt
│   │   ├── doc451.txt
│   │   ├── doc4510.txt
│   │   ├── doc4511.txt
│   │   ├── doc4512.txt
│   │   ├── doc4513.txt
│   │   ├── doc4514.txt
│   │   ├── doc4515.txt
│   │   ├── doc4516.txt
│   │   ├── doc4517.txt
│   │   ├── doc4518.txt
│   │   ├── doc4519.txt
│   │   ├── doc452.txt
│   │   ├── doc4520.txt
│   │   ├── doc4521.txt
│   │   ├── doc4522.txt
│   │   ├── doc4523.txt
│   │   ├── doc4524.txt
│   │   ├── doc4525.txt
│   │   ├── doc4526.txt
│   │   ├── doc4527.txt
│   │   ├── doc4528.txt
│   │   ├── doc4529.txt
│   │   ├── doc453.txt
│   │   ├── doc4530.txt
│   │   ├── doc4531.txt
│   │   ├── doc4532.txt
│   │   ├── doc4533.txt
│   │   ├── doc4534.txt
│   │   ├── doc4535.txt
│   │   ├── doc4536.txt
│   │   ├── doc4537.txt
│   │   ├── doc4538.txt
│   │   ├── doc4539.txt
│   │   ├── doc454.txt
│   │   ├── doc4540.txt
│   │   ├── doc4541.txt
│   │   ├── doc4542.txt
│   │   ├── doc4543.txt
│   │   ├── doc4544.txt
│   │   ├── doc4545.txt
│   │   ├── doc4546.txt
│   │   ├── doc4547.txt
│   │   ├── doc4548.txt
│   │   ├── doc4549.txt
│   │   ├── doc455.txt
│   │   ├── doc4550.txt
│   │   ├── doc4551.txt
│   │   ├── doc4552.txt
│   │   ├── doc4553.txt
│   │   ├── doc4554.txt
│   │   ├── doc4555.txt
│   │   ├── doc4556.txt
│   │   ├── doc4557.txt
│   │   ├── doc4558.txt
│   │   ├── doc4559.txt
│   │   ├── doc456.txt
│   │   ├── doc4560.txt
│   │   ├── doc4561.txt
│   │   ├── doc4562.txt
│   │   ├── doc4563.txt
│   │   ├── doc4564.txt
│   │   ├── doc4565.txt
│   │   ├── doc4566.txt
│   │   ├── doc4567.txt
│   │   ├── doc4568.txt
│   │   ├── doc4569.txt
│   │   ├── doc457.txt
│   │   ├── doc4570.txt
│   │   ├── doc4571.txt
│   │   ├── doc4572.txt
│   │   ├── doc4573.txt
│   │   ├── doc4574.txt
│   │   ├── doc4575.txt
│   │   ├── doc4576.txt
│   │   ├── doc4577.txt
│   │   ├── doc4578.txt
│   │   ├── doc4579.txt
│   │   ├── doc458.txt
│   │   ├── doc4580.txt
│   │   ├── doc4581.txt
│   │   ├── doc4582.txt
│   │   ├── doc4583.txt
│   │   ├── doc4584.txt
│   │   ├── doc4585.txt
│   │   ├── doc4586.txt
│   │   ├── doc4587.txt
│   │   ├── doc4588.txt
│   │   ├── doc4589.txt
│   │   ├── doc459.txt
│   │   ├── doc4590.txt
│   │   ├── doc4591.txt
│   │   ├── doc4592.txt
│   │   ├── doc4593.txt
│   │   ├── doc4594.txt
│   │   ├── doc4595.txt
│   │   ├── doc4596.txt
│   │   ├── doc4597.txt
│   │   ├── doc4598.txt
│   │   ├── doc4599.txt
│   │   ├── doc46.txt
│   │   ├── doc460.txt
│   │   ├── doc4600.txt
│   │   ├── doc4601.txt
│   │   ├── doc4602.txt
│   │   ├── doc4603.txt
│   │   ├── doc4604.txt
│   │   ├── doc4605.txt
│   │   ├── doc4606.txt
│   │   ├── doc4607.txt
│   │   ├── doc4608.txt
│   │   ├── doc4609.txt
│   │   ├── doc461.txt
│   │   ├── doc4610.txt
│   │   ├── doc4611.txt
│   │   ├── doc4612.txt
│   │   ├── doc4613.txt
│   │   ├── doc4614.txt
│   │   ├── doc4615.txt
│   │   ├── doc4616.txt
│   │   ├── doc4617.txt
│   │   ├── doc4618.txt
│   │   ├── doc4619.txt
│   │   ├── doc462.txt
│   │   ├── doc4620.txt
│   │   ├── doc4621.txt
│   │   ├── doc4622.txt
│   │   ├── doc4623.txt
│   │   ├── doc4624.txt
│   │   ├── doc4625.txt
│   │   ├── doc4626.txt
│   │   ├── doc4627.txt
│   │   ├── doc4628.txt
│   │   ├── doc4629.txt
│   │   ├── doc463.txt
│   │   ├── doc4630.txt
│   │   ├── doc4631.txt
│   │   ├── doc4632.txt
│   │   ├── doc4633.txt
│   │   ├── doc4634.txt
│   │   ├── doc4635.txt
│   │   ├── doc4636.txt
│   │   ├── doc4637.txt
│   │   ├── doc4638.txt
│   │   ├── doc4639.txt
│   │   ├── doc464.txt
│   │   ├── doc4640.txt
│   │   ├── doc4641.txt
│   │   ├── doc4642.txt
│   │   ├── doc4643.txt
│   │   ├── doc4644.txt
│   │   ├── doc4645.txt
│   │   ├── doc4646.txt
│   │   ├── doc4647.txt
│   │   ├── doc4648.txt
│   │   ├── doc4649.txt
│   │   ├── doc465.txt
│   │   ├── doc4650.txt
│   │   ├── doc4651.txt
│   │   ├── doc4652.txt
│   │   ├── doc4653.txt
│   │   ├── doc4654.txt
│   │   ├── doc4655.txt
│   │   ├── doc4656.txt
│   │   ├── doc4657.txt
│   │   ├── doc4658.txt
│   │   ├── doc4659.txt
│   │   ├── doc466.txt
│   │   ├── doc4660.txt
│   │   ├── doc4661.txt
│   │   ├── doc4662.txt
│   │   ├── doc4663.txt
│   │   ├── doc4664.txt
│   │   ├── doc4665.txt
│   │   ├── doc4666.txt
│   │   ├── doc4667.txt
│   │   ├── doc4668.txt
│   │   ├── doc4669.txt
│   │   ├── doc467.txt
│   │   ├── doc4670.txt
│   │   ├── doc4671.txt
│   │   ├── doc4672.txt
│   │   ├── doc4673.txt
│   │   ├── doc4674.txt
│   │   ├── doc4675.txt
│   │   ├── doc4676.txt
│   │   ├── doc4677.txt
│   │   ├── doc4678.txt
│   │   ├── doc4679.txt
│   │   ├── doc468.txt
│   │   ├── doc4680.txt
│   │   ├── doc4681.txt
│   │   ├── doc4682.txt
│   │   ├── doc4683.txt
│   │   ├── doc4684.txt
│   │   ├── doc4685.txt
│   │   ├── doc4686.txt
│   │   ├── doc4687.txt
│   │   ├── doc4688.txt
│   │   ├── doc4689.txt
│   │   ├── doc469.txt
│   │   ├── doc4690.txt
│   │   ├── doc4691.txt
│   │   ├── doc4692.txt
│   │   ├── doc4693.txt
│   │   ├── doc4694.txt
│   │   ├── doc4695.txt
│   │   ├── doc4696.txt
│   │   ├── doc4697.txt
│   │   ├── doc4698.txt
│   │   ├── doc4699.txt
│   │   ├── doc47.txt
│   │   ├── doc470.txt
│   │   ├── doc4700.txt
│   │   ├── doc4701.txt
│   │   ├── doc4702.txt
│   │   ├── doc4703.txt
│   │   ├── doc4704.txt
│   │   ├── doc4705.txt
│   │   ├── doc4706.txt
│   │   ├── doc4707.txt
│   │   ├── doc4708.txt
│   │   ├── doc4709.txt
│   │   ├── doc471.txt
│   │   ├── doc4710.txt
│   │   ├── doc4711.txt
│   │   ├── doc4712.txt
│   │   ├── doc4713.txt
│   │   ├── doc4714.txt
│   │   ├── doc4715.txt
│   │   ├── doc4716.txt
│   │   ├── doc4717.txt
│   │   ├── doc4718.txt
│   │   ├── doc4719.txt
│   │   ├── doc472.txt
│   │   ├── doc4720.txt
│   │   ├── doc4721.txt
│   │   ├── doc4722.txt
│   │   ├── doc4723.txt
│   │   ├── doc4724.txt
│   │   ├── doc4725.txt
│   │   ├── doc4726.txt
│   │   ├── doc4727.txt
│   │   ├── doc4728.txt
│   │   ├── doc4729.txt
│   │   ├── doc473.txt
│   │   ├── doc4730.txt
│   │   ├── doc4731.txt
│   │   ├── doc4732.txt
│   │   ├── doc4733.txt
│   │   ├── doc4734.txt
│   │   ├── doc4735.txt
│   │   ├── doc4736.txt
│   │   ├── doc4737.txt
│   │   ├── doc4738.txt
│   │   ├── doc4739.txt
│   │   ├── doc474.txt
│   │   ├── doc4740.txt
│   │   ├── doc4741.txt
│   │   ├── doc4742.txt
│   │   ├── doc4743.txt
│   │   ├── doc4744.txt
│   │   ├── doc4745.txt
│   │   ├── doc4746.txt
│   │   ├── doc4747.txt
│   │   ├── doc4748.txt
│   │   ├── doc4749.txt
│   │   ├── doc475.txt
│   │   ├── doc4750.txt
│   │   ├── doc4751.txt
│   │   ├── doc4752.txt
│   │   ├── doc4753.txt
│   │   ├── doc4754.txt
│   │   ├── doc4755.txt
│   │   ├── doc4756.txt
│   │   ├── doc4757.txt
│   │   ├── doc4758.txt
│   │   ├── doc4759.txt
│   │   ├── doc476.txt
│   │   ├── doc4760.txt
│   │   ├── doc4761.txt
│   │   ├── doc4762.txt
│   │   ├── doc4763.txt
│   │   ├── doc4764.txt
│   │   ├── doc4765.txt
│   │   ├── doc4766.txt
│   │   ├── doc4767.txt
│   │   ├── doc4768.txt
│   │   ├── doc4769.txt
│   │   ├── doc477.txt
│   │   ├── doc4770.txt
│   │   ├── doc4771.txt
│   │   ├── doc4772.txt
│   │   ├── doc4773.txt
│   │   ├── doc4774.txt
│   │   ├── doc4775.txt
│   │   ├── doc4776.txt
│   │   ├── doc4777.txt
│   │   ├── doc4778.txt
│   │   ├── doc4779.txt
│   │   ├── doc478.txt
│   │   ├── doc4780.txt
│   │   ├── doc4781.txt
│   │   ├── doc4782.txt
│   │   ├── doc4783.txt
│   │   ├── doc4784.txt
│   │   ├── doc4785.txt
│   │   ├── doc4786.txt
│   │   ├── doc4787.txt
│   │   ├── doc4788.txt
│   │   ├── doc4789.txt
│   │   ├── doc479.txt
│   │   ├── doc4790.txt
│   │   ├── doc4791.txt
│   │   ├── doc4792.txt
│   │   ├── doc4793.txt
│   │   ├── doc4794.txt
│   │   ├── doc4795.txt
│   │   ├── doc4796.txt
│   │   ├── doc4797.txt
│   │   ├── doc4798.txt
│   │   ├── doc4799.txt
│   │   ├── doc48.txt
│   │   ├── doc480.txt
│   │   ├── doc4800.txt
│   │   ├── doc4801.txt
│   │   ├── doc4802.txt
│   │   ├── doc4803.txt
│   │   ├── doc4804.txt
│   │   ├── doc4805.txt
│   │   ├── doc4806.txt
│   │   ├── doc4807.txt
│   │   ├── doc4808.txt
│   │   ├── doc4809.txt
│   │   ├── doc481.txt
│   │   ├── doc4810.txt
│   │   ├── doc4811.txt
│   │   ├── doc4812.txt
│   │   ├── doc4813.txt
│   │   ├── doc4814.txt
│   │   ├── doc4815.txt
│   │   ├── doc4816.txt
│   │   ├── doc4817.txt
│   │   ├── doc4818.txt
│   │   ├── doc4819.txt
│   │   ├── doc482.txt
│   │   ├── doc4820.txt
│   │   ├── doc4821.txt
│   │   ├── doc4822.txt
│   │   ├── doc4823.txt
│   │   ├── doc4824.txt
│   │   ├── doc4825.txt
│   │   ├── doc4826.txt
│   │   ├── doc4827.txt
│   │   ├── doc4828.txt
│   │   ├── doc4829.txt
│   │   ├── doc483.txt
│   │   ├── doc4830.txt
│   │   ├── doc4831.txt
│   │   ├── doc4832.txt
│   │   ├── doc4833.txt
│   │   ├── doc4834.txt
│   │   ├── doc4835.txt
│   │   ├── doc4836.txt
│   │   ├── doc4837.txt
│   │   ├── doc4838.txt
│   │   ├── doc4839.txt
│   │   ├── doc484.txt
│   │   ├── doc4840.txt
│   │   ├── doc4841.txt
│   │   ├── doc4842.txt
│   │   ├── doc4843.txt
│   │   ├── doc4844.txt
│   │   ├── doc4845.txt
│   │   ├── doc4846.txt
│   │   ├── doc4847.txt
│   │   ├── doc4848.txt
│   │   ├── doc4849.txt
│   │   ├── doc485.txt
│   │   ├── doc4850.txt
│   │   ├── doc4851.txt
│   │   ├── doc4852.txt
│   │   ├── doc4853.txt
│   │   ├── doc4854.txt
│   │   ├── doc4855.txt
│   │   ├── doc4856.txt
│   │   ├── doc4857.txt
│   │   ├── doc4858.txt
│   │   ├── doc4859.txt
│   │   ├── doc486.txt
│   │   ├── doc4860.txt
│   │   ├── doc4861.txt
│   │   ├── doc4862.txt
│   │   ├── doc4863.txt
│   │   ├── doc4864.txt
│   │   ├── doc4865.txt
│   │   ├── doc4866.txt
│   │   ├── doc4867.txt
│   │   ├── doc4868.txt
│   │   ├── doc4869.txt
│   │   ├── doc487.txt
│   │   ├── doc4870.txt
│   │   ├── doc4871.txt
│   │   ├── doc4872.txt
│   │   ├── doc4873.txt
│   │   ├── doc4874.txt
│   │   ├── doc4875.txt
│   │   ├── doc4876.txt
│   │   ├── doc4877.txt
│   │   ├── doc4878.txt
│   │   ├── doc4879.txt
│   │   ├── doc488.txt
│   │   ├── doc4880.txt
│   │   ├── doc4881.txt
│   │   ├── doc4882.txt
│   │   ├── doc4883.txt
│   │   ├── doc4884.txt
│   │   ├── doc4885.txt
│   │   ├── doc4886.txt
│   │   ├── doc4887.txt
│   │   ├── doc4888.txt
│   │   ├── doc4889.txt
│   │   ├── doc489.txt
│   │   ├── doc4890.txt
│   │   ├── doc4891.txt
│   │   ├── doc4892.txt
│   │   ├── doc4893.txt
│   │   ├── doc4894.txt
│   │   ├── doc4895.txt
│   │   ├── doc4896.txt
│   │   ├── doc4897.txt
│   │   ├── doc4898.txt
│   │   ├── doc4899.txt
│   │   ├── doc49.txt
│   │   ├── doc490.txt
│   │   ├── doc4900.txt
│   │   ├── doc4901.txt
│   │   ├── doc4902.txt
│   │   ├── doc4903.txt
│   │   ├── doc4904.txt
│   │   ├── doc4905.txt
│   │   ├── doc4906.txt
│   │   ├── doc4907.txt
│   │   ├── doc4908.txt
│   │   ├── doc4909.txt
│   │   ├── doc491.txt
│   │   ├── doc4910.txt
│   │   ├── doc4911.txt
│   │   ├── doc4912.txt
│   │   ├── doc4913.txt
│   │   ├── doc4914.txt
│   │   ├── doc4915.txt
│   │   ├── doc4916.txt
│   │   ├── doc4917.txt
│   │   ├── doc4918.txt
│   │   ├── doc4919.txt
│   │   ├── doc492.txt
│   │   ├── doc4920.txt
│   │   ├── doc4921.txt
│   │   ├── doc4922.txt
│   │   ├── doc4923.txt
│   │   ├── doc4924.txt
│   │   ├── doc4925.txt
│   │   ├── doc4926.txt
│   │   ├── doc4927.txt
│   │   ├── doc4928.txt
│   │   ├── doc4929.txt
│   │   ├── doc493.txt
│   │   ├── doc4930.txt
│   │   ├── doc4931.txt
│   │   ├── doc4932.txt
│   │   ├── doc4933.txt
│   │   ├── doc4934.txt
│   │   ├── doc4935.txt
│   │   ├── doc4936.txt
│   │   ├── doc4937.txt
│   │   ├── doc4938.txt
│   │   ├── doc4939.txt
│   │   ├── doc494.txt
│   │   ├── doc4940.txt
│   │   ├── doc4941.txt
│   │   ├── doc4942.txt
│   │   ├── doc4943.txt
│   │   ├── doc4944.txt
│   │   ├── doc4945.txt
│   │   ├── doc4946.txt
│   │   ├── doc4947.txt
│   │   ├── doc4948.txt
│   │   ├── doc4949.txt
│   │   ├── doc495.txt
│   │   ├── doc4950.txt
│   │   ├── doc4951.txt
│   │   ├── doc4952.txt
│   │   ├── doc4953.txt
│   │   ├── doc4954.txt
│   │   ├── doc4955.txt
│   │   ├── doc4956.txt
│   │   ├── doc4957.txt
│   │   ├── doc4958.txt
│   │   ├── doc4959.txt
│   │   ├── doc496.txt
│   │   ├── doc4960.txt
│   │   ├── doc4961.txt
│   │   ├── doc4962.txt
│   │   ├── doc4963.txt
│   │   ├── doc4964.txt
│   │   ├── doc4965.txt
│   │   ├── doc4966.txt
│   │   ├── doc4967.txt
│   │   ├── doc4968.txt
│   │   ├── doc4969.txt
│   │   ├── doc497.txt
│   │   ├── doc4970.txt
│   │   ├── doc4971.txt
│   │   ├── doc4972.txt
│   │   ├── doc4973.txt
│   │   ├── doc4974.txt
│   │   ├── doc4975.txt
│   │   ├── doc4976.txt
│   │   ├── doc4977.txt
│   │   ├── doc4978.txt
│   │   ├── doc4979.txt
│   │   ├── doc498.txt
│   │   ├── doc4980.txt
│   │   ├── doc4981.txt
│   │   ├── doc4982.txt
│   │   ├── doc4983.txt
│   │   ├── doc4984.txt
│   │   ├── doc4985.txt
│   │   ├── doc4986.txt
│   │   ├── doc4987.txt
│   │   ├── doc4988.txt
│   │   ├── doc4989.txt
│   │   ├── doc499.txt
│   │   ├── doc4990.txt
│   │   ├── doc4991.txt
│   │   ├── doc4992.txt
│   │   ├── doc4993.txt
│   │   ├── doc4994.txt
│   │   ├── doc4995.txt
│   │   ├── doc4996.txt
│   │   ├── doc4997.txt
│   │   ├── doc4998.txt
│   │   ├── doc4999.txt
│   │   ├── doc5.txt
│   │   ├── doc50.txt
│   │   ├── doc500.txt
│   │   ├── doc5000.txt
│   │   ├── doc5001.txt
│   │   ├── doc5002.txt
│   │   ├── doc5003.txt
│   │   ├── doc5004.txt
│   │   ├── doc5005.txt
│   │   ├── doc5006.txt
│   │   ├── doc5007.txt
│   │   ├── doc5008.txt
│   │   ├── doc5009.txt
│   │   ├── doc501.txt
│   │   ├── doc5010.txt
│   │   ├── doc5011.txt
│   │   ├── doc5012.txt
│   │   ├── doc5013.txt
│   │   ├── doc5014.txt
│   │   ├── doc5015.txt
│   │   ├── doc5016.txt
│   │   ├── doc5017.txt
│   │   ├── doc5018.txt
│   │   ├── doc5019.txt
│   │   ├── doc502.txt
│   │   ├── doc5020.txt
│   │   ├── doc5021.txt
│   │   ├── doc5022.txt
│   │   ├── doc5023.txt
│   │   ├── doc5024.txt
│   │   ├── doc5025.txt
│   │   ├── doc5026.txt
│   │   ├── doc5027.txt
│   │   ├── doc5028.txt
│   │   ├── doc5029.txt
│   │   ├── doc503.txt
│   │   ├── doc5030.txt
│   │   ├── doc5031.txt
│   │   ├── doc5032.txt
│   │   ├── doc5033.txt
│   │   ├── doc5034.txt
│   │   ├── doc5035.txt
│   │   ├── doc5036.txt
│   │   ├── doc5037.txt
│   │   ├── doc5038.txt
│   │   ├── doc5039.txt
│   │   ├── doc504.txt
│   │   ├── doc5040.txt
│   │   ├── doc5041.txt
│   │   ├── doc5042.txt
│   │   ├── doc5043.txt
│   │   ├── doc5044.txt
│   │   ├── doc5045.txt
│   │   ├── doc5046.txt
│   │   ├── doc5047.txt
│   │   ├── doc5048.txt
│   │   ├── doc5049.txt
│   │   ├── doc505.txt
│   │   ├── doc5050.txt
│   │   ├── doc5051.txt
│   │   ├── doc5052.txt
│   │   ├── doc5053.txt
│   │   ├── doc5054.txt
│   │   ├── doc5055.txt
│   │   ├── doc5056.txt
│   │   ├── doc5057.txt
│   │   ├── doc5058.txt
│   │   ├── doc5059.txt
│   │   ├── doc506.txt
│   │   ├── doc5060.txt
│   │   ├── doc5061.txt
│   │   ├── doc5062.txt
│   │   ├── doc5063.txt
│   │   ├── doc5064.txt
│   │   ├── doc5065.txt
│   │   ├── doc5066.txt
│   │   ├── doc5067.txt
│   │   ├── doc5068.txt
│   │   ├── doc5069.txt
│   │   ├── doc507.txt
│   │   ├── doc5070.txt
│   │   ├── doc5071.txt
│   │   ├── doc5072.txt
│   │   ├── doc5073.txt
│   │   ├── doc5074.txt
│   │   ├── doc5075.txt
│   │   ├── doc5076.txt
│   │   ├── doc5077.txt
│   │   ├── doc5078.txt
│   │   ├── doc5079.txt
│   │   ├── doc508.txt
│   │   ├── doc5080.txt
│   │   ├── doc5081.txt
│   │   ├── doc5082.txt
│   │   ├── doc5083.txt
│   │   ├── doc5084.txt
│   │   ├── doc5085.txt
│   │   ├── doc5086.txt
│   │   ├── doc5087.txt
│   │   ├── doc5088.txt
│   │   ├── doc5089.txt
│   │   ├── doc509.txt
│   │   ├── doc5090.txt
│   │   ├── doc5091.txt
│   │   ├── doc5092.txt
│   │   ├── doc5093.txt
│   │   ├── doc5094.txt
│   │   ├── doc5095.txt
│   │   ├── doc5096.txt
│   │   ├── doc5097.txt
│   │   ├── doc5098.txt
│   │   ├── doc5099.txt
│   │   ├── doc51.txt
│   │   ├── doc510.txt
│   │   ├── doc5100.txt
│   │   ├── doc5101.txt
│   │   ├── doc5102.txt
│   │   ├── doc5103.txt
│   │   ├── doc5104.txt
│   │   ├── doc5105.txt
│   │   ├── doc5106.txt
│   │   ├── doc5107.txt
│   │   ├── doc5108.txt
│   │   ├── doc5109.txt
│   │   ├── doc511.txt
│   │   ├── doc5110.txt
│   │   ├── doc5111.txt
│   │   ├── doc5112.txt
│   │   ├── doc5113.txt
│   │   ├── doc5114.txt
│   │   ├── doc5115.txt
│   │   ├── doc5116.txt
│   │   ├── doc5117.txt
│   │   ├── doc5118.txt
│   │   ├── doc5119.txt
│   │   ├── doc512.txt
│   │   ├── doc5120.txt
│   │   ├── doc5121.txt
│   │   ├── doc5122.txt
│   │   ├── doc5123.txt
│   │   ├── doc5124.txt
│   │   ├── doc5125.txt
│   │   ├── doc5126.txt
│   │   ├── doc5127.txt
│   │   ├── doc5128.txt
│   │   ├── doc5129.txt
│   │   ├── doc513.txt
│   │   ├── doc5130.txt
│   │   ├── doc5131.txt
│   │   ├── doc5132.txt
│   │   ├── doc5133.txt
│   │   ├── doc5134.txt
│   │   ├── doc5135.txt
│   │   ├── doc5136.txt
│   │   ├── doc5137.txt
│   │   ├── doc5138.txt
│   │   ├── doc5139.txt
│   │   ├── doc514.txt
│   │   ├── doc5140.txt
│   │   ├── doc5141.txt
│   │   ├── doc5142.txt
│   │   ├── doc5143.txt
│   │   ├── doc5144.txt
│   │   ├── doc5145.txt
│   │   ├── doc5146.txt
│   │   ├── doc5147.txt
│   │   ├── doc5148.txt
│   │   ├── doc5149.txt
│   │   ├── doc515.txt
│   │   ├── doc5150.txt
│   │   ├── doc5151.txt
│   │   ├── doc5152.txt
│   │   ├── doc5153.txt
│   │   ├── doc5154.txt
│   │   ├── doc5155.txt
│   │   ├── doc5156.txt
│   │   ├── doc5157.txt
│   │   ├── doc5158.txt
│   │   ├── doc5159.txt
│   │   ├── doc516.txt
│   │   ├── doc5160.txt
│   │   ├── doc5161.txt
│   │   ├── doc5162.txt
│   │   ├── doc5163.txt
│   │   ├── doc5164.txt
│   │   ├── doc5165.txt
│   │   ├── doc5166.txt
│   │   ├── doc5167.txt
│   │   ├── doc5168.txt
│   │   ├── doc5169.txt
│   │   ├── doc517.txt
│   │   ├── doc5170.txt
│   │   ├── doc5171.txt
│   │   ├── doc5172.txt
│   │   ├── doc5173.txt
│   │   ├── doc5174.txt
│   │   ├── doc5175.txt
│   │   ├── doc5176.txt
│   │   ├── doc5177.txt
│   │   ├── doc5178.txt
│   │   ├── doc5179.txt
│   │   ├── doc518.txt
│   │   ├── doc5180.txt
│   │   ├── doc5181.txt
│   │   ├── doc5182.txt
│   │   ├── doc5183.txt
│   │   ├── doc5184.txt
│   │   ├── doc5185.txt
│   │   ├── doc5186.txt
│   │   ├── doc5187.txt
│   │   ├── doc5188.txt
│   │   ├── doc5189.txt
│   │   ├── doc519.txt
│   │   ├── doc5190.txt
│   │   ├── doc5191.txt
│   │   ├── doc5192.txt
│   │   ├── doc5193.txt
│   │   ├── doc5194.txt
│   │   ├── doc5195.txt
│   │   ├── doc5196.txt
│   │   ├── doc5197.txt
│   │   ├── doc5198.txt
│   │   ├── doc5199.txt
│   │   ├── doc52.txt
│   │   ├── doc520.txt
│   │   ├── doc5200.txt
│   │   ├── doc5201.txt
│   │   ├── doc5202.txt
│   │   ├── doc5203.txt
│   │   ├── doc5204.txt
│   │   ├── doc5205.txt
│   │   ├── doc5206.txt
│   │   ├── doc5207.txt
│   │   ├── doc5208.txt
│   │   ├── doc5209.txt
│   │   ├── doc521.txt
│   │   ├── doc5210.txt
│   │   ├── doc5211.txt
│   │   ├── doc5212.txt
│   │   ├── doc5213.txt
│   │   ├── doc5214.txt
│   │   ├── doc5215.txt
│   │   ├── doc5216.txt
│   │   ├── doc5217.txt
│   │   ├── doc5218.txt
│   │   ├── doc5219.txt
│   │   ├── doc522.txt
│   │   ├── doc5220.txt
│   │   ├── doc5221.txt
│   │   ├── doc5222.txt
│   │   ├── doc5223.txt
│   │   ├── doc5224.txt
│   │   ├── doc5225.txt
│   │   ├── doc5226.txt
│   │   ├── doc5227.txt
│   │   ├── doc5228.txt
│   │   ├── doc5229.txt
│   │   ├── doc523.txt
│   │   ├── doc5230.txt
│   │   ├── doc5231.txt
│   │   ├── doc5232.txt
│   │   ├── doc5233.txt
│   │   ├── doc5234.txt
│   │   ├── doc5235.txt
│   │   ├── doc5236.txt
│   │   ├── doc5237.txt
│   │   ├── doc5238.txt
│   │   ├── doc5239.txt
│   │   ├── doc524.txt
│   │   ├── doc5240.txt
│   │   ├── doc5241.txt
│   │   ├── doc5242.txt
│   │   ├── doc5243.txt
│   │   ├── doc5244.txt
│   │   ├── doc5245.txt
│   │   ├── doc5246.txt
│   │   ├── doc5247.txt
│   │   ├── doc5248.txt
│   │   ├── doc5249.txt
│   │   ├── doc525.txt
│   │   ├── doc5250.txt
│   │   ├── doc5251.txt
│   │   ├── doc5252.txt
│   │   ├── doc5253.txt
│   │   ├── doc5254.txt
│   │   ├── doc5255.txt
│   │   ├── doc5256.txt
│   │   ├── doc5257.txt
│   │   ├── doc5258.txt
│   │   ├── doc5259.txt
│   │   ├── doc526.txt
│   │   ├── doc5260.txt
│   │   ├── doc5261.txt
│   │   ├── doc5262.txt
│   │   ├── doc5263.txt
│   │   ├── doc5264.txt
│   │   ├── doc5265.txt
│   │   ├── doc5266.txt
│   │   ├── doc5267.txt
│   │   ├── doc5268.txt
│   │   ├── doc5269.txt
│   │   ├── doc527.txt
│   │   ├── doc5270.txt
│   │   ├── doc5271.txt
│   │   ├── doc5272.txt
│   │   ├── doc5273.txt
│   │   ├── doc5274.txt
│   │   ├── doc5275.txt
│   │   ├── doc5276.txt
│   │   ├── doc5277.txt
│   │   ├── doc5278.txt
│   │   ├── doc5279.txt
│   │   ├── doc528.txt
│   │   ├── doc5280.txt
│   │   ├── doc5281.txt
│   │   ├── doc5282.txt
│   │   ├── doc5283.txt
│   │   ├── doc5284.txt
│   │   ├── doc5285.txt
│   │   ├── doc5286.txt
│   │   ├── doc5287.txt
│   │   ├── doc5288.txt
│   │   ├── doc5289.txt
│   │   ├── doc529.txt
│   │   ├── doc5290.txt
│   │   ├── doc5291.txt
│   │   ├── doc5292.txt
│   │   ├── doc5293.txt
│   │   ├── doc5294.txt
│   │   ├── doc5295.txt
│   │   ├── doc5296.txt
│   │   ├── doc5297.txt
│   │   ├── doc5298.txt
│   │   ├── doc5299.txt
│   │   ├── doc53.txt
│   │   ├── doc530.txt
│   │   ├── doc5300.txt
│   │   ├── doc5301.txt
│   │   ├── doc5302.txt
│   │   ├── doc5303.txt
│   │   ├── doc5304.txt
│   │   ├── doc5305.txt
│   │   ├── doc5306.txt
│   │   ├── doc5307.txt
│   │   ├── doc5308.txt
│   │   ├── doc5309.txt
│   │   ├── doc531.txt
│   │   ├── doc5310.txt
│   │   ├── doc5311.txt
│   │   ├── doc5312.txt
│   │   ├── doc5313.txt
│   │   ├── doc5314.txt
│   │   ├── doc5315.txt
│   │   ├── doc5316.txt
│   │   ├── doc5317.txt
│   │   ├── doc5318.txt
│   │   ├── doc5319.txt
│   │   ├── doc532.txt
│   │   ├── doc5320.txt
│   │   ├── doc5321.txt
│   │   ├── doc5322.txt
│   │   ├── doc5323.txt
│   │   ├── doc5324.txt
│   │   ├── doc5325.txt
│   │   ├── doc5326.txt
│   │   ├── doc5327.txt
│   │   ├── doc5328.txt
│   │   ├── doc5329.txt
│   │   ├── doc533.txt
│   │   ├── doc5330.txt
│   │   ├── doc5331.txt
│   │   ├── doc5332.txt
│   │   ├── doc5333.txt
│   │   ├── doc5334.txt
│   │   ├── doc5335.txt
│   │   ├── doc5336.txt
│   │   ├── doc5337.txt
│   │   ├── doc5338.txt
│   │   ├── doc5339.txt
│   │   ├── doc534.txt
│   │   ├── doc5340.txt
│   │   ├── doc5341.txt
│   │   ├── doc5342.txt
│   │   ├── doc5343.txt
│   │   ├── doc5344.txt
│   │   ├── doc5345.txt
│   │   ├── doc5346.txt
│   │   ├── doc5347.txt
│   │   ├── doc5348.txt
│   │   ├── doc5349.txt
│   │   ├── doc535.txt
│   │   ├── doc5350.txt
│   │   ├── doc5351.txt
│   │   ├── doc5352.txt
│   │   ├── doc5353.txt
│   │   ├── doc5354.txt
│   │   ├── doc5355.txt
│   │   ├── doc5356.txt
│   │   ├── doc5357.txt
│   │   ├── doc5358.txt
│   │   ├── doc5359.txt
│   │   ├── doc536.txt
│   │   ├── doc5360.txt
│   │   ├── doc5361.txt
│   │   ├── doc5362.txt
│   │   ├── doc5363.txt
│   │   ├── doc5364.txt
│   │   ├── doc5365.txt
│   │   ├── doc5366.txt
│   │   ├── doc5367.txt
│   │   ├── doc5368.txt
│   │   ├── doc5369.txt
│   │   ├── doc537.txt
│   │   ├── doc5370.txt
│   │   ├── doc5371.txt
│   │   ├── doc5372.txt
│   │   ├── doc5373.txt
│   │   ├── doc5374.txt
│   │   ├── doc5375.txt
│   │   ├── doc5376.txt
│   │   ├── doc5377.txt
│   │   ├── doc5378.txt
│   │   ├── doc5379.txt
│   │   ├── doc538.txt
│   │   ├── doc5380.txt
│   │   ├── doc5381.txt
│   │   ├── doc5382.txt
│   │   ├── doc5383.txt
│   │   ├── doc5384.txt
│   │   ├── doc5385.txt
│   │   ├── doc5386.txt
│   │   ├── doc5387.txt
│   │   ├── doc5388.txt
│   │   ├── doc5389.txt
│   │   ├── doc539.txt
│   │   ├── doc5390.txt
│   │   ├── doc5391.txt
│   │   ├── doc5392.txt
│   │   ├── doc5393.txt
│   │   ├── doc5394.txt
│   │   ├── doc5395.txt
│   │   ├── doc5396.txt
│   │   ├── doc5397.txt
│   │   ├── doc5398.txt
│   │   ├── doc5399.txt
│   │   ├── doc54.txt
│   │   ├── doc540.txt
│   │   ├── doc5400.txt
│   │   ├── doc5401.txt
│   │   ├── doc5402.txt
│   │   ├── doc5403.txt
│   │   ├── doc5404.txt
│   │   ├── doc5405.txt
│   │   ├── doc5406.txt
│   │   ├── doc5407.txt
│   │   ├── doc5408.txt
│   │   ├── doc5409.txt
│   │   ├── doc541.txt
│   │   ├── doc5410.txt
│   │   ├── doc5411.txt
│   │   ├── doc5412.txt
│   │   ├── doc5413.txt
│   │   ├── doc5414.txt
│   │   ├── doc5415.txt
│   │   ├── doc5416.txt
│   │   ├── doc5417.txt
│   │   ├── doc5418.txt
│   │   ├── doc5419.txt
│   │   ├── doc542.txt
│   │   ├── doc5420.txt
│   │   ├── doc5421.txt
│   │   ├── doc5422.txt
│   │   ├── doc5423.txt
│   │   ├── doc5424.txt
│   │   ├── doc5425.txt
│   │   ├── doc5426.txt
│   │   ├── doc5427.txt
│   │   ├── doc5428.txt
│   │   ├── doc5429.txt
│   │   ├── doc543.txt
│   │   ├── doc5430.txt
│   │   ├── doc5431.txt
│   │   ├── doc5432.txt
│   │   ├── doc5433.txt
│   │   ├── doc5434.txt
│   │   ├── doc5435.txt
│   │   ├── doc5436.txt
│   │   ├── doc5437.txt
│   │   ├── doc5438.txt
│   │   ├── doc5439.txt
│   │   ├── doc544.txt
│   │   ├── doc5440.txt
│   │   ├── doc5441.txt
│   │   ├── doc5442.txt
│   │   ├── doc5443.txt
│   │   ├── doc5444.txt
│   │   ├── doc5445.txt
│   │   ├── doc5446.txt
│   │   ├── doc5447.txt
│   │   ├── doc5448.txt
│   │   ├── doc5449.txt
│   │   ├── doc545.txt
│   │   ├── doc5450.txt
│   │   ├── doc5451.txt
│   │   ├── doc5452.txt
│   │   ├── doc5453.txt
│   │   ├── doc5454.txt
│   │   ├── doc5455.txt
│   │   ├── doc5456.txt
│   │   ├── doc5457.txt
│   │   ├── doc5458.txt
│   │   ├── doc5459.txt
│   │   ├── doc546.txt
│   │   ├── doc5460.txt
│   │   ├── doc5461.txt
│   │   ├── doc5462.txt
│   │   ├── doc5463.txt
│   │   ├── doc5464.txt
│   │   ├── doc5465.txt
│   │   ├── doc5466.txt
│   │   ├── doc5467.txt
│   │   ├── doc5468.txt
│   │   ├── doc5469.txt
│   │   ├── doc547.txt
│   │   ├── doc5470.txt
│   │   ├── doc5471.txt
│   │   ├── doc5472.txt
│   │   ├── doc5473.txt
│   │   ├── doc5474.txt
│   │   ├── doc5475.txt
│   │   ├── doc5476.txt
│   │   ├── doc5477.txt
│   │   ├── doc5478.txt
│   │   ├── doc5479.txt
│   │   ├── doc548.txt
│   │   ├── doc5480.txt
│   │   ├── doc5481.txt
│   │   ├── doc5482.txt
│   │   ├── doc5483.txt
│   │   ├── doc5484.txt
│   │   ├── doc5485.txt
│   │   ├── doc5486.txt
│   │   ├── doc5487.txt
│   │   ├── doc5488.txt
│   │   ├── doc5489.txt
│   │   ├── doc549.txt
│   │   ├── doc5490.txt
│   │   ├── doc5491.txt
│   │   ├── doc5492.txt
│   │   ├── doc5493.txt
│   │   ├── doc5494.txt
│   │   ├── doc5495.txt
│   │   ├── doc5496.txt
│   │   ├── doc5497.txt
│   │   ├── doc5498.txt
│   │   ├── doc5499.txt
│   │   ├── doc55.txt
│   │   ├── doc550.txt
│   │   ├── doc5500.txt
│   │   ├── doc5501.txt
│   │   ├── doc5502.txt
│   │   ├── doc5503.txt
│   │   ├── doc5504.txt
│   │   ├── doc5505.txt
│   │   ├── doc5506.txt
│   │   ├── doc5507.txt
│   │   ├── doc5508.txt
│   │   ├── doc5509.txt
│   │   ├── doc551.txt
│   │   ├── doc5510.txt
│   │   ├── doc5511.txt
│   │   ├── doc5512.txt
│   │   ├── doc5513.txt
│   │   ├── doc5514.txt
│   │   ├── doc5515.txt
│   │   ├── doc5516.txt
│   │   ├── doc5517.txt
│   │   ├── doc5518.txt
│   │   ├── doc5519.txt
│   │   ├── doc552.txt
│   │   ├── doc5520.txt
│   │   ├── doc5521.txt
│   │   ├── doc5522.txt
│   │   ├── doc5523.txt
│   │   ├── doc5524.txt
│   │   ├── doc5525.txt
│   │   ├── doc5526.txt
│   │   ├── doc5527.txt
│   │   ├── doc5528.txt
│   │   ├── doc5529.txt
│   │   ├── doc553.txt
│   │   ├── doc5530.txt
│   │   ├── doc5531.txt
│   │   ├── doc5532.txt
│   │   ├── doc5533.txt
│   │   ├── doc5534.txt
│   │   ├── doc5535.txt
│   │   ├── doc5536.txt
│   │   ├── doc5537.txt
│   │   ├── doc5538.txt
│   │   ├── doc5539.txt
│   │   ├── doc554.txt
│   │   ├── doc5540.txt
│   │   ├── doc5541.txt
│   │   ├── doc5542.txt
│   │   ├── doc5543.txt
│   │   ├── doc5544.txt
│   │   ├── doc5545.txt
│   │   ├── doc5546.txt
│   │   ├── doc5547.txt
│   │   ├── doc5548.txt
│   │   ├── doc5549.txt
│   │   ├── doc555.txt
│   │   ├── doc5550.txt
│   │   ├── doc5551.txt
│   │   ├── doc5552.txt
│   │   ├── doc5553.txt
│   │   ├── doc5554.txt
│   │   ├── doc5555.txt
│   │   ├── doc5556.txt
│   │   ├── doc5557.txt
│   │   ├── doc5558.txt
│   │   ├── doc5559.txt
│   │   ├── doc556.txt
│   │   ├── doc5560.txt
│   │   ├── doc5561.txt
│   │   ├── doc5562.txt
│   │   ├── doc5563.txt
│   │   ├── doc5564.txt
│   │   ├── doc5565.txt
│   │   ├── doc5566.txt
│   │   ├── doc5567.txt
│   │   ├── doc5568.txt
│   │   ├── doc5569.txt
│   │   ├── doc557.txt
│   │   ├── doc5570.txt
│   │   ├── doc5571.txt
│   │   ├── doc5572.txt
│   │   ├── doc5573.txt
│   │   ├── doc5574.txt
│   │   ├── doc5575.txt
│   │   ├── doc5576.txt
│   │   ├── doc5577.txt
│   │   ├── doc5578.txt
│   │   ├── doc5579.txt
│   │   ├── doc558.txt
│   │   ├── doc5580.txt
│   │   ├── doc5581.txt
│   │   ├── doc5582.txt
│   │   ├── doc5583.txt
│   │   ├── doc5584.txt
│   │   ├── doc5585.txt
│   │   ├── doc5586.txt
│   │   ├── doc5587.txt
│   │   ├── doc5588.txt
│   │   ├── doc5589.txt
│   │   ├── doc559.txt
│   │   ├── doc5590.txt
│   │   ├── doc5591.txt
│   │   ├── doc5592.txt
│   │   ├── doc5593.txt
│   │   ├── doc5594.txt
│   │   ├── doc5595.txt
│   │   ├── doc5596.txt
│   │   ├── doc5597.txt
│   │   ├── doc5598.txt
│   │   ├── doc5599.txt
│   │   ├── doc56.txt
│   │   ├── doc560.txt
│   │   ├── doc5600.txt
│   │   ├── doc5601.txt
│   │   ├── doc5602.txt
│   │   ├── doc5603.txt
│   │   ├── doc5604.txt
│   │   ├── doc5605.txt
│   │   ├── doc5606.txt
│   │   ├── doc5607.txt
│   │   ├── doc5608.txt
│   │   ├── doc5609.txt
│   │   ├── doc561.txt
│   │   ├── doc5610.txt
│   │   ├── doc5611.txt
│   │   ├── doc5612.txt
│   │   ├── doc5613.txt
│   │   ├── doc5614.txt
│   │   ├── doc5615.txt
│   │   ├── doc5616.txt
│   │   ├── doc5617.txt
│   │   ├── doc5618.txt
│   │   ├── doc5619.txt
│   │   ├── doc562.txt
│   │   ├── doc5620.txt
│   │   ├── doc5621.txt
│   │   ├── doc5622.txt
│   │   ├── doc5623.txt
│   │   ├── doc5624.txt
│   │   ├── doc5625.txt
│   │   ├── doc5626.txt
│   │   ├── doc5627.txt
│   │   ├── doc5628.txt
│   │   ├── doc5629.txt
│   │   ├── doc563.txt
│   │   ├── doc5630.txt
│   │   ├── doc5631.txt
│   │   ├── doc5632.txt
│   │   ├── doc5633.txt
│   │   ├── doc5634.txt
│   │   ├── doc5635.txt
│   │   ├── doc5636.txt
│   │   ├── doc5637.txt
│   │   ├── doc5638.txt
│   │   ├── doc5639.txt
│   │   ├── doc564.txt
│   │   ├── doc5640.txt
│   │   ├── doc5641.txt
│   │   ├── doc5642.txt
│   │   ├── doc5643.txt
│   │   ├── doc5644.txt
│   │   ├── doc5645.txt
│   │   ├── doc5646.txt
│   │   ├── doc5647.txt
│   │   ├── doc5648.txt
│   │   ├── doc5649.txt
│   │   ├── doc565.txt
│   │   ├── doc5650.txt
│   │   ├── doc5651.txt
│   │   ├── doc5652.txt
│   │   ├── doc5653.txt
│   │   ├── doc5654.txt
│   │   ├── doc5655.txt
│   │   ├── doc5656.txt
│   │   ├── doc5657.txt
│   │   ├── doc5658.txt
│   │   ├── doc5659.txt
│   │   ├── doc566.txt
│   │   ├── doc5660.txt
│   │   ├── doc5661.txt
│   │   ├── doc5662.txt
│   │   ├── doc5663.txt
│   │   ├── doc5664.txt
│   │   ├── doc5665.txt
│   │   ├── doc5666.txt
│   │   ├── doc5667.txt
│   │   ├── doc5668.txt
│   │   ├── doc5669.txt
│   │   ├── doc567.txt
│   │   ├── doc5670.txt
│   │   ├── doc5671.txt
│   │   ├── doc5672.txt
│   │   ├── doc5673.txt
│   │   ├── doc5674.txt
│   │   ├── doc5675.txt
│   │   ├── doc5676.txt
│   │   ├── doc5677.txt
│   │   ├── doc5678.txt
│   │   ├── doc5679.txt
│   │   ├── doc568.txt
│   │   ├── doc5680.txt
│   │   ├── doc5681.txt
│   │   ├── doc5682.txt
│   │   ├── doc5683.txt
│   │   ├── doc5684.txt
│   │   ├── doc5685.txt
│   │   ├── doc5686.txt
│   │   ├── doc5687.txt
│   │   ├── doc5688.txt
│   │   ├── doc5689.txt
│   │   ├── doc569.txt
│   │   ├── doc5690.txt
│   │   ├── doc5691.txt
│   │   ├── doc5692.txt
│   │   ├── doc5693.txt
│   │   ├── doc5694.txt
│   │   ├── doc5695.txt
│   │   ├── doc5696.txt
│   │   ├── doc5697.txt
│   │   ├── doc5698.txt
│   │   ├── doc5699.txt
│   │   ├── doc57.txt
│   │   ├── doc570.txt
│   │   ├── doc5700.txt
│   │   ├── doc5701.txt
│   │   ├── doc5702.txt
│   │   ├── doc5703.txt
│   │   ├── doc5704.txt
│   │   ├── doc5705.txt
│   │   ├── doc5706.txt
│   │   ├── doc5707.txt
│   │   ├── doc5708.txt
│   │   ├── doc5709.txt
│   │   ├── doc571.txt
│   │   ├── doc5710.txt
│   │   ├── doc5711.txt
│   │   ├── doc5712.txt
│   │   ├── doc5713.txt
│   │   ├── doc5714.txt
│   │   ├── doc5715.txt
│   │   ├── doc5716.txt
│   │   ├── doc5717.txt
│   │   ├── doc5718.txt
│   │   ├── doc5719.txt
│   │   ├── doc572.txt
│   │   ├── doc5720.txt
│   │   ├── doc5721.txt
│   │   ├── doc5722.txt
│   │   ├── doc5723.txt
│   │   ├── doc5724.txt
│   │   ├── doc5725.txt
│   │   ├── doc5726.txt
│   │   ├── doc5727.txt
│   │   ├── doc5728.txt
│   │   ├── doc5729.txt
│   │   ├── doc573.txt
│   │   ├── doc5730.txt
│   │   ├── doc5731.txt
│   │   ├── doc5732.txt
│   │   ├── doc5733.txt
│   │   ├── doc5734.txt
│   │   ├── doc5735.txt
│   │   ├── doc5736.txt
│   │   ├── doc5737.txt
│   │   ├── doc5738.txt
│   │   ├── doc5739.txt
│   │   ├── doc574.txt
│   │   ├── doc5740.txt
│   │   ├── doc5741.txt
│   │   ├── doc5742.txt
│   │   ├── doc5743.txt
│   │   ├── doc5744.txt
│   │   ├── doc5745.txt
│   │   ├── doc5746.txt
│   │   ├── doc5747.txt
│   │   ├── doc5748.txt
│   │   ├── doc5749.txt
│   │   ├── doc575.txt
│   │   ├── doc5750.txt
│   │   ├── doc5751.txt
│   │   ├── doc5752.txt
│   │   ├── doc5753.txt
│   │   ├── doc5754.txt
│   │   ├── doc5755.txt
│   │   ├── doc5756.txt
│   │   ├── doc5757.txt
│   │   ├── doc5758.txt
│   │   ├── doc5759.txt
│   │   ├── doc576.txt
│   │   ├── doc5760.txt
│   │   ├── doc5761.txt
│   │   ├── doc5762.txt
│   │   ├── doc5763.txt
│   │   ├── doc5764.txt
│   │   ├── doc5765.txt
│   │   ├── doc5766.txt
│   │   ├── doc5767.txt
│   │   ├── doc5768.txt
│   │   ├── doc5769.txt
│   │   ├── doc577.txt
│   │   ├── doc5770.txt
│   │   ├── doc5771.txt
│   │   ├── doc5772.txt
│   │   ├── doc5773.txt
│   │   ├── doc5774.txt
│   │   ├── doc5775.txt
│   │   ├── doc5776.txt
│   │   ├── doc5777.txt
│   │   ├── doc5778.txt
│   │   ├── doc5779.txt
│   │   ├── doc578.txt
│   │   ├── doc5780.txt
│   │   ├── doc5781.txt
│   │   ├── doc5782.txt
│   │   ├── doc5783.txt
│   │   ├── doc5784.txt
│   │   ├── doc5785.txt
│   │   ├── doc5786.txt
│   │   ├── doc5787.txt
│   │   ├── doc5788.txt
│   │   ├── doc5789.txt
│   │   ├── doc579.txt
│   │   ├── doc5790.txt
│   │   ├── doc5791.txt
│   │   ├── doc5792.txt
│   │   ├── doc5793.txt
│   │   ├── doc5794.txt
│   │   ├── doc5795.txt
│   │   ├── doc5796.txt
│   │   ├── doc5797.txt
│   │   ├── doc5798.txt
│   │   ├── doc5799.txt
│   │   ├── doc58.txt
│   │   ├── doc580.txt
│   │   ├── doc5800.txt
│   │   ├── doc5801.txt
│   │   ├── doc5802.txt
│   │   ├── doc5803.txt
│   │   ├── doc5804.txt
│   │   ├── doc5805.txt
│   │   ├── doc5806.txt
│   │   ├── doc5807.txt
│   │   ├── doc5808.txt
│   │   ├── doc5809.txt
│   │   ├── doc581.txt
│   │   ├── doc5810.txt
│   │   ├── doc5811.txt
│   │   ├── doc5812.txt
│   │   ├── doc5813.txt
│   │   ├── doc5814.txt
│   │   ├── doc5815.txt
│   │   ├── doc5816.txt
│   │   ├── doc5817.txt
│   │   ├── doc5818.txt
│   │   ├── doc5819.txt
│   │   ├── doc582.txt
│   │   ├── doc5820.txt
│   │   ├── doc5821.txt
│   │   ├── doc5822.txt
│   │   ├── doc5823.txt
│   │   ├── doc5824.txt
│   │   ├── doc5825.txt
│   │   ├── doc5826.txt
│   │   ├── doc5827.txt
│   │   ├── doc5828.txt
│   │   ├── doc5829.txt
│   │   ├── doc583.txt
│   │   ├── doc5830.txt
│   │   ├── doc5831.txt
│   │   ├── doc5832.txt
│   │   ├── doc5833.txt
│   │   ├── doc5834.txt
│   │   ├── doc5835.txt
│   │   ├── doc5836.txt
│   │   ├── doc5837.txt
│   │   ├── doc5838.txt
│   │   ├── doc5839.txt
│   │   ├── doc584.txt
│   │   ├── doc5840.txt
│   │   ├── doc5841.txt
│   │   ├── doc5842.txt
│   │   ├── doc5843.txt
│   │   ├── doc5844.txt
│   │   ├── doc5845.txt
│   │   ├── doc5846.txt
│   │   ├── doc5847.txt
│   │   ├── doc5848.txt
│   │   ├── doc5849.txt
│   │   ├── doc585.txt
│   │   ├── doc5850.txt
│   │   ├── doc5851.txt
│   │   ├── doc5852.txt
│   │   ├── doc5853.txt
│   │   ├── doc5854.txt
│   │   ├── doc5855.txt
│   │   ├── doc5856.txt
│   │   ├── doc5857.txt
│   │   ├── doc5858.txt
│   │   ├── doc5859.txt
│   │   ├── doc586.txt
│   │   ├── doc5860.txt
│   │   ├── doc5861.txt
│   │   ├── doc5862.txt
│   │   ├── doc5863.txt
│   │   ├── doc5864.txt
│   │   ├── doc5865.txt
│   │   ├── doc5866.txt
│   │   ├── doc5867.txt
│   │   ├── doc5868.txt
│   │   ├── doc5869.txt
│   │   ├── doc587.txt
│   │   ├── doc5870.txt
│   │   ├── doc5871.txt
│   │   ├── doc5872.txt
│   │   ├── doc5873.txt
│   │   ├── doc5874.txt
│   │   ├── doc5875.txt
│   │   ├── doc5876.txt
│   │   ├── doc5877.txt
│   │   ├── doc5878.txt
│   │   ├── doc5879.txt
│   │   ├── doc588.txt
│   │   ├── doc5880.txt
│   │   ├── doc5881.txt
│   │   ├── doc5882.txt
│   │   ├── doc5883.txt
│   │   ├── doc5884.txt
│   │   ├── doc5885.txt
│   │   ├── doc5886.txt
│   │   ├── doc5887.txt
│   │   ├── doc5888.txt
│   │   ├── doc5889.txt
│   │   ├── doc589.txt
│   │   ├── doc5890.txt
│   │   ├── doc5891.txt
│   │   ├── doc5892.txt
│   │   ├── doc5893.txt
│   │   ├── doc5894.txt
│   │   ├── doc5895.txt
│   │   ├── doc5896.txt
│   │   ├── doc5897.txt
│   │   ├── doc5898.txt
│   │   ├── doc5899.txt
│   │   ├── doc59.txt
│   │   ├── doc590.txt
│   │   ├── doc5900.txt
│   │   ├── doc5901.txt
│   │   ├── doc5902.txt
│   │   ├── doc5903.txt
│   │   ├── doc5904.txt
│   │   ├── doc5905.txt
│   │   ├── doc5906.txt
│   │   ├── doc5907.txt
│   │   ├── doc5908.txt
│   │   ├── doc5909.txt
│   │   ├── doc591.txt
│   │   ├── doc5910.txt
│   │   ├── doc5911.txt
│   │   ├── doc5912.txt
│   │   ├── doc5913.txt
│   │   ├── doc5914.txt
│   │   ├── doc5915.txt
│   │   ├── doc5916.txt
│   │   ├── doc5917.txt
│   │   ├── doc5918.txt
│   │   ├── doc5919.txt
│   │   ├── doc592.txt
│   │   ├── doc5920.txt
│   │   ├── doc5921.txt
│   │   ├── doc5922.txt
│   │   ├── doc5923.txt
│   │   ├── doc5924.txt
│   │   ├── doc5925.txt
│   │   ├── doc5926.txt
│   │   ├── doc5927.txt
│   │   ├── doc5928.txt
│   │   ├── doc5929.txt
│   │   ├── doc593.txt
│   │   ├── doc5930.txt
│   │   ├── doc5931.txt
│   │   ├── doc5932.txt
│   │   ├── doc5933.txt
│   │   ├── doc5934.txt
│   │   ├── doc5935.txt
│   │   ├── doc5936.txt
│   │   ├── doc5937.txt
│   │   ├── doc5938.txt
│   │   ├── doc5939.txt
│   │   ├── doc594.txt
│   │   ├── doc5940.txt
│   │   ├── doc5941.txt
│   │   ├── doc5942.txt
│   │   ├── doc5943.txt
│   │   ├── doc5944.txt
│   │   ├── doc5945.txt
│   │   ├── doc5946.txt
│   │   ├── doc5947.txt
│   │   ├── doc5948.txt
│   │   ├── doc5949.txt
│   │   ├── doc595.txt
│   │   ├── doc5950.txt
│   │   ├── doc5951.txt
│   │   ├── doc5952.txt
│   │   ├── doc5953.txt
│   │   ├── doc5954.txt
│   │   ├── doc5955.txt
│   │   ├── doc5956.txt
│   │   ├── doc5957.txt
│   │   ├── doc5958.txt
│   │   ├── doc5959.txt
│   │   ├── doc596.txt
│   │   ├── doc5960.txt
│   │   ├── doc5961.txt
│   │   ├── doc5962.txt
│   │   ├── doc5963.txt
│   │   ├── doc5964.txt
│   │   ├── doc5965.txt
│   │   ├── doc5966.txt
│   │   ├── doc5967.txt
│   │   ├── doc5968.txt
│   │   ├── doc5969.txt
│   │   ├── doc597.txt
│   │   ├── doc5970.txt
│   │   ├── doc5971.txt
│   │   ├── doc5972.txt
│   │   ├── doc5973.txt
│   │   ├── doc5974.txt
│   │   ├── doc5975.txt
│   │   ├── doc5976.txt
│   │   ├── doc5977.txt
│   │   ├── doc5978.txt
│   │   ├── doc5979.txt
│   │   ├── doc598.txt
│   │   ├── doc5980.txt
│   │   ├── doc5981.txt
│   │   ├── doc5982.txt
│   │   ├── doc5983.txt
│   │   ├── doc5984.txt
│   │   ├── doc5985.txt
│   │   ├── doc5986.txt
│   │   ├── doc5987.txt
│   │   ├── doc5988.txt
│   │   ├── doc5989.txt
│   │   ├── doc599.txt
│   │   ├── doc5990.txt
│   │   ├── doc5991.txt
│   │   ├── doc5992.txt
│   │   ├── doc5993.txt
│   │   ├── doc5994.txt
│   │   ├── doc5995.txt
│   │   ├── doc5996.txt
│   │   ├── doc5997.txt
│   │   ├── doc5998.txt
│   │   ├── doc5999.txt
│   │   ├── doc6.txt
│   │   ├── doc60.txt
│   │   ├── doc600.txt
│   │   ├── doc6000.txt
│   │   ├── doc6001.txt
│   │   ├── doc6002.txt
│   │   ├── doc6003.txt
│   │   ├── doc6004.txt
│   │   ├── doc6005.txt
│   │   ├── doc6006.txt
│   │   ├── doc6007.txt
│   │   ├── doc6008.txt
│   │   ├── doc6009.txt
│   │   ├── doc601.txt
│   │   ├── doc6010.txt
│   │   ├── doc6011.txt
│   │   ├── doc6012.txt
│   │   ├── doc6013.txt
│   │   ├── doc6014.txt
│   │   ├── doc6015.txt
│   │   ├── doc6016.txt
│   │   ├── doc6017.txt
│   │   ├── doc6018.txt
│   │   ├── doc6019.txt
│   │   ├── doc602.txt
│   │   ├── doc6020.txt
│   │   ├── doc6021.txt
│   │   ├── doc6022.txt
│   │   ├── doc6023.txt
│   │   ├── doc6024.txt
│   │   ├── doc6025.txt
│   │   ├── doc6026.txt
│   │   ├── doc6027.txt
│   │   ├── doc6028.txt
│   │   ├── doc6029.txt
│   │   ├── doc603.txt
│   │   ├── doc6030.txt
│   │   ├── doc6031.txt
│   │   ├── doc6032.txt
│   │   ├── doc6033.txt
│   │   ├── doc6034.txt
│   │   ├── doc6035.txt
│   │   ├── doc6036.txt
│   │   ├── doc6037.txt
│   │   ├── doc6038.txt
│   │   ├── doc6039.txt
│   │   ├── doc604.txt
│   │   ├── doc6040.txt
│   │   ├── doc6041.txt
│   │   ├── doc6042.txt
│   │   ├── doc6043.txt
│   │   ├── doc6044.txt
│   │   ├── doc6045.txt
│   │   ├── doc6046.txt
│   │   ├── doc6047.txt
│   │   ├── doc6048.txt
│   │   ├── doc6049.txt
│   │   ├── doc605.txt
│   │   ├── doc6050.txt
│   │   ├── doc6051.txt
│   │   ├── doc6052.txt
│   │   ├── doc6053.txt
│   │   ├── doc6054.txt
│   │   ├── doc6055.txt
│   │   ├── doc6056.txt
│   │   ├── doc6057.txt
│   │   ├── doc6058.txt
│   │   ├── doc6059.txt
│   │   ├── doc606.txt
│   │   ├── doc6060.txt
│   │   ├── doc6061.txt
│   │   ├── doc6062.txt
│   │   ├── doc6063.txt
│   │   ├── doc6064.txt
│   │   ├── doc6065.txt
│   │   ├── doc6066.txt
│   │   ├── doc6067.txt
│   │   ├── doc6068.txt
│   │   ├── doc6069.txt
│   │   ├── doc607.txt
│   │   ├── doc6070.txt
│   │   ├── doc6071.txt
│   │   ├── doc6072.txt
│   │   ├── doc6073.txt
│   │   ├── doc6074.txt
│   │   ├── doc6075.txt
│   │   ├── doc6076.txt
│   │   ├── doc6077.txt
│   │   ├── doc6078.txt
│   │   ├── doc6079.txt
│   │   ├── doc608.txt
│   │   ├── doc6080.txt
│   │   ├── doc6081.txt
│   │   ├── doc6082.txt
│   │   ├── doc6083.txt
│   │   ├── doc6084.txt
│   │   ├── doc6085.txt
│   │   ├── doc6086.txt
│   │   ├── doc6087.txt
│   │   ├── doc6088.txt
│   │   ├── doc6089.txt
│   │   ├── doc609.txt
│   │   ├── doc6090.txt
│   │   ├── doc6091.txt
│   │   ├── doc6092.txt
│   │   ├── doc6093.txt
│   │   ├── doc6094.txt
│   │   ├── doc6095.txt
│   │   ├── doc6096.txt
│   │   ├── doc6097.txt
│   │   ├── doc6098.txt
│   │   ├── doc6099.txt
│   │   ├── doc61.txt
│   │   ├── doc610.txt
│   │   ├── doc6100.txt
│   │   ├── doc6101.txt
│   │   ├── doc6102.txt
│   │   ├── doc6103.txt
│   │   ├── doc6104.txt
│   │   ├── doc6105.txt
│   │   ├── doc6106.txt
│   │   ├── doc6107.txt
│   │   ├── doc6108.txt
│   │   ├── doc6109.txt
│   │   ├── doc611.txt
│   │   ├── doc6110.txt
│   │   ├── doc6111.txt
│   │   ├── doc6112.txt
│   │   ├── doc6113.txt
│   │   ├── doc6114.txt
│   │   ├── doc6115.txt
│   │   ├── doc6116.txt
│   │   ├── doc6117.txt
│   │   ├── doc6118.txt
│   │   ├── doc6119.txt
│   │   ├── doc612.txt
│   │   ├── doc6120.txt
│   │   ├── doc6121.txt
│   │   ├── doc6122.txt
│   │   ├── doc6123.txt
│   │   ├── doc6124.txt
│   │   ├── doc6125.txt
│   │   ├── doc6126.txt
│   │   ├── doc6127.txt
│   │   ├── doc6128.txt
│   │   ├── doc6129.txt
│   │   ├── doc613.txt
│   │   ├── doc6130.txt
│   │   ├── doc6131.txt
│   │   ├── doc6132.txt
│   │   ├── doc6133.txt
│   │   ├── doc6134.txt
│   │   ├── doc6135.txt
│   │   ├── doc6136.txt
│   │   ├── doc6137.txt
│   │   ├── doc6138.txt
│   │   ├── doc6139.txt
│   │   ├── doc614.txt
│   │   ├── doc6140.txt
│   │   ├── doc6141.txt
│   │   ├── doc6142.txt
│   │   ├── doc6143.txt
│   │   ├── doc6144.txt
│   │   ├── doc6145.txt
│   │   ├── doc6146.txt
│   │   ├── doc6147.txt
│   │   ├── doc6148.txt
│   │   ├── doc6149.txt
│   │   ├── doc615.txt
│   │   ├── doc6150.txt
│   │   ├── doc6151.txt
│   │   ├── doc6152.txt
│   │   ├── doc6153.txt
│   │   ├── doc6154.txt
│   │   ├── doc6155.txt
│   │   ├── doc6156.txt
│   │   ├── doc6157.txt
│   │   ├── doc6158.txt
│   │   ├── doc6159.txt
│   │   ├── doc616.txt
│   │   ├── doc6160.txt
│   │   ├── doc6161.txt
│   │   ├── doc6162.txt
│   │   ├── doc6163.txt
│   │   ├── doc6164.txt
│   │   ├── doc6165.txt
│   │   ├── doc6166.txt
│   │   ├── doc6167.txt
│   │   ├── doc6168.txt
│   │   ├── doc6169.txt
│   │   ├── doc617.txt
│   │   ├── doc6170.txt
│   │   ├── doc6171.txt
│   │   ├── doc6172.txt
│   │   ├── doc6173.txt
│   │   ├── doc6174.txt
│   │   ├── doc6175.txt
│   │   ├── doc6176.txt
│   │   ├── doc6177.txt
│   │   ├── doc6178.txt
│   │   ├── doc6179.txt
│   │   ├── doc618.txt
│   │   ├── doc6180.txt
│   │   ├── doc6181.txt
│   │   ├── doc6182.txt
│   │   ├── doc6183.txt
│   │   ├── doc6184.txt
│   │   ├── doc6185.txt
│   │   ├── doc6186.txt
│   │   ├── doc6187.txt
│   │   ├── doc6188.txt
│   │   ├── doc6189.txt
│   │   ├── doc619.txt
│   │   ├── doc6190.txt
│   │   ├── doc6191.txt
│   │   ├── doc6192.txt
│   │   ├── doc6193.txt
│   │   ├── doc6194.txt
│   │   ├── doc6195.txt
│   │   ├── doc6196.txt
│   │   ├── doc6197.txt
│   │   ├── doc6198.txt
│   │   ├── doc6199.txt
│   │   ├── doc62.txt
│   │   ├── doc620.txt
│   │   ├── doc6200.txt
│   │   ├── doc6201.txt
│   │   ├── doc6202.txt
│   │   ├── doc6203.txt
│   │   ├── doc6204.txt
│   │   ├── doc6205.txt
│   │   ├── doc6206.txt
│   │   ├── doc6207.txt
│   │   ├── doc6208.txt
│   │   ├── doc6209.txt
│   │   ├── doc621.txt
│   │   ├── doc6210.txt
│   │   ├── doc6211.txt
│   │   ├── doc6212.txt
│   │   ├── doc6213.txt
│   │   ├── doc6214.txt
│   │   ├── doc6215.txt
│   │   ├── doc6216.txt
│   │   ├── doc6217.txt
│   │   ├── doc6218.txt
│   │   ├── doc6219.txt
│   │   ├── doc622.txt
│   │   ├── doc6220.txt
│   │   ├── doc6221.txt
│   │   ├── doc6222.txt
│   │   ├── doc6223.txt
│   │   ├── doc6224.txt
│   │   ├── doc6225.txt
│   │   ├── doc6226.txt
│   │   ├── doc6227.txt
│   │   ├── doc6228.txt
│   │   ├── doc6229.txt
│   │   ├── doc623.txt
│   │   ├── doc6230.txt
│   │   ├── doc6231.txt
│   │   ├── doc6232.txt
│   │   ├── doc6233.txt
│   │   ├── doc6234.txt
│   │   ├── doc6235.txt
│   │   ├── doc6236.txt
│   │   ├── doc6237.txt
│   │   ├── doc6238.txt
│   │   ├── doc6239.txt
│   │   ├── doc624.txt
│   │   ├── doc6240.txt
│   │   ├── doc6241.txt
│   │   ├── doc6242.txt
│   │   ├── doc6243.txt
│   │   ├── doc6244.txt
│   │   ├── doc6245.txt
│   │   ├── doc6246.txt
│   │   ├── doc6247.txt
│   │   ├── doc6248.txt
│   │   ├── doc6249.txt
│   │   ├── doc625.txt
│   │   ├── doc6250.txt
│   │   ├── doc6251.txt
│   │   ├── doc6252.txt
│   │   ├── doc6253.txt
│   │   ├── doc6254.txt
│   │   ├── doc6255.txt
│   │   ├── doc6256.txt
│   │   ├── doc6257.txt
│   │   ├── doc6258.txt
│   │   ├── doc6259.txt
│   │   ├── doc626.txt
│   │   ├── doc6260.txt
│   │   ├── doc6261.txt
│   │   ├── doc6262.txt
│   │   ├── doc6263.txt
│   │   ├── doc6264.txt
│   │   ├── doc6265.txt
│   │   ├── doc6266.txt
│   │   ├── doc6267.txt
│   │   ├── doc6268.txt
│   │   ├── doc6269.txt
│   │   ├── doc627.txt
│   │   ├── doc6270.txt
│   │   ├── doc6271.txt
│   │   ├── doc6272.txt
│   │   ├── doc6273.txt
│   │   ├── doc6274.txt
│   │   ├── doc6275.txt
│   │   ├── doc6276.txt
│   │   ├── doc6277.txt
│   │   ├── doc6278.txt
│   │   ├── doc6279.txt
│   │   ├── doc628.txt
│   │   ├── doc6280.txt
│   │   ├── doc6281.txt
│   │   ├── doc6282.txt
│   │   ├── doc6283.txt
│   │   ├── doc6284.txt
│   │   ├── doc6285.txt
│   │   ├── doc6286.txt
│   │   ├── doc6287.txt
│   │   ├── doc6288.txt
│   │   ├── doc6289.txt
│   │   ├── doc629.txt
│   │   ├── doc6290.txt
│   │   ├── doc6291.txt
│   │   ├── doc6292.txt
│   │   ├── doc6293.txt
│   │   ├── doc6294.txt
│   │   ├── doc6295.txt
│   │   ├── doc6296.txt
│   │   ├── doc6297.txt
│   │   ├── doc6298.txt
│   │   ├── doc6299.txt
│   │   ├── doc63.txt
│   │   ├── doc630.txt
│   │   ├── doc6300.txt
│   │   ├── doc6301.txt
│   │   ├── doc6302.txt
│   │   ├── doc6303.txt
│   │   ├── doc6304.txt
│   │   ├── doc6305.txt
│   │   ├── doc6306.txt
│   │   ├── doc6307.txt
│   │   ├── doc6308.txt
│   │   ├── doc6309.txt
│   │   ├── doc631.txt
│   │   ├── doc6310.txt
│   │   ├── doc6311.txt
│   │   ├── doc6312.txt
│   │   ├── doc6313.txt
│   │   ├── doc6314.txt
│   │   ├── doc6315.txt
│   │   ├── doc6316.txt
│   │   ├── doc6317.txt
│   │   ├── doc6318.txt
│   │   ├── doc6319.txt
│   │   ├── doc632.txt
│   │   ├── doc6320.txt
│   │   ├── doc6321.txt
│   │   ├── doc6322.txt
│   │   ├── doc6323.txt
│   │   ├── doc6324.txt
│   │   ├── doc6325.txt
│   │   ├── doc6326.txt
│   │   ├── doc6327.txt
│   │   ├── doc6328.txt
│   │   ├── doc6329.txt
│   │   ├── doc633.txt
│   │   ├── doc6330.txt
│   │   ├── doc6331.txt
│   │   ├── doc6332.txt
│   │   ├── doc6333.txt
│   │   ├── doc6334.txt
│   │   ├── doc6335.txt
│   │   ├── doc6336.txt
│   │   ├── doc6337.txt
│   │   ├── doc6338.txt
│   │   ├── doc6339.txt
│   │   ├── doc634.txt
│   │   ├── doc6340.txt
│   │   ├── doc6341.txt
│   │   ├── doc6342.txt
│   │   ├── doc6343.txt
│   │   ├── doc6344.txt
│   │   ├── doc6345.txt
│   │   ├── doc6346.txt
│   │   ├── doc6347.txt
│   │   ├── doc6348.txt
│   │   ├── doc6349.txt
│   │   ├── doc635.txt
│   │   ├── doc6350.txt
│   │   ├── doc6351.txt
│   │   ├── doc6352.txt
│   │   ├── doc6353.txt
│   │   ├── doc6354.txt
│   │   ├── doc6355.txt
│   │   ├── doc6356.txt
│   │   ├── doc6357.txt
│   │   ├── doc6358.txt
│   │   ├── doc6359.txt
│   │   ├── doc636.txt
│   │   ├── doc6360.txt
│   │   ├── doc6361.txt
│   │   ├── doc6362.txt
│   │   ├── doc6363.txt
│   │   ├── doc6364.txt
│   │   ├── doc6365.txt
│   │   ├── doc6366.txt
│   │   ├── doc6367.txt
│   │   ├── doc6368.txt
│   │   ├── doc6369.txt
│   │   ├── doc637.txt
│   │   ├── doc6370.txt
│   │   ├── doc6371.txt
│   │   ├── doc6372.txt
│   │   ├── doc6373.txt
│   │   ├── doc6374.txt
│   │   ├── doc6375.txt
│   │   ├── doc6376.txt
│   │   ├── doc6377.txt
│   │   ├── doc6378.txt
│   │   ├── doc6379.txt
│   │   ├── doc638.txt
│   │   ├── doc6380.txt
│   │   ├── doc6381.txt
│   │   ├── doc6382.txt
│   │   ├── doc6383.txt
│   │   ├── doc6384.txt
│   │   ├── doc6385.txt
│   │   ├── doc6386.txt
│   │   ├── doc6387.txt
│   │   ├── doc6388.txt
│   │   ├── doc6389.txt
│   │   ├── doc639.txt
│   │   ├── doc6390.txt
│   │   ├── doc6391.txt
│   │   ├── doc6392.txt
│   │   ├── doc6393.txt
│   │   ├── doc6394.txt
│   │   ├── doc6395.txt
│   │   ├── doc6396.txt
│   │   ├── doc6397.txt
│   │   ├── doc6398.txt
│   │   ├── doc6399.txt
│   │   ├── doc64.txt
│   │   ├── doc640.txt
│   │   ├── doc6400.txt
│   │   ├── doc6401.txt
│   │   ├── doc6402.txt
│   │   ├── doc6403.txt
│   │   ├── doc6404.txt
│   │   ├── doc6405.txt
│   │   ├── doc6406.txt
│   │   ├── doc6407.txt
│   │   ├── doc6408.txt
│   │   ├── doc6409.txt
│   │   ├── doc641.txt
│   │   ├── doc6410.txt
│   │   ├── doc6411.txt
│   │   ├── doc6412.txt
│   │   ├── doc6413.txt
│   │   ├── doc6414.txt
│   │   ├── doc6415.txt
│   │   ├── doc6416.txt
│   │   ├── doc6417.txt
│   │   ├── doc6418.txt
│   │   ├── doc6419.txt
│   │   ├── doc642.txt
│   │   ├── doc6420.txt
│   │   ├── doc6421.txt
│   │   ├── doc6422.txt
│   │   ├── doc6423.txt
│   │   ├── doc6424.txt
│   │   ├── doc6425.txt
│   │   ├── doc6426.txt
│   │   ├── doc6427.txt
│   │   ├── doc6428.txt
│   │   ├── doc6429.txt
│   │   ├── doc643.txt
│   │   ├── doc6430.txt
│   │   ├── doc6431.txt
│   │   ├── doc6432.txt
│   │   ├── doc6433.txt
│   │   ├── doc6434.txt
│   │   ├── doc6435.txt
│   │   ├── doc6436.txt
│   │   ├── doc6437.txt
│   │   ├── doc6438.txt
│   │   ├── doc6439.txt
│   │   ├── doc644.txt
│   │   ├── doc6440.txt
│   │   ├── doc6441.txt
│   │   ├── doc6442.txt
│   │   ├── doc6443.txt
│   │   ├── doc6444.txt
│   │   ├── doc6445.txt
│   │   ├── doc6446.txt
│   │   ├── doc6447.txt
│   │   ├── doc6448.txt
│   │   ├── doc6449.txt
│   │   ├── doc645.txt
│   │   ├── doc6450.txt
│   │   ├── doc6451.txt
│   │   ├── doc6452.txt
│   │   ├── doc6453.txt
│   │   ├── doc6454.txt
│   │   ├── doc6455.txt
│   │   ├── doc6456.txt
│   │   ├── doc6457.txt
│   │   ├── doc6458.txt
│   │   ├── doc6459.txt
│   │   ├── doc646.txt
│   │   ├── doc6460.txt
│   │   ├── doc6461.txt
│   │   ├── doc6462.txt
│   │   ├── doc6463.txt
│   │   ├── doc6464.txt
│   │   ├── doc6465.txt
│   │   ├── doc6466.txt
│   │   ├── doc6467.txt
│   │   ├── doc6468.txt
│   │   ├── doc6469.txt
│   │   ├── doc647.txt
│   │   ├── doc6470.txt
│   │   ├── doc6471.txt
│   │   ├── doc6472.txt
│   │   ├── doc6473.txt
│   │   ├── doc6474.txt
│   │   ├── doc6475.txt
│   │   ├── doc6476.txt
│   │   ├── doc6477.txt
│   │   ├── doc6478.txt
│   │   ├── doc6479.txt
│   │   ├── doc648.txt
│   │   ├── doc6480.txt
│   │   ├── doc6481.txt
│   │   ├── doc6482.txt
│   │   ├── doc6483.txt
│   │   ├── doc6484.txt
│   │   ├── doc6485.txt
│   │   ├── doc6486.txt
│   │   ├── doc6487.txt
│   │   ├── doc6488.txt
│   │   ├── doc6489.txt
│   │   ├── doc649.txt
│   │   ├── doc6490.txt
│   │   ├── doc6491.txt
│   │   ├── doc6492.txt
│   │   ├── doc6493.txt
│   │   ├── doc6494.txt
│   │   ├── doc6495.txt
│   │   ├── doc6496.txt
│   │   ├── doc6497.txt
│   │   ├── doc6498.txt
│   │   ├── doc6499.txt
│   │   ├── doc65.txt
│   │   ├── doc650.txt
│   │   ├── doc6500.txt
│   │   ├── doc6501.txt
│   │   ├── doc6502.txt
│   │   ├── doc6503.txt
│   │   ├── doc6504.txt
│   │   ├── doc6505.txt
│   │   ├── doc6506.txt
│   │   ├── doc6507.txt
│   │   ├── doc6508.txt
│   │   ├── doc6509.txt
│   │   ├── doc651.txt
│   │   ├── doc6510.txt
│   │   ├── doc6511.txt
│   │   ├── doc6512.txt
│   │   ├── doc6513.txt
│   │   ├── doc6514.txt
│   │   ├── doc6515.txt
│   │   ├── doc6516.txt
│   │   ├── doc6517.txt
│   │   ├── doc6518.txt
│   │   ├── doc6519.txt
│   │   ├── doc652.txt
│   │   ├── doc6520.txt
│   │   ├── doc6521.txt
│   │   ├── doc6522.txt
│   │   ├── doc6523.txt
│   │   ├── doc6524.txt
│   │   ├── doc6525.txt
│   │   ├── doc6526.txt
│   │   ├── doc6527.txt
│   │   ├── doc6528.txt
│   │   ├── doc6529.txt
│   │   ├── doc653.txt
│   │   ├── doc6530.txt
│   │   ├── doc6531.txt
│   │   ├── doc6532.txt
│   │   ├── doc6533.txt
│   │   ├── doc6534.txt
│   │   ├── doc6535.txt
│   │   ├── doc6536.txt
│   │   ├── doc6537.txt
│   │   ├── doc6538.txt
│   │   ├── doc6539.txt
│   │   ├── doc654.txt
│   │   ├── doc6540.txt
│   │   ├── doc6541.txt
│   │   ├── doc6542.txt
│   │   ├── doc6543.txt
│   │   ├── doc6544.txt
│   │   ├── doc6545.txt
│   │   ├── doc6546.txt
│   │   ├── doc6547.txt
│   │   ├── doc6548.txt
│   │   ├── doc6549.txt
│   │   ├── doc655.txt
│   │   ├── doc6550.txt
│   │   ├── doc6551.txt
│   │   ├── doc6552.txt
│   │   ├── doc6553.txt
│   │   ├── doc6554.txt
│   │   ├── doc6555.txt
│   │   ├── doc6556.txt
│   │   ├── doc6557.txt
│   │   ├── doc6558.txt
│   │   ├── doc6559.txt
│   │   ├── doc656.txt
│   │   ├── doc6560.txt
│   │   ├── doc6561.txt
│   │   ├── doc6562.txt
│   │   ├── doc6563.txt
│   │   ├── doc6564.txt
│   │   ├── doc6565.txt
│   │   ├── doc6566.txt
│   │   ├── doc6567.txt
│   │   ├── doc6568.txt
│   │   ├── doc6569.txt
│   │   ├── doc657.txt
│   │   ├── doc6570.txt
│   │   ├── doc6571.txt
│   │   ├── doc6572.txt
│   │   ├── doc6573.txt
│   │   ├── doc6574.txt
│   │   ├── doc6575.txt
│   │   ├── doc6576.txt
│   │   ├── doc6577.txt
│   │   ├── doc6578.txt
│   │   ├── doc6579.txt
│   │   ├── doc658.txt
│   │   ├── doc6580.txt
│   │   ├── doc6581.txt
│   │   ├── doc6582.txt
│   │   ├── doc6583.txt
│   │   ├── doc6584.txt
│   │   ├── doc6585.txt
│   │   ├── doc6586.txt
│   │   ├── doc6587.txt
│   │   ├── doc6588.txt
│   │   ├── doc6589.txt
│   │   ├── doc659.txt
│   │   ├── doc6590.txt
│   │   ├── doc6591.txt
│   │   ├── doc6592.txt
│   │   ├── doc6593.txt
│   │   ├── doc6594.txt
│   │   ├── doc6595.txt
│   │   ├── doc6596.txt
│   │   ├── doc6597.txt
│   │   ├── doc6598.txt
│   │   ├── doc6599.txt
│   │   ├── doc66.txt
│   │   ├── doc660.txt
│   │   ├── doc6600.txt
│   │   ├── doc6601.txt
│   │   ├── doc6602.txt
│   │   ├── doc6603.txt
│   │   ├── doc6604.txt
│   │   ├── doc6605.txt
│   │   ├── doc6606.txt
│   │   ├── doc6607.txt
│   │   ├── doc6608.txt
│   │   ├── doc6609.txt
│   │   ├── doc661.txt
│   │   ├── doc6610.txt
│   │   ├── doc6611.txt
│   │   ├── doc6612.txt
│   │   ├── doc6613.txt
│   │   ├── doc6614.txt
│   │   ├── doc6615.txt
│   │   ├── doc6616.txt
│   │   ├── doc6617.txt
│   │   ├── doc6618.txt
│   │   ├── doc6619.txt
│   │   ├── doc662.txt
│   │   ├── doc6620.txt
│   │   ├── doc6621.txt
│   │   ├── doc6622.txt
│   │   ├── doc6623.txt
│   │   ├── doc6624.txt
│   │   ├── doc6625.txt
│   │   ├── doc6626.txt
│   │   ├── doc6627.txt
│   │   ├── doc6628.txt
│   │   ├── doc6629.txt
│   │   ├── doc663.txt
│   │   ├── doc6630.txt
│   │   ├── doc6631.txt
│   │   ├── doc6632.txt
│   │   ├── doc6633.txt
│   │   ├── doc6634.txt
│   │   ├── doc6635.txt
│   │   ├── doc6636.txt
│   │   ├── doc6637.txt
│   │   ├── doc6638.txt
│   │   ├── doc6639.txt
│   │   ├── doc664.txt
│   │   ├── doc6640.txt
│   │   ├── doc6641.txt
│   │   ├── doc6642.txt
│   │   ├── doc6643.txt
│   │   ├── doc6644.txt
│   │   ├── doc6645.txt
│   │   ├── doc6646.txt
│   │   ├── doc6647.txt
│   │   ├── doc6648.txt
│   │   ├── doc6649.txt
│   │   ├── doc665.txt
│   │   ├── doc6650.txt
│   │   ├── doc6651.txt
│   │   ├── doc6652.txt
│   │   ├── doc6653.txt
│   │   ├── doc6654.txt
│   │   ├── doc6655.txt
│   │   ├── doc6656.txt
│   │   ├── doc6657.txt
│   │   ├── doc6658.txt
│   │   ├── doc6659.txt
│   │   ├── doc666.txt
│   │   ├── doc6660.txt
│   │   ├── doc6661.txt
│   │   ├── doc6662.txt
│   │   ├── doc6663.txt
│   │   ├── doc6664.txt
│   │   ├── doc6665.txt
│   │   ├── doc6666.txt
│   │   ├── doc6667.txt
│   │   ├── doc6668.txt
│   │   ├── doc6669.txt
│   │   ├── doc667.txt
│   │   ├── doc6670.txt
│   │   ├── doc6671.txt
│   │   ├── doc6672.txt
│   │   ├── doc6673.txt
│   │   ├── doc6674.txt
│   │   ├── doc6675.txt
│   │   ├── doc6676.txt
│   │   ├── doc6677.txt
│   │   ├── doc6678.txt
│   │   ├── doc6679.txt
│   │   ├── doc668.txt
│   │   ├── doc6680.txt
│   │   ├── doc6681.txt
│   │   ├── doc6682.txt
│   │   ├── doc6683.txt
│   │   ├── doc6684.txt
│   │   ├── doc6685.txt
│   │   ├── doc6686.txt
│   │   ├── doc6687.txt
│   │   ├── doc6688.txt
│   │   ├── doc6689.txt
│   │   ├── doc669.txt
│   │   ├── doc6690.txt
│   │   ├── doc6691.txt
│   │   ├── doc6692.txt
│   │   ├── doc6693.txt
│   │   ├── doc6694.txt
│   │   ├── doc6695.txt
│   │   ├── doc6696.txt
│   │   ├── doc6697.txt
│   │   ├── doc6698.txt
│   │   ├── doc6699.txt
│   │   ├── doc67.txt
│   │   ├── doc670.txt
│   │   ├── doc6700.txt
│   │   ├── doc6701.txt
│   │   ├── doc6702.txt
│   │   ├── doc6703.txt
│   │   ├── doc6704.txt
│   │   ├── doc6705.txt
│   │   ├── doc6706.txt
│   │   ├── doc6707.txt
│   │   ├── doc6708.txt
│   │   ├── doc6709.txt
│   │   ├── doc671.txt
│   │   ├── doc6710.txt
│   │   ├── doc6711.txt
│   │   ├── doc6712.txt
│   │   ├── doc6713.txt
│   │   ├── doc6714.txt
│   │   ├── doc6715.txt
│   │   ├── doc6716.txt
│   │   ├── doc6717.txt
│   │   ├── doc6718.txt
│   │   ├── doc6719.txt
│   │   ├── doc672.txt
│   │   ├── doc6720.txt
│   │   ├── doc6721.txt
│   │   ├── doc6722.txt
│   │   ├── doc6723.txt
│   │   ├── doc6724.txt
│   │   ├── doc6725.txt
│   │   ├── doc6726.txt
│   │   ├── doc6727.txt
│   │   ├── doc6728.txt
│   │   ├── doc6729.txt
│   │   ├── doc673.txt
│   │   ├── doc6730.txt
│   │   ├── doc6731.txt
│   │   ├── doc6732.txt
│   │   ├── doc6733.txt
│   │   ├── doc6734.txt
│   │   ├── doc6735.txt
│   │   ├── doc6736.txt
│   │   ├── doc6737.txt
│   │   ├── doc6738.txt
│   │   ├── doc6739.txt
│   │   ├── doc674.txt
│   │   ├── doc6740.txt
│   │   ├── doc6741.txt
│   │   ├── doc6742.txt
│   │   ├── doc6743.txt
│   │   ├── doc6744.txt
│   │   ├── doc6745.txt
│   │   ├── doc6746.txt
│   │   ├── doc6747.txt
│   │   ├── doc6748.txt
│   │   ├── doc6749.txt
│   │   ├── doc675.txt
│   │   ├── doc6750.txt
│   │   ├── doc6751.txt
│   │   ├── doc6752.txt
│   │   ├── doc6753.txt
│   │   ├── doc6754.txt
│   │   ├── doc6755.txt
│   │   ├── doc6756.txt
│   │   ├── doc6757.txt
│   │   ├── doc6758.txt
│   │   ├── doc6759.txt
│   │   ├── doc676.txt
│   │   ├── doc6760.txt
│   │   ├── doc6761.txt
│   │   ├── doc6762.txt
│   │   ├── doc6763.txt
│   │   ├── doc6764.txt
│   │   ├── doc6765.txt
│   │   ├── doc6766.txt
│   │   ├── doc6767.txt
│   │   ├── doc6768.txt
│   │   ├── doc6769.txt
│   │   ├── doc677.txt
│   │   ├── doc6770.txt
│   │   ├── doc6771.txt
│   │   ├── doc6772.txt
│   │   ├── doc6773.txt
│   │   ├── doc6774.txt
│   │   ├── doc6775.txt
│   │   ├── doc6776.txt
│   │   ├── doc6777.txt
│   │   ├── doc6778.txt
│   │   ├── doc6779.txt
│   │   ├── doc678.txt
│   │   ├── doc6780.txt
│   │   ├── doc6781.txt
│   │   ├── doc6782.txt
│   │   ├── doc6783.txt
│   │   ├── doc6784.txt
│   │   ├── doc6785.txt
│   │   ├── doc6786.txt
│   │   ├── doc6787.txt
│   │   ├── doc6788.txt
│   │   ├── doc6789.txt
│   │   ├── doc679.txt
│   │   ├── doc6790.txt
│   │   ├── doc6791.txt
│   │   ├── doc6792.txt
│   │   ├── doc6793.txt
│   │   ├── doc6794.txt
│   │   ├── doc6795.txt
│   │   ├── doc6796.txt
│   │   ├── doc6797.txt
│   │   ├── doc6798.txt
│   │   ├── doc6799.txt
│   │   ├── doc68.txt
│   │   ├── doc680.txt
│   │   ├── doc6800.txt
│   │   ├── doc6801.txt
│   │   ├── doc6802.txt
│   │   ├── doc6803.txt
│   │   ├── doc6804.txt
│   │   ├── doc6805.txt
│   │   ├── doc6806.txt
│   │   ├── doc6807.txt
│   │   ├── doc6808.txt
│   │   ├── doc6809.txt
│   │   ├── doc681.txt
│   │   ├── doc6810.txt
│   │   ├── doc6811.txt
│   │   ├── doc6812.txt
│   │   ├── doc6813.txt
│   │   ├── doc6814.txt
│   │   ├── doc6815.txt
│   │   ├── doc6816.txt
│   │   ├── doc6817.txt
│   │   ├── doc6818.txt
│   │   ├── doc6819.txt
│   │   ├── doc682.txt
│   │   ├── doc6820.txt
│   │   ├── doc6821.txt
│   │   ├── doc6822.txt
│   │   ├── doc6823.txt
│   │   ├── doc6824.txt
│   │   ├── doc6825.txt
│   │   ├── doc6826.txt
│   │   ├── doc6827.txt
│   │   ├── doc6828.txt
│   │   ├── doc6829.txt
│   │   ├── doc683.txt
│   │   ├── doc6830.txt
│   │   ├── doc6831.txt
│   │   ├── doc6832.txt
│   │   ├── doc6833.txt
│   │   ├── doc6834.txt
│   │   ├── doc6835.txt
│   │   ├── doc6836.txt
│   │   ├── doc6837.txt
│   │   ├── doc6838.txt
│   │   ├── doc6839.txt
│   │   ├── doc684.txt
│   │   ├── doc6840.txt
│   │   ├── doc6841.txt
│   │   ├── doc6842.txt
│   │   ├── doc6843.txt
│   │   ├── doc6844.txt
│   │   ├── doc6845.txt
│   │   ├── doc6846.txt
│   │   ├── doc6847.txt
│   │   ├── doc6848.txt
│   │   ├── doc6849.txt
│   │   ├── doc685.txt
│   │   ├── doc6850.txt
│   │   ├── doc6851.txt
│   │   ├── doc6852.txt
│   │   ├── doc6853.txt
│   │   ├── doc6854.txt
│   │   ├── doc6855.txt
│   │   ├── doc6856.txt
│   │   ├── doc6857.txt
│   │   ├── doc6858.txt
│   │   ├── doc6859.txt
│   │   ├── doc686.txt
│   │   ├── doc6860.txt
│   │   ├── doc6861.txt
│   │   ├── doc6862.txt
│   │   ├── doc6863.txt
│   │   ├── doc6864.txt
│   │   ├── doc6865.txt
│   │   ├── doc6866.txt
│   │   ├── doc6867.txt
│   │   ├── doc6868.txt
│   │   ├── doc6869.txt
│   │   ├── doc687.txt
│   │   ├── doc6870.txt
│   │   ├── doc6871.txt
│   │   ├── doc6872.txt
│   │   ├── doc6873.txt
│   │   ├── doc6874.txt
│   │   ├── doc6875.txt
│   │   ├── doc6876.txt
│   │   ├── doc6877.txt
│   │   ├── doc6878.txt
│   │   ├── doc6879.txt
│   │   ├── doc688.txt
│   │   ├── doc6880.txt
│   │   ├── doc6881.txt
│   │   ├── doc6882.txt
│   │   ├── doc6883.txt
│   │   ├── doc6884.txt
│   │   ├── doc6885.txt
│   │   ├── doc6886.txt
│   │   ├── doc6887.txt
│   │   ├── doc6888.txt
│   │   ├── doc6889.txt
│   │   ├── doc689.txt
│   │   ├── doc6890.txt
│   │   ├── doc6891.txt
│   │   ├── doc6892.txt
│   │   ├── doc6893.txt
│   │   ├── doc6894.txt
│   │   ├── doc6895.txt
│   │   ├── doc6896.txt
│   │   ├── doc6897.txt
│   │   ├── doc6898.txt
│   │   ├── doc6899.txt
│   │   ├── doc69.txt
│   │   ├── doc690.txt
│   │   ├── doc6900.txt
│   │   ├── doc6901.txt
│   │   ├── doc6902.txt
│   │   ├── doc6903.txt
│   │   ├── doc6904.txt
│   │   ├── doc6905.txt
│   │   ├── doc6906.txt
│   │   ├── doc6907.txt
│   │   ├── doc6908.txt
│   │   ├── doc6909.txt
│   │   ├── doc691.txt
│   │   ├── doc6910.txt
│   │   ├── doc6911.txt
│   │   ├── doc6912.txt
│   │   ├── doc6913.txt
│   │   ├── doc6914.txt
│   │   ├── doc6915.txt
│   │   ├── doc6916.txt
│   │   ├── doc6917.txt
│   │   ├── doc692.txt
│   │   ├── doc693.txt
│   │   ├── doc694.txt
│   │   ├── doc695.txt
│   │   ├── doc696.txt
│   │   ├── doc697.txt
│   │   ├── doc698.txt
│   │   ├── doc699.txt
│   │   ├── doc7.txt
│   │   ├── doc70.txt
│   │   ├── doc700.txt
│   │   ├── doc701.txt
│   │   ├── doc702.txt
│   │   ├── doc703.txt
│   │   ├── doc704.txt
│   │   ├── doc705.txt
│   │   ├── doc706.txt
│   │   ├── doc707.txt
│   │   ├── doc708.txt
│   │   ├── doc709.txt
│   │   ├── doc71.txt
│   │   ├── doc710.txt
│   │   ├── doc711.txt
│   │   ├── doc712.txt
│   │   ├── doc713.txt
│   │   ├── doc714.txt
│   │   ├── doc715.txt
│   │   ├── doc716.txt
│   │   ├── doc717.txt
│   │   ├── doc718.txt
│   │   ├── doc719.txt
│   │   ├── doc72.txt
│   │   ├── doc720.txt
│   │   ├── doc721.txt
│   │   ├── doc722.txt
│   │   ├── doc723.txt
│   │   ├── doc724.txt
│   │   ├── doc725.txt
│   │   ├── doc726.txt
│   │   ├── doc727.txt
│   │   ├── doc728.txt
│   │   ├── doc729.txt
│   │   ├── doc73.txt
│   │   ├── doc730.txt
│   │   ├── doc731.txt
│   │   ├── doc732.txt
│   │   ├── doc733.txt
│   │   ├── doc734.txt
│   │   ├── doc735.txt
│   │   ├── doc736.txt
│   │   ├── doc737.txt
│   │   ├── doc738.txt
│   │   ├── doc739.txt
│   │   ├── doc74.txt
│   │   ├── doc740.txt
│   │   ├── doc741.txt
│   │   ├── doc742.txt
│   │   ├── doc743.txt
│   │   ├── doc744.txt
│   │   ├── doc745.txt
│   │   ├── doc746.txt
│   │   ├── doc747.txt
│   │   ├── doc748.txt
│   │   ├── doc749.txt
│   │   ├── doc75.txt
│   │   ├── doc750.txt
│   │   ├── doc751.txt
│   │   ├── doc752.txt
│   │   ├── doc753.txt
│   │   ├── doc754.txt
│   │   ├── doc755.txt
│   │   ├── doc756.txt
│   │   ├── doc757.txt
│   │   ├── doc758.txt
│   │   ├── doc759.txt
│   │   ├── doc76.txt
│   │   ├── doc760.txt
│   │   ├── doc761.txt
│   │   ├── doc762.txt
│   │   ├── doc763.txt
│   │   ├── doc764.txt
│   │   ├── doc765.txt
│   │   ├── doc766.txt
│   │   ├── doc767.txt
│   │   ├── doc768.txt
│   │   ├── doc769.txt
│   │   ├── doc77.txt
│   │   ├── doc770.txt
│   │   ├── doc771.txt
│   │   ├── doc772.txt
│   │   ├── doc773.txt
│   │   ├── doc774.txt
│   │   ├── doc775.txt
│   │   ├── doc776.txt
│   │   ├── doc777.txt
│   │   ├── doc778.txt
│   │   ├── doc779.txt
│   │   ├── doc78.txt
│   │   ├── doc780.txt
│   │   ├── doc781.txt
│   │   ├── doc782.txt
│   │   ├── doc783.txt
│   │   ├── doc784.txt
│   │   ├── doc785.txt
│   │   ├── doc786.txt
│   │   ├── doc787.txt
│   │   ├── doc788.txt
│   │   ├── doc789.txt
│   │   ├── doc79.txt
│   │   ├── doc790.txt
│   │   ├── doc791.txt
│   │   ├── doc792.txt
│   │   ├── doc793.txt
│   │   ├── doc794.txt
│   │   ├── doc795.txt
│   │   ├── doc796.txt
│   │   ├── doc797.txt
│   │   ├── doc798.txt
│   │   ├── doc799.txt
│   │   ├── doc8.txt
│   │   ├── doc80.txt
│   │   ├── doc800.txt
│   │   ├── doc801.txt
│   │   ├── doc802.txt
│   │   ├── doc803.txt
│   │   ├── doc804.txt
│   │   ├── doc805.txt
│   │   ├── doc806.txt
│   │   ├── doc807.txt
│   │   ├── doc808.txt
│   │   ├── doc809.txt
│   │   ├── doc81.txt
│   │   ├── doc810.txt
│   │   ├── doc811.txt
│   │   ├── doc812.txt
│   │   ├── doc813.txt
│   │   ├── doc814.txt
│   │   ├── doc815.txt
│   │   ├── doc816.txt
│   │   ├── doc817.txt
│   │   ├── doc818.txt
│   │   ├── doc819.txt
│   │   ├── doc82.txt
│   │   ├── doc820.txt
│   │   ├── doc821.txt
│   │   ├── doc822.txt
│   │   ├── doc823.txt
│   │   ├── doc824.txt
│   │   ├── doc825.txt
│   │   ├── doc826.txt
│   │   ├── doc827.txt
│   │   ├── doc828.txt
│   │   ├── doc829.txt
│   │   ├── doc83.txt
│   │   ├── doc830.txt
│   │   ├── doc831.txt
│   │   ├── doc832.txt
│   │   ├── doc833.txt
│   │   ├── doc834.txt
│   │   ├── doc835.txt
│   │   ├── doc836.txt
│   │   ├── doc837.txt
│   │   ├── doc838.txt
│   │   ├── doc839.txt
│   │   ├── doc84.txt
│   │   ├── doc840.txt
│   │   ├── doc841.txt
│   │   ├── doc842.txt
│   │   ├── doc843.txt
│   │   ├── doc844.txt
│   │   ├── doc845.txt
│   │   ├── doc846.txt
│   │   ├── doc847.txt
│   │   ├── doc848.txt
│   │   ├── doc849.txt
│   │   ├── doc85.txt
│   │   ├── doc850.txt
│   │   ├── doc851.txt
│   │   ├── doc852.txt
│   │   ├── doc853.txt
│   │   ├── doc854.txt
│   │   ├── doc855.txt
│   │   ├── doc856.txt
│   │   ├── doc857.txt
│   │   ├── doc858.txt
│   │   ├── doc859.txt
│   │   ├── doc86.txt
│   │   ├── doc860.txt
│   │   ├── doc861.txt
│   │   ├── doc862.txt
│   │   ├── doc863.txt
│   │   ├── doc864.txt
│   │   ├── doc865.txt
│   │   ├── doc866.txt
│   │   ├── doc867.txt
│   │   ├── doc868.txt
│   │   ├── doc869.txt
│   │   ├── doc87.txt
│   │   ├── doc870.txt
│   │   ├── doc871.txt
│   │   ├── doc872.txt
│   │   ├── doc873.txt
│   │   ├── doc874.txt
│   │   ├── doc875.txt
│   │   ├── doc876.txt
│   │   ├── doc877.txt
│   │   ├── doc878.txt
│   │   ├── doc879.txt
│   │   ├── doc88.txt
│   │   ├── doc880.txt
│   │   ├── doc881.txt
│   │   ├── doc882.txt
│   │   ├── doc883.txt
│   │   ├── doc884.txt
│   │   ├── doc885.txt
│   │   ├── doc886.txt
│   │   ├── doc887.txt
│   │   ├── doc888.txt
│   │   ├── doc889.txt
│   │   ├── doc89.txt
│   │   ├── doc890.txt
│   │   ├── doc891.txt
│   │   ├── doc892.txt
│   │   ├── doc893.txt
│   │   ├── doc894.txt
│   │   ├── doc895.txt
│   │   ├── doc896.txt
│   │   ├── doc897.txt
│   │   ├── doc898.txt
│   │   ├── doc899.txt
│   │   ├── doc9.txt
│   │   ├── doc90.txt
│   │   ├── doc900.txt
│   │   ├── doc901.txt
│   │   ├── doc902.txt
│   │   ├── doc903.txt
│   │   ├── doc904.txt
│   │   ├── doc905.txt
│   │   ├── doc906.txt
│   │   ├── doc907.txt
│   │   ├── doc908.txt
│   │   ├── doc909.txt
│   │   ├── doc91.txt
│   │   ├── doc910.txt
│   │   ├── doc911.txt
│   │   ├── doc912.txt
│   │   ├── doc913.txt
│   │   ├── doc914.txt
│   │   ├── doc915.txt
│   │   ├── doc916.txt
│   │   ├── doc917.txt
│   │   ├── doc918.txt
│   │   ├── doc919.txt
│   │   ├── doc92.txt
│   │   ├── doc920.txt
│   │   ├── doc921.txt
│   │   ├── doc922.txt
│   │   ├── doc923.txt
│   │   ├── doc924.txt
│   │   ├── doc925.txt
│   │   ├── doc926.txt
│   │   ├── doc927.txt
│   │   ├── doc928.txt
│   │   ├── doc929.txt
│   │   ├── doc93.txt
│   │   ├── doc930.txt
│   │   ├── doc931.txt
│   │   ├── doc932.txt
│   │   ├── doc933.txt
│   │   ├── doc934.txt
│   │   ├── doc935.txt
│   │   ├── doc936.txt
│   │   ├── doc937.txt
│   │   ├── doc938.txt
│   │   ├── doc939.txt
│   │   ├── doc94.txt
│   │   ├── doc940.txt
│   │   ├── doc941.txt
│   │   ├── doc942.txt
│   │   ├── doc943.txt
│   │   ├── doc944.txt
│   │   ├── doc945.txt
│   │   ├── doc946.txt
│   │   ├── doc947.txt
│   │   ├── doc948.txt
│   │   ├── doc949.txt
│   │   ├── doc95.txt
│   │   ├── doc950.txt
│   │   ├── doc951.txt
│   │   ├── doc952.txt
│   │   ├── doc953.txt
│   │   ├── doc954.txt
│   │   ├── doc955.txt
│   │   ├── doc956.txt
│   │   ├── doc957.txt
│   │   ├── doc958.txt
│   │   ├── doc959.txt
│   │   ├── doc96.txt
│   │   ├── doc960.txt
│   │   ├── doc961.txt
│   │   ├── doc962.txt
│   │   ├── doc963.txt
│   │   ├── doc964.txt
│   │   ├── doc965.txt
│   │   ├── doc966.txt
│   │   ├── doc967.txt
│   │   ├── doc968.txt
│   │   ├── doc969.txt
│   │   ├── doc97.txt
│   │   ├── doc970.txt
│   │   ├── doc971.txt
│   │   ├── doc972.txt
│   │   ├── doc973.txt
│   │   ├── doc974.txt
│   │   ├── doc975.txt
│   │   ├── doc976.txt
│   │   ├── doc977.txt
│   │   ├── doc978.txt
│   │   ├── doc979.txt
│   │   ├── doc98.txt
│   │   ├── doc980.txt
│   │   ├── doc981.txt
│   │   ├── doc982.txt
│   │   ├── doc983.txt
│   │   ├── doc984.txt
│   │   ├── doc985.txt
│   │   ├── doc986.txt
│   │   ├── doc987.txt
│   │   ├── doc988.txt
│   │   ├── doc989.txt
│   │   ├── doc99.txt
│   │   ├── doc990.txt
│   │   ├── doc991.txt
│   │   ├── doc992.txt
│   │   ├── doc993.txt
│   │   ├── doc994.txt
│   │   ├── doc995.txt
│   │   ├── doc996.txt
│   │   ├── doc997.txt
│   │   ├── doc998.txt
│   │   └── doc999.txt
│   └── dictionary.txt
└── Week9/
    ├── DeepQLearning-Keras.ipynb
    ├── DeepQLearning.ipynb
    └── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: README.md
================================================
# The_Math_of_Intelligence
This is the Syllabus for Siraj Raval's new course "The Math of Intelligence"

Each week has a short video (released on Friday) and an associated longer video (released on Wednesday). So each weeks short video is in bold and the longer video is underneath.

## Week 1 - First order optimization - derivative, partial derivative, convexity
 SVM Classification with gradient descent
## Week 2 - Second order optimization - Jacobian, hessian, laplacian
 Newtons method for logistic regression
## Week 3 - Vectors - Vector spaces, vector norms, matrices
 L1 - L2 Regularization
## Week 4 - Matrix operations - Dot product, matrix inverse, projections
 Self Organizing Map (SOM) - Neural Network
## Week 5 - Dimensionality Reduction - matrix decomposition, eigenvectors, eigenvalues
 Principal Component Analysis - PCA
## Week 6 - Probability terms - Random variables,Expectations,Variance 
 Naïve Bayes Classifier for text corpus
## Week 7 - Parameter estimation - expectation maximization, bayes vs frequentist, maximum likelihood estimation
 Bayesian Hyperparameter Optimization w/ Sklearn
## Week 8 - Types of Probability - joint, conditional, bayes rule, chain rule 
 Latent Dirichlet Allocation - LDA on text dataset
## Week 9 - T-SNE 
 DeepQLearning - Gym
## Week 10 - Sampling -MCMC, Gibbs, Slice
 Quantum Computing w/ QISKIT

================================================
FILE: Week1/ADRvsRating.csv
================================================
ADR,Rating
85.0,117.0
83.5,110.00000000000001
78.2,102.0
68.1,97.0
66.3,86.0
99.8,135.0
78.2,120.0
85.6,103.0
66.6,100.0
57.5,87.0
118.6,182.0
114.8,167.0
90.0,155.0
59.2,122.0
68.9,107.0
85.0,101.0
65.8,81.0
44.7,55.00000000000001
56.2,52.0
54.2,50.0
113.7,142.0
86.1,128.0
77.9,114.99999999999999
62.5,81.0
43.7,69.0
100.4,123.0
73.1,110.00000000000001
73.9,108.0
59.6,99.0
55.0,72.0
86.6,112.00000000000001
92.6,100.0
66.6,90.0
46.7,65.0
53.1,62.0
117.0,170.0
88.3,133.0
86.2,132.0
56.7,109.00000000000001
56.6,72.0
77.4,133.0
85.7,121.0
78.1,93.0
69.8,92.0
62.3,87.0
94.9,132.0
88.1,118.0
66.9,105.0
76.6,102.0
48.8,65.0
93.7,117.0
72.1,107.0
77.9,106.0
78.5,105.0
58.7,77.0
108.3,159.0
94.5,115.99999999999999
76.8,112.00000000000001
64.9,104.0
53.6,69.0
75.0,99.0
61.2,98.0
80.8,97.0
67.2,90.0
67.0,79.0
126.1,204.99999999999997
100.0,146.0
78.3,123.0
56.6,76.0
57.8,73.0
91.1,109.00000000000001
64.3,90.0
85.5,87.0
54.3,72.0
57.1,72.0
123.7,186.0
84.2,123.0
82.2,120.0
73.3,120.0
64.8,105.0
87.9,119.0
84.6,111.00000000000001
80.5,99.0
66.9,85.0
54.8,65.0
113.5,148.0
93.6,131.0
81.5,117.0
69.5,111.00000000000001
41.1,65.0
95.7,150.0
81.4,149.0
94.7,137.0
69.1,112.99999999999999
49.0,67.0
97.7,143.0
69.7,99.0
69.8,91.0
62.2,75.0
40.3,50.0
136.5,220.00000000000003
110.2,166.0
75.4,154.0
87.7,145.0
80.0,134.0
53.2,61.0
63.1,60.0
70.1,57.99999999999999
52.0,48.0
36.4,27.0
71.6,78.0
60.7,67.0
59.5,60.0
72.4,50.0
45.1,41.0
126.1,204.99999999999997
100.2,158.0
88.3,155.0
92.4,134.0
79.3,122.0
104.3,146.0
89.7,130.0
79.0,127.0
66.3,96.0
53.2,85.0
85.5,107.0
72.7,95.0
65.5,94.0
66.9,87.0
57.0,84.0
100.7,138.0
89.2,137.0
79.8,137.0
62.5,110.00000000000001
73.4,105.0
101.5,112.99999999999999
83.0,106.0
62.1,93.0
41.7,57.99999999999999
45.6,56.00000000000001
110.0,165.0
93.6,142.0
83.8,125.0
70.2,107.0
42.6,82.0
74.9,101.0
73.0,97.0
65.8,88.0
69.9,77.0
68.9,73.0
89.7,139.0
77.4,124.0
77.5,120.0
82.3,110.00000000000001
55.5,93.0
82.1,111.00000000000001
72.7,92.0
67.1,90.0
70.8,88.0
56.8,68.0
84.2,112.99999999999999
78.5,100.0
62.3,86.0
73.2,86.0
68.3,72.0
108.9,153.0
98.6,144.0
81.2,130.0
73.1,120.0
66.8,97.0
108.4,150.0
92.3,140.0
75.0,111.00000000000001
74.8,100.0
35.5,49.0
88.7,122.0
72.5,100.0
68.8,96.0
67.8,89.0
69.8,85.0
135.3,202.99999999999997
91.8,137.0
79.3,131.0
68.7,112.99999999999999
44.3,75.0
102.0,140.0
67.1,67.0
50.1,63.0
37.7,47.0
44.3,47.0
105.3,137.0
72.6,130.0
97.7,127.0
55.6,89.0
62.1,82.0
95.5,131.0
72.4,112.00000000000001
86.7,107.0
63.4,94.0
65.1,76.0
55.4,85.0
71.7,83.0
70.8,77.0
52.0,69.0
59.6,68.0
114.1,185.0
95.6,143.0
92.0,131.0
71.2,121.0
62.9,110.00000000000001
119.1,211.0
96.5,163.0
98.1,154.0
92.2,148.0
85.2,145.0
84.9,101.0
58.9,61.0
38.2,41.0
38.8,35.0
19.7,5.0
116.4,168.0
78.5,148.0
98.5,136.0
69.4,131.0
64.1,126.0
76.5,101.0
69.3,77.0
53.9,69.0
51.0,61.0
64.5,60.0
96.4,141.0
77.4,134.0
74.4,121.0
75.1,107.0
82.0,99.0
76.3,109.00000000000001
84.6,107.0
67.8,77.0
68.4,76.0
57.2,68.0
115.3,196.0
89.9,127.0
81.3,118.0
60.7,102.0
66.8,96.0
64.5,92.0
77.9,91.0
72.6,85.0
69.7,84.0
63.7,82.0
113.0,176.0
78.8,127.0
67.1,118.0
81.5,115.99999999999999
80.2,112.99999999999999
76.5,103.0
73.9,103.0
81.0,92.0
65.1,80.0
60.8,74.0
76.1,90.0
60.1,76.0
66.3,71.0
45.0,60.0
63.7,56.99999999999999
127.8,219.0
129.7,176.0
99.7,168.0
76.2,100.0
33.4,78.0
96.0,112.99999999999999
71.5,105.0
74.1,89.0
60.7,69.0
49.0,69.0
125.2,171.0
80.4,124.0
87.3,114.99999999999999
71.4,110.00000000000001
64.5,107.0
100.0,141.0
94.5,127.0
88.5,120.0
62.9,107.0
71.7,97.0
95.1,129.0
72.2,99.0
75.5,96.0
58.8,73.0
55.3,68.0
100.1,169.0
95.3,145.0
82.7,127.0
75.0,119.0
77.7,104.0
81.2,101.0
71.6,90.0
82.3,83.0
54.0,81.0
44.5,35.0
89.0,91.0
75.0,72.0
55.0,59.0
45.1,54.0
48.8,51.0
124.9,179.0
74.1,139.0
86.6,139.0
63.5,119.0
69.6,118.0
82.8,112.99999999999999
83.3,111.00000000000001
76.0,83.0
57.6,78.0
57.1,73.0
99.3,155.0
95.8,136.0
91.4,135.0
60.3,106.0
83.1,106.0
96.4,157.0
103.2,151.0
91.1,130.0
87.1,126.0
65.1,113.99999999999999
76.0,93.0
73.6,90.0
67.7,83.0
73.3,78.0
36.6,40.0
70.2,82.0
55.6,59.0
52.2,53.0
58.9,51.0
50.0,51.0
123.7,204.0
127.1,186.0
78.6,141.0
67.9,113.99999999999999
60.2,110.00000000000001
75.2,98.0
69.9,90.0
72.8,84.0
58.2,73.0
57.5,69.0
105.3,191.0
89.8,152.0
91.1,125.0
74.4,106.0
66.0,94.0
109.2,119.0
83.9,105.0
69.1,91.0
47.9,62.0
50.3,56.99999999999999
101.8,147.0
82.7,134.0
90.8,133.0
85.0,127.0
56.6,81.0
78.6,96.0
79.5,93.0
69.1,69.0
62.8,68.0
47.9,59.0
110.2,183.0
102.0,151.0
88.9,150.0
71.0,114.99999999999999
46.3,77.0
92.0,135.0
100.2,126.0
76.4,112.99999999999999
71.1,108.0
65.8,89.0
79.3,118.0
85.9,118.0
59.9,83.0
72.3,82.0
39.7,57.99999999999999
76.3,114.99999999999999
84.9,100.0
77.3,96.0
67.7,92.0
73.1,91.0
96.5,135.0
99.6,134.0
74.5,107.0
72.1,102.0
46.0,71.0
86.8,141.0
98.6,141.0
101.7,132.0
59.9,98.0
59.0,78.0
96.2,124.0
72.6,112.00000000000001
75.7,111.00000000000001
68.3,93.0
65.3,75.0
97.5,137.0
82.1,124.0
89.8,113.99999999999999
72.8,112.00000000000001
61.6,75.0
119.3,166.0
75.7,102.0
65.2,93.0
56.4,88.0
58.7,81.0
93.2,120.0
93.4,113.99999999999999
74.7,112.00000000000001
75.6,108.0
58.4,79.0
98.6,140.0
85.8,119.0
67.9,102.0
67.3,94.0
61.5,78.0
92.4,118.0
75.6,92.0
68.8,91.0
75.1,86.0
44.3,64.0
110.1,178.0
98.0,138.0
76.2,112.99999999999999
56.2,93.0
61.0,92.0
54.5,100.0
68.7,87.0
78.2,87.0
59.8,74.0
59.5,68.0
127.0,190.0
98.6,132.0
85.5,127.0
55.9,106.0
36.1,86.0
94.1,171.0
84.5,152.0
76.0,110.00000000000001
69.6,108.0
46.9,78.0
69.1,91.0
49.3,91.0
71.9,90.0
66.7,77.0
62.0,68.0
105.0,160.0
102.7,142.0
51.9,106.0
73.9,89.0
63.1,82.0
105.8,158.0
80.2,93.0
56.5,91.0
62.4,89.0
62.3,83.0
73.0,88.0
70.0,80.0
68.2,74.0
55.8,64.0
27.9,22.0
95.0,178.0
97.8,144.0
82.7,139.0
73.9,136.0
117.6,135.0
93.3,142.0
76.7,119.0
78.0,117.0
67.6,109.00000000000001
68.3,81.0
69.3,118.0
80.5,105.0
81.0,93.0
54.9,73.0
61.4,72.0
101.9,114.99999999999999
79.9,97.0
50.3,60.0
65.1,56.99999999999999
54.5,55.00000000000001
104.2,180.0
111.9,178.0
89.6,163.0
72.5,134.0
62.7,85.0
89.5,106.0
85.9,97.0
65.5,87.0
61.0,74.0
50.7,54.0
135.4,197.0
97.0,161.0
78.1,123.0
70.0,101.0
55.8,68.0
101.9,117.0
82.5,115.99999999999999
73.6,101.0
68.9,100.0
44.8,76.0
92.1,138.0
83.6,126.0
67.3,98.0
75.4,96.0
54.2,74.0
103.7,182.0
101.4,165.0
82.9,141.0
58.4,115.99999999999999
85.1,108.0
83.2,98.0
70.2,78.0
72.6,78.0
47.7,74.0
55.9,56.00000000000001
88.5,112.00000000000001
76.7,100.0
66.6,87.0
53.2,82.0
60.3,81.0
95.8,148.0
93.3,139.0
77.2,124.0
76.0,107.0
45.1,80.0
123.3,206.99999999999997
93.9,163.0
86.4,152.0
78.3,152.0
69.1,92.0
80.5,88.0
80.7,86.0
65.5,50.0
51.3,40.0
33.7,32.0
115.5,162.0
62.6,70.0
46.0,66.0
53.6,61.0
56.9,50.0
105.7,177.0
90.2,136.0
85.8,133.0
84.2,119.0
47.5,96.0
115.2,182.0
94.2,134.0
83.0,112.00000000000001
80.1,107.0
61.6,83.0
105.7,146.0
75.2,106.0
56.7,83.0
50.3,63.0
54.1,59.0
104.1,156.0
97.8,151.0
98.4,143.0
47.9,93.0
42.1,74.0
89.6,138.0
87.6,130.0
85.7,101.0
55.8,88.0
30.6,39.0
96.1,144.0
83.1,119.0
75.9,114.99999999999999
78.1,112.99999999999999
69.9,110.00000000000001
85.5,109.00000000000001
71.0,99.0
71.0,87.0
67.2,86.0
59.1,71.0
120.3,188.0
64.6,104.0
78.9,104.0
75.0,101.0
56.4,68.0
100.2,135.0
75.3,104.0
71.1,102.0
68.9,94.0
63.5,84.0
66.3,89.0
55.3,88.0
80.9,84.0
71.9,72.0
42.1,41.0
114.7,173.0
88.0,160.0
74.5,151.0
74.8,127.0
65.2,99.0
115.3,163.0
92.4,122.0
58.3,89.0
61.6,85.0
42.6,69.0
94.1,144.0
87.6,129.0
59.7,106.0
79.0,99.0
46.1,65.0
75.5,89.0
80.8,72.0
60.2,67.0
51.9,54.0
33.9,27.0
134.1,235.0
98.2,160.0
86.3,146.0
72.5,140.0
58.0,100.0
78.8,112.99999999999999
77.0,105.0
75.2,81.0
59.0,60.0
51.0,56.99999999999999
104.2,164.0
94.8,157.0
86.6,137.0
81.7,115.99999999999999
69.7,102.0
92.7,154.0
79.4,151.0
84.7,145.0
70.0,125.0
92.4,112.00000000000001
83.1,95.0
67.8,78.0
63.6,77.0
51.9,50.0
33.2,30.0
113.9,162.0
83.9,126.0
75.7,118.0
69.4,107.0
78.1,96.0
88.6,117.0
95.3,111.00000000000001
71.8,106.0
72.0,92.0
67.4,67.0
87.2,127.0
85.2,111.00000000000001
58.7,86.0
51.2,81.0
53.6,73.0
106.0,165.0
80.5,125.0
76.8,119.0
80.3,107.0
46.9,99.0
117.8,204.0
92.4,151.0
89.2,136.0
89.6,128.0
69.2,119.0
100.7,93.0
54.5,67.0
59.5,61.0
59.4,60.0
49.1,50.0
109.8,147.0
92.4,143.0
86.0,124.0
61.3,97.0
46.6,85.0
84.1,102.0
70.8,89.0
61.7,85.0
62.7,80.0
62.8,77.0
115.2,211.0
92.3,124.0
71.0,112.00000000000001
58.5,101.0
70.3,82.0
83.4,103.0
99.1,99.0
69.8,75.0
55.1,74.0
45.9,55.00000000000001
113.6,172.0
98.4,170.0
84.8,146.0
51.3,104.0
68.6,90.0
82.5,102.0
66.8,89.0
63.3,68.0
50.8,56.99999999999999
44.6,48.0
113.9,152.0
85.5,137.0
78.9,127.0
80.6,127.0
92.1,122.0
88.9,110.00000000000001
78.4,103.0
69.4,77.0
59.3,69.0
34.2,40.0
77.1,95.0
56.8,83.0
68.7,82.0
53.2,73.0
52.9,55.00000000000001
104.8,173.0
124.5,170.0
76.2,137.0
51.4,98.0
64.8,91.0
91.2,137.0
84.8,108.0
70.3,98.0
58.4,74.0
55.2,67.0
109.7,163.0
98.7,141.0
65.9,99.0
67.4,74.0
48.1,57.99999999999999
91.7,137.0
82.3,112.00000000000001
91.1,109.00000000000001
57.4,87.0
75.7,82.0
104.5,125.0
70.6,113.99999999999999
68.8,108.0
73.6,103.0
79.2,93.0
79.4,91.0
74.5,82.0
65.1,78.0
68.6,67.0
34.1,48.0
134.0,198.0
104.6,172.0
83.9,150.0
66.0,91.0
60.3,84.0
95.6,112.99999999999999
83.3,101.0
71.7,98.0
74.0,92.0
44.9,70.0
88.0,133.0
95.7,132.0
69.3,121.0
77.2,118.0
58.6,81.0
63.0,78.0
67.6,72.0
68.0,56.99999999999999
51.5,56.99999999999999
52.4,54.0
99.5,184.0
93.5,172.0
108.0,159.0
88.1,150.0
75.1,100.0
87.1,126.0
85.4,115.99999999999999
73.7,107.0
77.7,97.0
41.5,73.0
102.1,150.0
71.2,102.0
61.4,96.0
65.5,88.0
65.6,85.0
90.7,142.0
85.6,129.0
81.0,113.99999999999999
73.5,98.0
62.7,81.0
72.3,115.99999999999999
75.8,99.0
81.8,98.0
67.8,87.0
69.5,81.0
114.5,133.0
76.9,97.0
67.0,93.0
60.4,84.0
48.9,56.00000000000001
104.0,148.0
92.3,138.0
95.5,132.0
74.3,108.0
47.7,76.0
68.1,77.0
56.0,74.0
69.6,63.0
65.4,43.0
46.0,42.0
151.8,239.0
75.8,147.0
88.4,143.0
79.6,131.0
83.1,125.0
83.3,107.0
83.0,96.0
74.0,90.0
57.9,61.0
54.9,53.0
107.7,167.0
100.7,148.0
101.4,148.0
77.5,132.0
76.0,111.00000000000001
78.2,109.00000000000001
78.9,100.0
83.7,84.0
46.4,60.0
58.1,54.0
114.9,163.0
103.5,157.0
74.6,134.0
73.3,129.0
74.0,104.0
66.0,96.0
61.8,78.0
68.8,69.0
62.6,62.0
59.3,60.0
100.6,157.0
82.3,138.0
96.2,137.0
94.6,125.0
70.1,115.99999999999999
100.8,120.0
70.2,74.0
49.6,69.0
44.0,56.99999999999999
30.9,34.0
97.5,159.0
98.6,156.0
107.1,148.0
87.7,112.00000000000001
59.4,101.0
86.8,129.0
89.2,122.0
81.5,114.99999999999999
68.3,101.0
46.6,69.0
73.6,101.0
65.6,99.0
81.0,99.0
64.1,99.0
64.0,94.0
77.5,126.0
79.2,119.0
86.6,119.0
66.0,100.0
78.1,95.0
88.3,120.0
67.2,104.0
78.6,99.0
66.0,85.0
59.3,79.0
80.7,105.0
78.2,105.0
89.2,93.0
74.0,86.0
65.1,78.0
111.0,190.0
99.2,154.0
75.8,93.0
60.2,84.0
60.5,77.0
93.2,112.00000000000001
81.3,89.0
46.7,65.0
47.3,55.00000000000001
44.3,54.0
89.4,137.0
66.2,135.0
91.6,135.0
90.0,129.0
65.2,112.00000000000001
76.1,112.99999999999999
77.7,107.0
78.2,107.0
78.2,103.0
73.3,81.0
100.7,151.0
84.3,133.0
75.1,103.0
60.5,84.0
72.7,82.0
121.4,196.0
101.3,141.0
74.4,121.0
73.4,117.0
62.8,100.0
86.1,123.0
67.5,82.0
69.2,79.0
53.8,65.0
43.7,65.0
103.4,134.0
83.9,126.0
68.0,101.0
64.4,89.0
62.8,86.0
75.6,108.0
78.4,107.0
80.7,107.0
73.3,102.0
69.7,91.0
74.5,103.0
75.5,102.0
64.8,98.0
79.4,92.0
71.6,83.0
92.8,134.0
83.6,125.0
80.6,121.0
88.2,114.99999999999999
57.6,79.0
102.4,133.0
76.3,105.0
59.7,93.0
61.3,80.0
55.4,67.0
89.4,134.0
94.5,127.0
83.6,122.0
69.8,88.0
65.3,86.0
82.8,122.0
74.7,107.0
80.9,102.0
67.2,86.0
48.5,55.00000000000001
91.9,150.0
82.8,130.0
71.1,122.0
97.2,112.99999999999999
62.5,99.0
75.2,109.00000000000001
77.3,101.0
71.1,99.0
74.6,99.0
61.9,87.0
91.9,140.0
83.5,119.0
74.8,107.0
60.0,96.0
69.3,89.0
76.2,96.0
77.2,89.0
67.4,71.0
44.8,65.0
55.6,62.0
122.1,189.0
117.6,185.0
90.6,131.0
71.8,123.0
52.9,85.0
80.5,112.00000000000001
77.0,109.00000000000001
64.8,107.0
66.4,93.0
57.2,77.0
106.7,140.0
78.4,114.99999999999999
80.9,110.00000000000001
62.1,105.0
72.5,103.0
97.4,140.0
88.7,131.0
89.8,112.00000000000001
56.4,95.0
57.0,89.0
81.1,129.0
89.3,120.0
64.0,87.0
59.7,73.0
52.9,63.0
101.4,179.0
113.7,178.0
97.7,153.0
81.4,125.0
59.4,95.0
81.6,105.0
57.6,80.0
58.6,63.0
61.8,62.0
44.7,51.0


================================================
FILE: Week1/README.md
================================================
# CODING CHALLANGE WINNER!

## Coding Challenge -- Due Date, Thursday June 22nd, 2017

This week's coding challenge is to implement **gradient descent** to find the line of best fit that predicts the relationship between
2 variables of your choice from a [kaggle](https://www.kaggle.com/datasets) dataset. By <a href="https://github.com/llSourcell/The_Math_of_Intelligence">Siraj Raval.</a>

The submission file is: <a href="https://github.com/alberduris/The_Math_of_Intelligence/blob/master/Week1/demo.ipynb">demo.ipynb</a>

## Dependencies for challenge

* numpy

## Dependencies for Full Notebook

* pandas (read the dataset)
* matplotlib (plotting)

## Live Plots

From the Github view of Jupyter Notebooks it's not possible to view the live plots, well, live. Just the last snapshot of the live plot is shown. To enjoy the live plot it is necessary to download the Jupyter Notebook and run it locally (If there's another way, tell me please :))

You can recognise a live plot with the presence of 
```
%matplotlib notebook
```
in the cell, that enables some matplotlib interactive features.

## Data

That's the least relevant thing but <a href="https://www.kaggle.com/reagentx/HLTVData">"CS:GO Dataset"</a> has been chosen.

From file 'ADRvsRating.csv' has been chosen the variables:
 - **ADR** : Average damage per round
 - **Rating** : HLTV Rating 2.0

## Overview/Summary

In this notebook, besides coding a **Gradient Descent** algorithm, other tasks are done, mainly related to visualizations.

### Visualize data

An overview of the data is done

![Data](https://github.com/alberduris/The_Math_of_Intelligence/raw/master/Week1/resources/data.png)


### SSE - Sum of Squared Error

A simple SSE algorithm for measuring error

```
def SSE(m,b,data):
    totalError = 0.0
    for i in range(numInstances):
        currentTarget = data[i,1]
        #y = mx + b
        currentOutput = m*data[i,0] + b
        #Compute squared error
        currentSquaredError = (currentTarget - currentOutput)**2
        totalError += currentSquaredError
    sse = totalError/numInstances
    return totalError
```
### Visualize data plus fitting line

An overview of the data with a fitting line

![Data plus fitting line](https://github.com/alberduris/The_Math_of_Intelligence/blob/master/Week1/resources/data_line.png)

### 3D Visualize Gradient Descent 

Each point in this two-dimensional space represents a line. The height of the function at each point is the error value for that line.

![Gradient Descent](https://github.com/alberduris/The_Math_of_Intelligence/blob/master/Week1/resources/gradient_descent_1.png)

### Live plot - Gradient Search & Intermediate lines

The current location of the **gradient descent search** and the path taken to get there and the **corresponding line** for the current search location. 

![Gradient Search & Intermediate Lines](https://github.com/alberduris/The_Math_of_Intelligence/blob/master/Week1/resources/live_plot_gs_il.png)

### Live plot - Error

The error changing as we move toward the minimum.

![Error](https://github.com/alberduris/The_Math_of_Intelligence/blob/master/Week1/resources/live_error.png)

### References

<a href="https://spin.atomicobject.com/2014/06/24/gradient-descent-linear-regression/">Siraj Raval - Youtube - Intro - The Math of Intelligence</a>

<a href="https://spin.atomicobject.com/2014/06/24/gradient-descent-linear-regression/">An Introduction to Gradient Descent and Linear Regression - MATT NEDRICH</a>


================================================
FILE: Week1/demo.ipynb
================================================
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# The Math of Intelligence - Week 1 - Coding challenge\n",
    "\n",
    "## Gradient Descent\n",
    "\n",
    "This week's coding challenge is to implement gradient descent to find the line of best fit that predicts the relationship between 2 variables from a kaggle dataset."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Dependencies"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "import numpy as np\n",
    "import pandas as pd #To read the dataset\n",
    "import matplotlib.pyplot as plt #Plotting\n",
    "import time\n",
    "from IPython import display\n",
    "%matplotlib inline"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Dataset\n",
    "\n",
    "That's the least relevant thing but <a href=\"https://www.kaggle.com/reagentx/HLTVData\">\"CS:GO Dataset\"</a> has been chosen.\n",
    "\n",
    "From file 'ADRvsRating.csv' has been chosen the variables:\n",
    " - **ADR** : Average damage per round\n",
    " - **Rating** : HLTV Rating 2.0\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Read the file, save the data as matrix, save some util variables and and give it a lookup"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style>\n",
       "    .dataframe thead tr:only-child th {\n",
       "        text-align: right;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: left;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>ADR</th>\n",
       "      <th>Rating</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>85.0</td>\n",
       "      <td>117.0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>83.5</td>\n",
       "      <td>110.0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>78.2</td>\n",
       "      <td>102.0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>68.1</td>\n",
       "      <td>97.0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>66.3</td>\n",
       "      <td>86.0</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "    ADR  Rating\n",
       "0  85.0   117.0\n",
       "1  83.5   110.0\n",
       "2  78.2   102.0\n",
       "3  68.1    97.0\n",
       "4  66.3    86.0"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dataset = pd.read_csv('ADRvsRating.csv')\n",
    "data = dataset.as_matrix()\n",
    "\n",
    "numInstances = data.shape[0]\n",
    "\n",
    "dataset.head()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Let's look at the data plotted"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<matplotlib.figure.Figure at 0x1cd1887ff98>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plt.figure(figsize=(10,5))\n",
    "plt.title('ADR vs Rating (CS:GO)')\n",
    "plt.scatter(x=data[:,0],y=data[:,1])\n",
    "plt.xlabel('ADR')\n",
    "plt.ylabel('Rating')\n",
    "plt.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We can see that there is a linear relationship between the two variables, let's find the best fitting line with **GRADIENT DESCENT**\n",
    "\n",
    "Don't forget that at the end we will be able to **predict** the *Rating* of a player given the *ADR*"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Gradient Descent\n",
    "\n",
    "Let's try to draw a line that fits through all the data points, but obviously the data is too spaced to draw a line that fits every points, so **we are going to find the BEST fitting line**\n",
    "\n",
    "Mathematically, the line will be:\n",
    "\n",
    "<img src=\"https://media.quizizz.com/resource/gs/quizizz-media/quizzes/L2FwcGhvc3RpbmdfcHJvZC9ibG9icy9BRW5CMlVvNGwxd1M2T3lQQ29DVEhHMHc4bXdySUptbXJiR1ZnSHZuWUwxc0haS2RtbjN1UWNWQWlERXBWVmVLTlBscDl6R2ozR2ZNcmVGNG9tblFpQzQzeFdvbFVNOEktUS5IenItdlY1aFU4UVdaX3E3?w=720\">\n",
    "\n",
    "In other words **we are going to find the optimal 'm' and 'b' values that defines the BEST fitting line**\n",
    "\n",
    "Then, the prediction will be as easy as given any new 'x' value plug it into our equation and compute the 'y' (the prediction!)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Error\n",
    "\n",
    "Our error metric can be understood as a **measure of closeness**\n",
    " - If the line doesn't fit at all => Error will be BIG\n",
    " - If the line fits well => Error will be SMALL\n",
    " \n",
    "Of course, we want to **reduce** the **error**, because doing that we are closer to the **BEST fitting line**"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### SSE - Sum of Squared Error\n",
    "\n",
    "There are severals ways of measure the error, we will be using SSE that corresponds to that formula:\n",
    "\n",
    "<img src=\"http://i64.tinypic.com/28tzx9g.png\">\n",
    "\n",
    "What we need to compute the SSE:\n",
    "1. The current 'm' and 'b' to know which is our current fitting line\n",
    "2. The real data, that corresponds to 'target' on the equation of the image\n",
    "\n",
    "What we will return:\n",
    "1. The error\n",
    "\n",
    "*Note: Error will be used to **measure** the **quality** of the fitting line but **IT IS NOT INVOLVED** in the **optimization process** done by Gradient Descent.*"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def SSE(m,b,data):\n",
    "    \n",
    "    totalError = 0.0\n",
    "    \n",
    "    for i in range(numInstances):\n",
    "        \n",
    "        adr = data[i,0] #Row 'i' column 'ADR'\n",
    "        rating = data[i,1] #Row 'i' column 'Rating'\n",
    "        \n",
    "        #The real rating\n",
    "        currentTarget = rating\n",
    "        \n",
    "        #Predicted rating with our current fitting line\n",
    "        #y = mx + b\n",
    "        currentOutput = m*adr + b\n",
    "        \n",
    "        #Compute squared error\n",
    "        currentSquaredError = (currentTarget - currentOutput)**2\n",
    "\n",
    "        \n",
    "        #Add it to the total error\n",
    "        totalError += currentSquaredError\n",
    "\n",
    "    sse = totalError/numInstances\n",
    "    \n",
    "    return totalError"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**Example of use:**\n",
    "\n",
    "Measure the error for the fitting line:\n",
    "\n",
    "*y = 2x + 3*"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "For the fitting line: y = 2x + 3\n",
      "SSE: 2644260.84\n"
     ]
    }
   ],
   "source": [
    "m = 2\n",
    "b = 3\n",
    "\n",
    "sse = SSE(m,b,data)\n",
    "\n",
    "print('For the fitting line: y = %sx + %s\\nSSE: %.2f' %(m,b,sse))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "It seems a BIG error... don't expect a pretty plot\n",
    "\n",
    "**Plot**\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\ne928GKVUsz6+/9UPXQHg1/rYr4cWUBnXtkLr5bVKr82a4OY5TP4K4GloGbEGaMFXG+wDybuh/TxC\n+vMfgJZ93AhtccXnAF6FNu36CrSar/EAXhGRfdCCsjcBzABiCwL2GgsC9GnpCdBq/l7SH98ILUD9\nsWkc50GrnfsngL3QfrZ/A/BT4wLReqnt01tqEFEeiVLZZvWJiAgAROQbAP5PKXWkwzW/A7BDKWVX\nN+YLIrIEwN/0lh5ElEcMzoiIMqRnwCZBy54dDmAJtEURvt+eiYj8i8EZEVGG9FWm/4K2QjQCYBmA\nq1K0/SAicsTgjIiIiMhHuCCAiIiIyEcYnBERERH5iN3mvEXhsMMOU0OHDi30MIiIiIhSWrt27adK\nqf6privq4Gzo0KFYs2ZNoYdBRERElJKIfOjmOk5rEhEREfkIgzMiIiIiH2FwRkREROQjRV1zZiUa\njWLr1q3Yv39/oYdCGSovL8fgwYMRDAYLPRQiIqK863LB2datW9G7d28MHToUIlLo4VCalFL47LPP\nsHXrVgwbNqzQwyEiIsq7LjetuX//fvTr14+BWZESEfTr14+ZTyIiKlldLjgDwMCsyPH9IyKiUtYl\ng7NC27p1K84991wce+yxOProo3HVVVfh4MGDWd3z0ksvxbBhw1BVVYWqqirceuutAIAzzzwTLS0t\naGlpwZ///OfY9Zs3b8b9998f+37NmjX42c9+ltUYDLNnz8aNN96YdPwrX/lKTu5PRERUyhic5ZhS\nCtOmTUNNTQ3eeecdvP3229i7dy+uu+66tO7T3t6edGzBggVobGxEY2NjLNB68sknEQ6HUwZn1dXV\nsYDOK//+9789vT8REVEpYHCWYytWrEB5eTm+973vAQACgQAWLlyIO++8E62trbjrrrtw5ZVXxq4/\n++yz8fzzzwMAevXqheuvvx7jx4/Hyy+/7Or5hg4dik8//RR1dXV47733UFVVhdraWtTV1eHFF19E\nVVUVFi5ciOeffx5nn302AC3z9f3vfx+nnHIKjjrqqLig7Te/+Q1GjBiB008/HRdeeKFlhsxOr169\nAADPP/88TjnlFHzrW9/CiBEjcNFFF0EpBQBYu3Ytvva1r2HcuHGYMmUKtm/f7vr+REREOReJADNn\nAuvXF3okMV1utWahrV+/HuPGjYs7dsghh2DIkCF49913HR+7b98+HH/88fj1r39teb62thZz584F\n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\nRdZLJ9G8KP/Xbm8EPDfwB24ZTZOrxpbAcuDs9lTwGUnWxzobqqoeA06g+UT+BPA8cCvW2Js1qq5m\nAY8OjDOHK/sacHX72HyNkGRv4LGqumPKIXO2GmzORkjyXuBS4FtV9Y+u4+mzJHsBT1XVrYO7hwz1\n0uDXzAR2BE6rqvnAv/AU5kjtHKmFwDzgw8D6NKdLprLGpsfX6SokOZZmqsv5K3YNGTbx+UqyHnAs\n8P1hh4fsm/icvRGbsyGSvIemMTu/qi5rdz+54qvY9udTXcXXQ7sCeyd5GLiQ5lTTSTRfX89sx8wG\nHu8mvF5aBiyrqpvb7UtomjXrbLjPAg9V1fKqehm4DPgk1tibNaqulgFzBsaZw1aSA4G9gAPqtXtO\nma/htqL54HRH+z4wG7gtyYcwZ6vF5myKdq7UmcCSqvrxwKErgQPbxwcCvxh3bH1VVUdX1eyqmksz\nWfaGqjoAuBHYtx1mzgZU1d+AR5N8pN31GeBerLNRHgF2TrJe+xpdkS9r7M0ZVVdXAl9pr6jbGXh+\nxenPSZZkD+B7wN5V9cLAoSuB/ZOsnWQezST3W7qIsU+q6q6q2rSq5rbvA8uAHdu/c9bYavAmtFMk\n+RTwW+AuXps/dQzNvLOLgc1p3ii+VFXDJkROtCS7AUdW1V5JtqT5Jm1D4Hbgy1X1Upfx9UmSHWgu\noFgLeBA4iOYDk3U2RJIfAvvRnGa6Hfg6zdwVa2xAkguA3YCNgSeBHwBXMKSu2kb3pzRX3r0AHFRV\ni7uIuysj8nU0sDbwTDvspqr6Rjv+WJp5aK/QTHu5eupzvtsNy1lVnTlw/GGaK6uftsZWj82ZJElS\nj3haU5IkqUdsziRJknrE5kySJKlHbM4kSZJ6xOZMkiSpR2zOJE2cJF9MUkm2abfnJnmxXUprSZJb\n2puQrhj/1STLk/wpyX1JjugueknvdjZnkibRIuB3NDdNXuEvVTW/qrZt9x+R5KCB4xdV1Q40K2Ic\nm2TwrueS9LaxOZM0Udp1c3cFDub1zdmrqupB4NvAYUOOPQMsBTZbg2FKmmA2Z5ImzT7ANVX1APBs\nkh1HjLsN2GbqziSbA+sAd665ECVNMpszSZNmEc2ST7Q/F40Ylynb+yW5h2aprZOr6t9rKD5JE25m\n1wFI0rgk2QjYHdg+SQEzgAJOHTJ8PrBkYPuiqjo0yS7Ar5Jc3S7sLElvK785kzRJ9gXOq6otqmpu\nVc0BHgJmDw5KMhc4AThl6hNU1R+AnwOHr/FoJU0kmzNJk2QRcPmUfZcCxwBbrbiVBnAxcEpVnT3i\neY4DDkryvjUXqqRJlarqOgZJkiS1/OZMkiSpR2zOJEmSesTmTJIkqUdsziRJknrE5kySJKlHbM4k\nSZJ6xOZMkiSpR2zOJEmSeuT/WYM2GxqkAesAAAAASUVORK5CYII=\n",
      "text/plain": [
       "<matplotlib.figure.Figure at 0x1cd18ccbb00>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig = plt.figure(figsize=(10,5))\n",
    "ax = fig.add_subplot(111)\n",
    "ax.set_title('ADR vs Rating (CS:GO)')\n",
    "ax.scatter(x=data[:,0],y=data[:,1],label='Data')\n",
    "plt.plot(data[:,0], m*data[:,0] + b,color='red',label='Our Fitting Line')\n",
    "ax.set_xlabel('ADR')\n",
    "ax.set_ylabel('Rating')\n",
    "ax.legend(loc='best')\n",
    "\n",
    "plt.show()\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Ok, ok, we are **NOT GOOD** at guessing fitting lines, that's why we are going to delegate that task to gradient descent :)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Minimizing our error - Gradient Descent\n",
    "\n",
    "<img src=\"http://www.big-data.tips/wp-content/uploads/2016/06/gradient-types.jpg\" style=\"width:500px; float:left\">\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The strategy: \n",
    "1. Create a initial line\n",
    "2. Update the line parameters in a way that makes the error SMALLER\n",
    "\n",
    "The 2nd point implies that we need **a direction**, a **way to descend the error valley**\n",
    "\n",
    "The way to go: Compute the **partial derivatives** respect to 'm' and 'b'. Get the direction that **decreases** the gradient (towards zero error) and **update 'm' and 'b' accordingly**\n",
    "\n",
    "What we need to compute the Gradient Descent:\n",
    "1. The current 'm' and 'b' to know which is our current fitting line\n",
    "2. The real data, that corresponds to 'target' on the equation of the image\n",
    "\n",
    "What will do:\n",
    "1. Partial derivatives respect to 'm' and 'b'\n",
    "\n",
    "What we will return:\n",
    "1. The new 'better' updated 'm' and 'b'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def gradient_descent_step(m,b,data):\n",
    "    \n",
    "    N = numInstances\n",
    "    m_grad = 0\n",
    "    b_grad = 0\n",
    "    \n",
    "    for i in range(N):\n",
    "\n",
    "        #Get current pair (x,y)\n",
    "        x = data[i,0]\n",
    "        y = data[i,1]\n",
    "\n",
    "        #Partial derivative respect 'm'\n",
    "        dm = -((2/N) * x * (y - (m*x + b)))\n",
    "        \n",
    "        #Partial derivative respect 'b'\n",
    "        db = - ((2/N) * (y - (m*x + b)))\n",
    "    \n",
    "        #Update gradient\n",
    "        m_grad = m_grad + dm\n",
    "        b_grad = b_grad + db\n",
    "    \n",
    "    #Set the new 'better' updated 'm' and 'b'\n",
    "    m_updated = m - 0.0001*m_grad\n",
    "    b_updated = b - 0.0001*b_grad\n",
    "    '''\n",
    "    Important note: The value '0.0001' that multiplies the 'm_grad' and 'b_grad' is the 'learning rate', but it's a concept\n",
    "    out of the scope of this challenge. For now, just leave that there and think about it like a 'smoother' of the learn, \n",
    "    to prevent overshooting, that is, an extremly fast and uncontrolled learning.\n",
    "    '''\n",
    "    \n",
    "    return m_updated,b_updated"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**Example of use:**\n",
    "\n",
    "Doing just 2 steps of GD from line:\n",
    "\n",
    "*y = 2x + 3*"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Starting line: y = 2.00x + 3.00 - Error: 2644260.84\n",
      "At step 1 - Line: y = 1.24x + 2.99 - Error: 392986.89\n",
      "At step 2 - Line: y = 1.41x + 2.99 - Error: 280130.02\n",
      "\n",
      "Best  line: y = 1.41x + 2.99 - Error: 280130.02\n"
     ]
    }
   ],
   "source": [
    "m = 2\n",
    "b = 3\n",
    "\n",
    "sse = SSE(m,b,data)\n",
    "\n",
    "print('Starting line: y = %.2fx + %.2f - Error: %.2f' %(m,b,sse))\n",
    "\n",
    "for i in range(2):\n",
    "    m,b = gradient_descent_step(m,b,data)\n",
    "    sse = SSE(m,b,data)\n",
    "    print('At step %d - Line: y = %.2fx + %.2f - Error: %.2f' %(i+1,m,b,sse))\n",
    "\n",
    "print('\\nBest  line: y = %.2fx + %.2f - Error: %.2f' %(m,b,sse))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Let's do a little function to make that repetitive process easier"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def gradient_descent_n_steps(m_starting,b_starting,data,steps): #For doing it many times in an easy way ;)\n",
    "    print('Starting line: y = %.6fx + %.6f - Error: %.6f\\n' %(m_starting,b_starting,SSE(m_starting,b_starting,data)))\n",
    "    m = m_starting\n",
    "    b = b_starting\n",
    "    display_freq = steps//10\n",
    "    for i in range(steps):\n",
    "        m,b = gradient_descent_step(m,b,data)\n",
    "        if(i % display_freq == 0):\n",
    "            sse = SSE(m,b,data)\n",
    "            print('At step %d - Line: y = %.6fx + %.6f - Error: %.6f' %(i+1,m,b,sse))\n",
    "    \n",
    "    \n",
    "    print('\\nBest  line: y = %.6fx + %.6f - Error: %.6f' %(m,b,sse))\n",
    "    return m,b"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Train\n",
    "\n",
    "Now, we only have to do *many* Gradient Descent steps and choose the last 'm' and 'b', because they will be:\n",
    "\n",
    "**The 'm' and 'b' that defines the BEST FITTING line**<br><br>\n",
    "\n",
    "<center>*Fig: Flow of GD*</center>\n",
    "\n",
    "<img src=\"http://i63.tinypic.com/wild8x.jpg\" style=\"width:600px;\">"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Hyperparams\n",
    "\n",
    "Now it's YOUR turn, define the hyperparams of the process:\n",
    "\n",
    "- Starting 'm'\n",
    "- Starting 'b'\n",
    "- Num steps\n",
    "\n",
    "Feel free to experiment with different values"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "M_STARTING = 0\n",
    "B_STARTING = 0\n",
    "NUM_STEPS = 1000"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Starting line: y = 0.000000x + 0.000000 - Error: 12515672.000000\n",
      "\n",
      "At step 1 - Line: y = 1.731325x + 0.021283 - Error: 882127.484132\n",
      "At step 101 - Line: y = 1.414829x + -0.001087 - Error: 268125.411577\n",
      "At step 201 - Line: y = 1.415057x + -0.019509 - Error: 268091.472115\n",
      "At step 301 - Line: y = 1.415286x + -0.037908 - Error: 268057.613035\n",
      "At step 401 - Line: y = 1.415513x + -0.056286 - Error: 268023.834147\n",
      "At step 501 - Line: y = 1.415741x + -0.074642 - Error: 267990.135259\n",
      "At step 601 - Line: y = 1.415968x + -0.092976 - Error: 267956.516183\n",
      "At step 701 - Line: y = 1.416195x + -0.111288 - Error: 267922.976730\n",
      "At step 801 - Line: y = 1.416422x + -0.129579 - Error: 267889.516711\n",
      "At step 901 - Line: y = 1.416649x + -0.147848 - Error: 267856.135939\n",
      "\n",
      "Best  line: y = 1.416873x + -0.165913 - Error: 267856.135939\n"
     ]
    }
   ],
   "source": [
    "m_best,b_best = gradient_descent_n_steps(M_STARTING,B_STARTING,data,NUM_STEPS)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### How does out BEST fitting line looks like? "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\nTJIkqUL+H9hg1SQqTTK5AAAAAElFTkSuQmCC\n",
      "text/plain": [
       "<matplotlib.figure.Figure at 0x1cd18cfa4a8>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "m=m_best\n",
    "b=b_best\n",
    "x = data[:,0]\n",
    "\n",
    "fig = plt.figure(figsize=(10,5))\n",
    "ax = fig.add_subplot(111)\n",
    "ax.set_title('ADR vs Rating (CS:GO)')\n",
    "ax.scatter(x=x,y=data[:,1],label='Data')\n",
    "plt.plot(x, m*x + b,color='red',label='BEST Fitting Line')\n",
    "ax.set_xlabel('ADR')\n",
    "ax.set_ylabel('Rating')\n",
    "ax.legend(loc='best')\n",
    "\n",
    "plt.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "A lot better than before :)\n",
    "\n",
    "And that's it!\n",
    "\n",
    "But hey! **Don't go** yet, we can still do some faaancy and **DOPE visualizations**\n",
    "\n",
    "*Note: All the code beyond here is out of the challenge, so you can just skip it and see the visualizations*"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "collapsed": true
   },
   "source": [
    "## Visualizing GD\n",
    "\n",
    "Each point in this two-dimensional space represents a line. The height of the function at each point is the error value for that line.\n",
    "\n",
    "When we do steps with our Gradient Descent we are moving over that surface and going downhill.\n",
    "\n",
    "Let's visualize it"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\n/fdj27ZtGBgYwJNPPmmN4wMf+AA++MEP4g/+4A/Q3t6ON7/5zZBS4p577sFf/uVfAgDuvPNOtLa2\n4oknnvA9F7sI09DQgP7+fhw/fhzZbNYam7srlVn6VSgUUCqVSMghbj7MUKs6vwiCWIaf/exnUlEU\nqarqsuu9973vlQ0NDfLZZ5+Vuq7LYrEof/WrX8nh4WGp67o8cuSITKVS8oc//KGUUsqjR4/KeDwu\nn3nmGVkqleQnP/lJqSiK/J//+R8ppZRf+MIX5Lve9S4ppZSXLl2SLS0t8qmnnpK6rsuf//znsqWl\nRWYyGSmllPfdd5/cs2ePPHnypCwUCvK+++6TDz/8sJRSyvPnz0sAy47ffiw7n/vc5+RrX/taKaWU\nr7zyimxvb5cvvPCC1DRNfvvb35ZdXV2yVCrJEydOyFtuuUWOj49bxzxz5oyUUsqvfOUrsr+/X544\ncUIKIeThw4fl9PS0zOVy8pZbbpH/9m//JlVVla+88opsbW2Vo6Oj1vPZ3NwsX3zxRamqqnznO98p\nH3zwQWtsAOTp06dXePUIgqiy2rkBfW3+F0EQy3Azzr+EEFLXdfnZz35W3nHHHbJQKMjf/OY3sr29\nXT7zzDMyn8/Lxx9/XO7cuVPOz8/L4eFh2d7eLs+ePWvNx44ePSpLpZJ87LHHZF9fnxweHpbFYlG+\n9NJLcnx8XM7MzMgdO3bIf/3Xf5W5XE4+//zzsqWlRf7Xf/2XfOaZZ+Qf/dEfycbGRvnzn/9c5nI5\n+eCDD8o//dM/laVSSZZKJQnAOobfV7FYlDMzM3J+fl4uLCxYX1NTU/Lpp5+WZ86ckU8//bTMZrOO\nx82v+fl5OTs7K/P5vBRCrP0PiCCuH+qaF5AThyA2kOnpabS1tTlS8807MtFoFP/7v/9rLX/rW9+K\ne+65B5xzRCIRvP71r8fAwIAV9vbQQw/hmWeeAQA8+eSTePOb34x7770X4XAYX/ziFz13JUz+4z/+\nA/fffz/uv/9+cM7xxje+EXfccQd++tOfWuu8//3vR09PD6LRKB544AEcPnx43ee+fft2zM7OAgAe\nf/xxfOQjH8Gdd94JRVHw3ve+F+FwGC+88AIURUG5XMaxY8egqip27dqFvXv3AgC+9a1v4Utf+hL2\n798PxhgGBwfR2tqKn/zkJ9i1axfe//73IxAI4LbbbsPb3/52x92gP/mTP8FrX/taBAIBvOtd79qQ\n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\nY1IpvxHKX3cZrY8i
Download .txt
Showing preview only (243K chars total). Download the full file or copy to clipboard to get everything.
gitextract_lqk5cqqe/

├── README.md
├── Week1/
│   ├── ADRvsRating.csv
│   ├── README.md
│   └── demo.ipynb
├── Week10/
│   ├── .ipynb_checkpoints/
│   │   └── QuantumComputing - Bell State Tomography-checkpoint.ipynb
│   ├── QuantumComputing - Bell State Tomography.ipynb
│   ├── README.md
│   └── qiskit-sdk-py-master/
│       ├── .github/
│       │   ├── ISSUE_TEMPLATE.md
│       │   └── PULL_REQUEST_TEMPLATE.md
│       ├── .gitignore
│       ├── .pylintrc
│       ├── .travis.yml
│       ├── CODEOWNERS
│       ├── CONTRIBUTING.rst
│       ├── LICENSE
│       ├── Makefile
│       ├── README.rst
│       ├── doc/
│       │   ├── Makefile
│       │   ├── conf.py
│       │   ├── contributing.rst
│       │   ├── index.rst
│       │   └── make.bat
│       ├── examples/
│       │   ├── jupyter/
│       │   │   └── quantum_state_tomography_bell_states.ipynb
│       │   ├── python/
│       │   │   ├── ghz.py
│       │   │   ├── qft.py
│       │   │   ├── rippleadd.py
│       │   │   └── teleport.py
│       │   └── qasm/
│       │       ├── entangled_registers.qasm
│       │       └── plaquette_check.qasm
│       ├── qiskit/
│       │   ├── __init__.py
│       │   ├── _classicalregister.py
│       │   ├── _compositegate.py
│       │   ├── _gate.py
│       │   ├── _instruction.py
│       │   ├── _instructionset.py
│       │   ├── _measure.py
│       │   ├── _qiskiterror.py
│       │   ├── _quantumcircuit.py
│       │   ├── _quantumprogram.py
│       │   ├── _quantumregister.py
│       │   ├── _register.py
│       │   ├── _reset.py
│       │   ├── dagcircuit/
│       │   │   ├── __init__.py
│       │   │   ├── _dagcircuit.py
│       │   │   └── _dagcircuiterror.py
│       │   ├── extensions/
│       │   │   ├── __init__.py
│       │   │   ├── _extensionerror.py
│       │   │   └── standard/
│       │   │       ├── __init__.py
│       │   │       ├── barrier.py
│       │   │       ├── ccx.py
│       │   │       ├── ch.py
│       │   │       ├── crz.py
│       │   │       ├── cswap.py
│       │   │       ├── cu1.py
│       │   │       ├── cu3.py
│       │   │       ├── cx.py
│       │   │       ├── cxbase.py
│       │   │       ├── cy.py
│       │   │       ├── cz.py
│       │   │       ├── gatestools.py
│       │   │       ├── h.py
│       │   │       ├── header.py
│       │   │       ├── iden.py
│       │   │       ├── rx.py
│       │   │       ├── ry.py
│       │   │       ├── rz.py
│       │   │       ├── s.py
│       │   │       ├── swap.py
│       │   │       ├── t.py
│       │   │       ├── u1.py
│       │   │       ├── u2.py
│       │   │       ├── u3.py
│       │   │       ├── ubase.py
│       │   │       ├── x.py
│       │   │       ├── y.py
│       │   │       └── z.py
│       │   ├── mapper/
│       │   │   ├── __init__.py
│       │   │   ├── _compiling.py
│       │   │   ├── _coupling.py
│       │   │   ├── _couplingerror.py
│       │   │   ├── _mappererror.py
│       │   │   └── _mapping.py
│       │   ├── qasm/
│       │   │   ├── __init__.py
│       │   │   ├── _node/
│       │   │   │   ├── __init__.py
│       │   │   │   ├── _barrier.py
│       │   │   │   ├── _binaryop.py
│       │   │   │   ├── _cnot.py
│       │   │   │   ├── _creg.py
│       │   │   │   ├── _customunitary.py
│       │   │   │   ├── _expressionlist.py
│       │   │   │   ├── _external.py
│       │   │   │   ├── _gate.py
│       │   │   │   ├── _gatebody.py
│       │   │   │   ├── _id.py
│       │   │   │   ├── _idlist.py
│       │   │   │   ├── _if.py
│       │   │   │   ├── _indexedid.py
│       │   │   │   ├── _intnode.py
│       │   │   │   ├── _magic.py
│       │   │   │   ├── _measure.py
│       │   │   │   ├── _node.py
│       │   │   │   ├── _nodeexception.py
│       │   │   │   ├── _opaque.py
│       │   │   │   ├── _prefix.py
│       │   │   │   ├── _primarylist.py
│       │   │   │   ├── _program.py
│       │   │   │   ├── _qreg.py
│       │   │   │   ├── _real.py
│       │   │   │   ├── _reset.py
│       │   │   │   └── _universalunitary.py
│       │   │   ├── _qasm.py
│       │   │   ├── _qasmerror.py
│       │   │   ├── _qasmlexer.py
│       │   │   ├── _qasmparser.py
│       │   │   └── libs/
│       │   │       └── qelib1.inc
│       │   ├── simulators/
│       │   │   ├── __init__.py
│       │   │   ├── _localsimulator.py
│       │   │   ├── _qasm_cpp_simulator.py
│       │   │   ├── _qasmsimulator.py
│       │   │   ├── _simulatorerror.py
│       │   │   ├── _simulatortools.py
│       │   │   └── _unitarysimulator.py
│       │   └── unroll/
│       │       ├── __init__.py
│       │       ├── _backenderror.py
│       │       ├── _circuitbackend.py
│       │       ├── _dagbackend.py
│       │       ├── _jsonbackend.py
│       │       ├── _printerbackend.py
│       │       ├── _unroller.py
│       │       ├── _unrollerbackend.py
│       │       └── _unrollererror.py
│       ├── requires-dev.txt
│       ├── requires.txt
│       ├── test/
│       │   ├── __init__.py
│       │   └── python/
│       │       ├── H2Equilibrium.txt
│       │       ├── __init__.py
│       │       ├── _random_qasm_generator.py
│       │       ├── qasm/
│       │       │   └── example.qasm
│       │       ├── qiskit
│       │       ├── test_apps.py
│       │       ├── test_jsonoutput.py
│       │       ├── test_load.json
│       │       ├── test_local_simulator.py
│       │       ├── test_qasm_python_simulator.py
│       │       ├── test_qi.py
│       │       ├── test_quantumprogram.py
│       │       ├── test_save.json
│       │       └── test_unitary_python_simulator.py
│       └── tools/
│           ├── apps/
│           │   ├── fermion.py
│           │   └── optimization.py
│           ├── qcvv/
│           │   ├── fitters.py
│           │   └── tomography.py
│           ├── qi/
│           │   ├── pauli.py
│           │   └── qi.py
│           └── visualization.py
├── Week2/
│   ├── README.md
│   ├── newtons_method_optimization.ipynb
│   └── newtons_method_root_finding.ipynb
├── Week3/
│   ├── LinearRegression-L1-Regularization.ipynb
│   ├── LinearRegression-L2-Regularization.ipynb
│   ├── LinearRegression.ipynb
│   ├── README.md
│   └── blood_fat.csv
├── Week4/
│   ├── README.md
│   ├── SOM-Word2Vec.ipynb
│   ├── SelfOrganizingMap.ipynb
│   └── som_got_embedding_lookup.txt
├── Week5/
│   ├── PCA.ipynb
│   ├── README.md
│   └── som_got_embedding_lookup.txt
├── Week6/
│   ├── NaiveBayesClassifierTextCorpus.ipynb
│   ├── README.md
│   └── data_reviews.csv
├── Week7/
│   ├── Hyperparameter_Optimization.ipynb
│   ├── README.md
│   ├── test.csv
│   └── train.csv
├── Week8/
│   ├── .ipynb_checkpoints/
│   │   └── LDA-Copy1-checkpoint.ipynb
│   ├── LDA.ipynb
│   ├── README.md
│   ├── data/
│   │   ├── doc0.txt
│   │   ├── doc1.txt
│   │   ├── doc10.txt
│   │   ├── doc100.txt
│   │   ├── doc1000.txt
│   │   ├── doc1001.txt
│   │   ├── doc1002.txt
│   │   ├── doc1003.txt
│   │   ├── doc1004.txt
│   │   ├── doc1005.txt
│   │   ├── doc1006.txt
│   │   ├── doc1007.txt
│   │   ├── doc1008.txt
│   │   ├── doc1009.txt
│   │   ├── doc101.txt
│   │   ├── doc1010.txt
│   │   ├── doc1011.txt
│   │   ├── doc1012.txt
│   │   ├── doc1013.txt
│   │   ├── doc1014.txt
│   │   ├── doc1015.txt
│   │   ├── doc1016.txt
│   │   ├── doc1017.txt
│   │   ├── doc1018.txt
│   │   ├── doc1019.txt
│   │   ├── doc102.txt
│   │   ├── doc1020.txt
│   │   ├── doc1021.txt
│   │   ├── doc1022.txt
│   │   ├── doc1023.txt
│   │   ├── doc1024.txt
│   │   ├── doc1025.txt
│   │   ├── doc1026.txt
│   │   ├── doc1027.txt
│   │   ├── doc1028.txt
│   │   ├── doc1029.txt
│   │   ├── doc103.txt
│   │   ├── doc1030.txt
│   │   ├── doc1031.txt
│   │   ├── doc1032.txt
│   │   ├── doc1033.txt
│   │   ├── doc1034.txt
│   │   ├── doc1035.txt
│   │   ├── doc1036.txt
│   │   ├── doc1037.txt
│   │   ├── doc1038.txt
│   │   ├── doc1039.txt
│   │   ├── doc104.txt
│   │   ├── doc1040.txt
│   │   ├── doc1041.txt
│   │   ├── doc1042.txt
│   │   ├── doc1043.txt
│   │   ├── doc1044.txt
│   │   ├── doc1045.txt
│   │   ├── doc1046.txt
│   │   ├── doc1047.txt
│   │   ├── doc1048.txt
│   │   ├── doc1049.txt
│   │   ├── doc105.txt
│   │   ├── doc1050.txt
│   │   ├── doc1051.txt
│   │   ├── doc1052.txt
│   │   ├── doc1053.txt
│   │   ├── doc1054.txt
│   │   ├── doc1055.txt
│   │   ├── doc1056.txt
│   │   ├── doc1057.txt
│   │   ├── doc1058.txt
│   │   ├── doc1059.txt
│   │   ├── doc106.txt
│   │   ├── doc1060.txt
│   │   ├── doc1061.txt
│   │   ├── doc1062.txt
│   │   ├── doc1063.txt
│   │   ├── doc1064.txt
│   │   ├── doc1065.txt
│   │   ├── doc1066.txt
│   │   ├── doc1067.txt
│   │   ├── doc1068.txt
│   │   ├── doc1069.txt
│   │   ├── doc107.txt
│   │   ├── doc1070.txt
│   │   ├── doc1071.txt
│   │   ├── doc1072.txt
│   │   ├── doc1073.txt
│   │   ├── doc1074.txt
│   │   ├── doc1075.txt
│   │   ├── doc1076.txt
│   │   ├── doc1077.txt
│   │   ├── doc1078.txt
│   │   ├── doc1079.txt
│   │   ├── doc108.txt
│   │   ├── doc1080.txt
│   │   ├── doc1081.txt
│   │   ├── doc1082.txt
│   │   ├── doc1083.txt
│   │   ├── doc1084.txt
│   │   ├── doc1085.txt
│   │   ├── doc1086.txt
│   │   ├── doc1087.txt
│   │   ├── doc1088.txt
│   │   ├── doc1089.txt
│   │   ├── doc109.txt
│   │   ├── doc1090.txt
│   │   ├── doc1091.txt
│   │   ├── doc1092.txt
│   │   ├── doc1093.txt
│   │   ├── doc1094.txt
│   │   ├── doc1095.txt
│   │   ├── doc1096.txt
│   │   ├── doc1097.txt
│   │   ├── doc1098.txt
│   │   ├── doc1099.txt
│   │   ├── doc11.txt
│   │   ├── doc110.txt
│   │   ├── doc1100.txt
│   │   ├── doc1101.txt
│   │   ├── doc1102.txt
│   │   ├── doc1103.txt
│   │   ├── doc1104.txt
│   │   ├── doc1105.txt
│   │   ├── doc1106.txt
│   │   ├── doc1107.txt
│   │   ├── doc1108.txt
│   │   ├── doc1109.txt
│   │   ├── doc111.txt
│   │   ├── doc1110.txt
│   │   ├── doc1111.txt
│   │   ├── doc1112.txt
│   │   ├── doc1113.txt
│   │   ├── doc1114.txt
│   │   ├── doc1115.txt
│   │   ├── doc1116.txt
│   │   ├── doc1117.txt
│   │   ├── doc1118.txt
│   │   ├── doc1119.txt
│   │   ├── doc112.txt
│   │   ├── doc1120.txt
│   │   ├── doc1121.txt
│   │   ├── doc1122.txt
│   │   ├── doc1123.txt
│   │   ├── doc1124.txt
│   │   ├── doc1125.txt
│   │   ├── doc1126.txt
│   │   ├── doc1127.txt
│   │   ├── doc1128.txt
│   │   ├── doc1129.txt
│   │   ├── doc113.txt
│   │   ├── doc1130.txt
│   │   ├── doc1131.txt
│   │   ├── doc1132.txt
│   │   ├── doc1133.txt
│   │   ├── doc1134.txt
│   │   ├── doc1135.txt
│   │   ├── doc1136.txt
│   │   ├── doc1137.txt
│   │   ├── doc1138.txt
│   │   ├── doc1139.txt
│   │   ├── doc114.txt
│   │   ├── doc1140.txt
│   │   ├── doc1141.txt
│   │   ├── doc1142.txt
│   │   ├── doc1143.txt
│   │   ├── doc1144.txt
│   │   ├── doc1145.txt
│   │   ├── doc1146.txt
│   │   ├── doc1147.txt
│   │   ├── doc1148.txt
│   │   ├── doc1149.txt
│   │   ├── doc115.txt
│   │   ├── doc1150.txt
│   │   ├── doc1151.txt
│   │   ├── doc1152.txt
│   │   ├── doc1153.txt
│   │   ├── doc1154.txt
│   │   ├── doc1155.txt
│   │   ├── doc1156.txt
│   │   ├── doc1157.txt
│   │   ├── doc1158.txt
│   │   ├── doc1159.txt
│   │   ├── doc116.txt
│   │   ├── doc1160.txt
│   │   ├── doc1161.txt
│   │   ├── doc1162.txt
│   │   ├── doc1163.txt
│   │   ├── doc1164.txt
│   │   ├── doc1165.txt
│   │   ├── doc1166.txt
│   │   ├── doc1167.txt
│   │   ├── doc1168.txt
│   │   ├── doc1169.txt
│   │   ├── doc117.txt
│   │   ├── doc1170.txt
│   │   ├── doc1171.txt
│   │   ├── doc1172.txt
│   │   ├── doc1173.txt
│   │   ├── doc1174.txt
│   │   ├── doc1175.txt
│   │   ├── doc1176.txt
│   │   ├── doc1177.txt
│   │   ├── doc1178.txt
│   │   ├── doc1179.txt
│   │   ├── doc118.txt
│   │   ├── doc1180.txt
│   │   ├── doc1181.txt
│   │   ├── doc1182.txt
│   │   ├── doc1183.txt
│   │   ├── doc1184.txt
│   │   ├── doc1185.txt
│   │   ├── doc1186.txt
│   │   ├── doc1187.txt
│   │   ├── doc1188.txt
│   │   ├── doc1189.txt
│   │   ├── doc119.txt
│   │   ├── doc1190.txt
│   │   ├── doc1191.txt
│   │   ├── doc1192.txt
│   │   ├── doc1193.txt
│   │   ├── doc1194.txt
│   │   ├── doc1195.txt
│   │   ├── doc1196.txt
│   │   ├── doc1197.txt
│   │   ├── doc1198.txt
│   │   ├── doc1199.txt
│   │   ├── doc12.txt
│   │   ├── doc120.txt
│   │   ├── doc1200.txt
│   │   ├── doc1201.txt
│   │   ├── doc1202.txt
│   │   ├── doc1203.txt
│   │   ├── doc1204.txt
│   │   ├── doc1205.txt
│   │   ├── doc1206.txt
│   │   ├── doc1207.txt
│   │   ├── doc1208.txt
│   │   ├── doc1209.txt
│   │   ├── doc121.txt
│   │   ├── doc1210.txt
│   │   ├── doc1211.txt
│   │   ├── doc1212.txt
│   │   ├── doc1213.txt
│   │   ├── doc1214.txt
│   │   ├── doc1215.txt
│   │   ├── doc1216.txt
│   │   ├── doc1217.txt
│   │   ├── doc1218.txt
│   │   ├── doc1219.txt
│   │   ├── doc122.txt
│   │   ├── doc1220.txt
│   │   ├── doc1221.txt
│   │   ├── doc1222.txt
│   │   ├── doc1223.txt
│   │   ├── doc1224.txt
│   │   ├── doc1225.txt
│   │   ├── doc1226.txt
│   │   ├── doc1227.txt
│   │   ├── doc1228.txt
│   │   ├── doc1229.txt
│   │   ├── doc123.txt
│   │   ├── doc1230.txt
│   │   ├── doc1231.txt
│   │   ├── doc1232.txt
│   │   ├── doc1233.txt
│   │   ├── doc1234.txt
│   │   ├── doc1235.txt
│   │   ├── doc1236.txt
│   │   ├── doc1237.txt
│   │   ├── doc1238.txt
│   │   ├── doc1239.txt
│   │   ├── doc124.txt
│   │   ├── doc1240.txt
│   │   ├── doc1241.txt
│   │   ├── doc1242.txt
│   │   ├── doc1243.txt
│   │   ├── doc1244.txt
│   │   ├── doc1245.txt
│   │   ├── doc1246.txt
│   │   ├── doc1247.txt
│   │   ├── doc1248.txt
│   │   ├── doc1249.txt
│   │   ├── doc125.txt
│   │   ├── doc1250.txt
│   │   ├── doc1251.txt
│   │   ├── doc1252.txt
│   │   ├── doc1253.txt
│   │   ├── doc1254.txt
│   │   ├── doc1255.txt
│   │   ├── doc1256.txt
│   │   ├── doc1257.txt
│   │   ├── doc1258.txt
│   │   ├── doc1259.txt
│   │   ├── doc126.txt
│   │   ├── doc1260.txt
│   │   ├── doc1261.txt
│   │   ├── doc1262.txt
│   │   ├── doc1263.txt
│   │   ├── doc1264.txt
│   │   ├── doc1265.txt
│   │   ├── doc1266.txt
│   │   ├── doc1267.txt
│   │   ├── doc1268.txt
│   │   ├── doc1269.txt
│   │   ├── doc127.txt
│   │   ├── doc1270.txt
│   │   ├── doc1271.txt
│   │   ├── doc1272.txt
│   │   ├── doc1273.txt
│   │   ├── doc1274.txt
│   │   ├── doc1275.txt
│   │   ├── doc1276.txt
│   │   ├── doc1277.txt
│   │   ├── doc1278.txt
│   │   ├── doc1279.txt
│   │   ├── doc128.txt
│   │   ├── doc1280.txt
│   │   ├── doc1281.txt
│   │   ├── doc1282.txt
│   │   ├── doc1283.txt
│   │   ├── doc1284.txt
│   │   ├── doc1285.txt
│   │   ├── doc1286.txt
│   │   ├── doc1287.txt
│   │   ├── doc1288.txt
│   │   ├── doc1289.txt
│   │   ├── doc129.txt
│   │   ├── doc1290.txt
│   │   ├── doc1291.txt
│   │   ├── doc1292.txt
│   │   ├── doc1293.txt
│   │   ├── doc1294.txt
│   │   ├── doc1295.txt
│   │   ├── doc1296.txt
│   │   ├── doc1297.txt
│   │   ├── doc1298.txt
│   │   ├── doc1299.txt
│   │   ├── doc13.txt
│   │   ├── doc130.txt
│   │   ├── doc1300.txt
│   │   ├── doc1301.txt
│   │   ├── doc1302.txt
│   │   ├── doc1303.txt
│   │   ├── doc1304.txt
│   │   ├── doc1305.txt
│   │   ├── doc1306.txt
│   │   ├── doc1307.txt
│   │   ├── doc1308.txt
│   │   ├── doc1309.txt
│   │   ├── doc131.txt
│   │   ├── doc1310.txt
│   │   ├── doc1311.txt
│   │   ├── doc1312.txt
│   │   ├── doc1313.txt
│   │   ├── doc1314.txt
│   │   ├── doc1315.txt
│   │   ├── doc1316.txt
│   │   ├── doc1317.txt
│   │   ├── doc1318.txt
│   │   ├── doc1319.txt
│   │   ├── doc132.txt
│   │   ├── doc1320.txt
│   │   ├── doc1321.txt
│   │   ├── doc1322.txt
│   │   ├── doc1323.txt
│   │   ├── doc1324.txt
│   │   ├── doc1325.txt
│   │   ├── doc1326.txt
│   │   ├── doc1327.txt
│   │   ├── doc1328.txt
│   │   ├── doc1329.txt
│   │   ├── doc133.txt
│   │   ├── doc1330.txt
│   │   ├── doc1331.txt
│   │   ├── doc1332.txt
│   │   ├── doc1333.txt
│   │   ├── doc1334.txt
│   │   ├── doc1335.txt
│   │   ├── doc1336.txt
│   │   ├── doc1337.txt
│   │   ├── doc1338.txt
│   │   ├── doc1339.txt
│   │   ├── doc134.txt
│   │   ├── doc1340.txt
│   │   ├── doc1341.txt
│   │   ├── doc1342.txt
│   │   ├── doc1343.txt
│   │   ├── doc1344.txt
│   │   ├── doc1345.txt
│   │   ├── doc1346.txt
│   │   ├── doc1347.txt
│   │   ├── doc1348.txt
│   │   ├── doc1349.txt
│   │   ├── doc135.txt
│   │   ├── doc1350.txt
│   │   ├── doc1351.txt
│   │   ├── doc1352.txt
│   │   ├── doc1353.txt
│   │   ├── doc1354.txt
│   │   ├── doc1355.txt
│   │   ├── doc1356.txt
│   │   ├── doc1357.txt
│   │   ├── doc1358.txt
│   │   ├── doc1359.txt
│   │   ├── doc136.txt
│   │   ├── doc1360.txt
│   │   ├── doc1361.txt
│   │   ├── doc1362.txt
│   │   ├── doc1363.txt
│   │   ├── doc1364.txt
│   │   ├── doc1365.txt
│   │   ├── doc1366.txt
│   │   ├── doc1367.txt
│   │   ├── doc1368.txt
│   │   ├── doc1369.txt
│   │   ├── doc137.txt
│   │   ├── doc1370.txt
│   │   ├── doc1371.txt
│   │   ├── doc1372.txt
│   │   ├── doc1373.txt
│   │   ├── doc1374.txt
│   │   ├── doc1375.txt
│   │   ├── doc1376.txt
│   │   ├── doc1377.txt
│   │   ├── doc1378.txt
│   │   ├── doc1379.txt
│   │   ├── doc138.txt
│   │   ├── doc1380.txt
│   │   ├── doc1381.txt
│   │   ├── doc1382.txt
│   │   ├── doc1383.txt
│   │   ├── doc1384.txt
│   │   ├── doc1385.txt
│   │   ├── doc1386.txt
│   │   ├── doc1387.txt
│   │   ├── doc1388.txt
│   │   ├── doc1389.txt
│   │   ├── doc139.txt
│   │   ├── doc1390.txt
│   │   ├── doc1391.txt
│   │   ├── doc1392.txt
│   │   ├── doc1393.txt
│   │   ├── doc1394.txt
│   │   ├── doc1395.txt
│   │   ├── doc1396.txt
│   │   ├── doc1397.txt
│   │   ├── doc1398.txt
│   │   ├── doc1399.txt
│   │   ├── doc14.txt
│   │   ├── doc140.txt
│   │   ├── doc1400.txt
│   │   ├── doc1401.txt
│   │   ├── doc1402.txt
│   │   ├── doc1403.txt
│   │   ├── doc1404.txt
│   │   ├── doc1405.txt
│   │   ├── doc1406.txt
│   │   ├── doc1407.txt
│   │   ├── doc1408.txt
│   │   ├── doc1409.txt
│   │   ├── doc141.txt
│   │   ├── doc1410.txt
│   │   ├── doc1411.txt
│   │   ├── doc1412.txt
│   │   ├── doc1413.txt
│   │   ├── doc1414.txt
│   │   ├── doc1415.txt
│   │   ├── doc1416.txt
│   │   ├── doc1417.txt
│   │   ├── doc1418.txt
│   │   ├── doc1419.txt
│   │   ├── doc142.txt
│   │   ├── doc1420.txt
│   │   ├── doc1421.txt
│   │   ├── doc1422.txt
│   │   ├── doc1423.txt
│   │   ├── doc1424.txt
│   │   ├── doc1425.txt
│   │   ├── doc1426.txt
│   │   ├── doc1427.txt
│   │   ├── doc1428.txt
│   │   ├── doc1429.txt
│   │   ├── doc143.txt
│   │   ├── doc1430.txt
│   │   ├── doc1431.txt
│   │   ├── doc1432.txt
│   │   ├── doc1433.txt
│   │   ├── doc1434.txt
│   │   ├── doc1435.txt
│   │   ├── doc1436.txt
│   │   ├── doc1437.txt
│   │   ├── doc1438.txt
│   │   ├── doc1439.txt
│   │   ├── doc144.txt
│   │   ├── doc1440.txt
│   │   ├── doc1441.txt
│   │   ├── doc1442.txt
│   │   ├── doc1443.txt
│   │   ├── doc1444.txt
│   │   ├── doc1445.txt
│   │   ├── doc1446.txt
│   │   ├── doc1447.txt
│   │   ├── doc1448.txt
│   │   ├── doc1449.txt
│   │   ├── doc145.txt
│   │   ├── doc1450.txt
│   │   ├── doc1451.txt
│   │   ├── doc1452.txt
│   │   ├── doc1453.txt
│   │   ├── doc1454.txt
│   │   ├── doc1455.txt
│   │   ├── doc1456.txt
│   │   ├── doc1457.txt
│   │   ├── doc1458.txt
│   │   ├── doc1459.txt
│   │   ├── doc146.txt
│   │   ├── doc1460.txt
│   │   ├── doc1461.txt
│   │   ├── doc1462.txt
│   │   ├── doc1463.txt
│   │   ├── doc1464.txt
│   │   ├── doc1465.txt
│   │   ├── doc1466.txt
│   │   ├── doc1467.txt
│   │   ├── doc1468.txt
│   │   ├── doc1469.txt
│   │   ├── doc147.txt
│   │   ├── doc1470.txt
│   │   ├── doc1471.txt
│   │   ├── doc1472.txt
│   │   ├── doc1473.txt
│   │   ├── doc1474.txt
│   │   ├── doc1475.txt
│   │   ├── doc1476.txt
│   │   ├── doc1477.txt
│   │   ├── doc1478.txt
│   │   ├── doc1479.txt
│   │   ├── doc148.txt
│   │   ├── doc1480.txt
│   │   ├── doc1481.txt
│   │   ├── doc1482.txt
│   │   ├── doc1483.txt
│   │   ├── doc1484.txt
│   │   ├── doc1485.txt
│   │   ├── doc1486.txt
│   │   ├── doc1487.txt
│   │   ├── doc1488.txt
│   │   ├── doc1489.txt
│   │   ├── doc149.txt
│   │   ├── doc1490.txt
│   │   ├── doc1491.txt
│   │   ├── doc1492.txt
│   │   ├── doc1493.txt
│   │   ├── doc1494.txt
│   │   ├── doc1495.txt
│   │   ├── doc1496.txt
│   │   ├── doc1497.txt
│   │   ├── doc1498.txt
│   │   ├── doc1499.txt
│   │   ├── doc15.txt
│   │   ├── doc150.txt
│   │   ├── doc1500.txt
│   │   ├── doc1501.txt
│   │   ├── doc1502.txt
│   │   ├── doc1503.txt
│   │   ├── doc1504.txt
│   │   ├── doc1505.txt
│   │   ├── doc1506.txt
│   │   ├── doc1507.txt
│   │   ├── doc1508.txt
│   │   ├── doc1509.txt
│   │   ├── doc151.txt
│   │   ├── doc1510.txt
│   │   ├── doc1511.txt
│   │   ├── doc1512.txt
│   │   ├── doc1513.txt
│   │   ├── doc1514.txt
│   │   ├── doc1515.txt
│   │   ├── doc1516.txt
│   │   ├── doc1517.txt
│   │   ├── doc1518.txt
│   │   ├── doc1519.txt
│   │   ├── doc152.txt
│   │   ├── doc1520.txt
│   │   ├── doc1521.txt
│   │   ├── doc1522.txt
│   │   ├── doc1523.txt
│   │   ├── doc1524.txt
│   │   ├── doc1525.txt
│   │   ├── doc1526.txt
│   │   ├── doc1527.txt
│   │   ├── doc1528.txt
│   │   ├── doc1529.txt
│   │   ├── doc153.txt
│   │   ├── doc1530.txt
│   │   ├── doc1531.txt
│   │   ├── doc1532.txt
│   │   ├── doc1533.txt
│   │   ├── doc1534.txt
│   │   ├── doc1535.txt
│   │   ├── doc1536.txt
│   │   ├── doc1537.txt
│   │   ├── doc1538.txt
│   │   ├── doc1539.txt
│   │   ├── doc154.txt
│   │   ├── doc1540.txt
│   │   ├── doc1541.txt
│   │   ├── doc1542.txt
│   │   ├── doc1543.txt
│   │   ├── doc1544.txt
│   │   ├── doc1545.txt
│   │   ├── doc1546.txt
│   │   ├── doc1547.txt
│   │   ├── doc1548.txt
│   │   ├── doc1549.txt
│   │   ├── doc155.txt
│   │   ├── doc1550.txt
│   │   ├── doc1551.txt
│   │   ├── doc1552.txt
│   │   ├── doc1553.txt
│   │   ├── doc1554.txt
│   │   ├── doc1555.txt
│   │   ├── doc1556.txt
│   │   ├── doc1557.txt
│   │   ├── doc1558.txt
│   │   ├── doc1559.txt
│   │   ├── doc156.txt
│   │   ├── doc1560.txt
│   │   ├── doc1561.txt
│   │   ├── doc1562.txt
│   │   ├── doc1563.txt
│   │   ├── doc1564.txt
│   │   ├── doc1565.txt
│   │   ├── doc1566.txt
│   │   ├── doc1567.txt
│   │   ├── doc1568.txt
│   │   ├── doc1569.txt
│   │   ├── doc157.txt
│   │   ├── doc1570.txt
│   │   ├── doc1571.txt
│   │   ├── doc1572.txt
│   │   ├── doc1573.txt
│   │   ├── doc1574.txt
│   │   ├── doc1575.txt
│   │   ├── doc1576.txt
│   │   ├── doc1577.txt
│   │   ├── doc1578.txt
│   │   ├── doc1579.txt
│   │   ├── doc158.txt
│   │   ├── doc1580.txt
│   │   ├── doc1581.txt
│   │   ├── doc1582.txt
│   │   ├── doc1583.txt
│   │   ├── doc1584.txt
│   │   ├── doc1585.txt
│   │   ├── doc1586.txt
│   │   ├── doc1587.txt
│   │   ├── doc1588.txt
│   │   ├── doc1589.txt
│   │   ├── doc159.txt
│   │   ├── doc1590.txt
│   │   ├── doc1591.txt
│   │   ├── doc1592.txt
│   │   ├── doc1593.txt
│   │   ├── doc1594.txt
│   │   ├── doc1595.txt
│   │   ├── doc1596.txt
│   │   ├── doc1597.txt
│   │   ├── doc1598.txt
│   │   ├── doc1599.txt
│   │   ├── doc16.txt
│   │   ├── doc160.txt
│   │   ├── doc1600.txt
│   │   ├── doc1601.txt
│   │   ├── doc1602.txt
│   │   ├── doc1603.txt
│   │   ├── doc1604.txt
│   │   ├── doc1605.txt
│   │   ├── doc1606.txt
│   │   ├── doc1607.txt
│   │   ├── doc1608.txt
│   │   ├── doc1609.txt
│   │   ├── doc161.txt
│   │   ├── doc1610.txt
│   │   ├── doc1611.txt
│   │   ├── doc1612.txt
│   │   ├── doc1613.txt
│   │   ├── doc1614.txt
│   │   ├── doc1615.txt
│   │   ├── doc1616.txt
│   │   ├── doc1617.txt
│   │   ├── doc1618.txt
│   │   ├── doc1619.txt
│   │   ├── doc162.txt
│   │   ├── doc1620.txt
│   │   ├── doc1621.txt
│   │   ├── doc1622.txt
│   │   ├── doc1623.txt
│   │   ├── doc1624.txt
│   │   ├── doc1625.txt
│   │   ├── doc1626.txt
│   │   ├── doc1627.txt
│   │   ├── doc1628.txt
│   │   ├── doc1629.txt
│   │   ├── doc163.txt
│   │   ├── doc1630.txt
│   │   ├── doc1631.txt
│   │   ├── doc1632.txt
│   │   ├── doc1633.txt
│   │   ├── doc1634.txt
│   │   ├── doc1635.txt
│   │   ├── doc1636.txt
│   │   ├── doc1637.txt
│   │   ├── doc1638.txt
│   │   ├── doc1639.txt
│   │   ├── doc164.txt
│   │   ├── doc1640.txt
│   │   ├── doc1641.txt
│   │   ├── doc1642.txt
│   │   ├── doc1643.txt
│   │   ├── doc1644.txt
│   │   ├── doc1645.txt
│   │   ├── doc1646.txt
│   │   ├── doc1647.txt
│   │   ├── doc1648.txt
│   │   ├── doc1649.txt
│   │   ├── doc165.txt
│   │   ├── doc1650.txt
│   │   ├── doc1651.txt
│   │   ├── doc1652.txt
│   │   ├── doc1653.txt
│   │   ├── doc1654.txt
│   │   ├── doc1655.txt
│   │   ├── doc1656.txt
│   │   ├── doc1657.txt
│   │   ├── doc1658.txt
│   │   ├── doc1659.txt
│   │   ├── doc166.txt
│   │   ├── doc1660.txt
│   │   ├── doc1661.txt
│   │   ├── doc1662.txt
│   │   ├── doc1663.txt
│   │   ├── doc1664.txt
│   │   ├── doc1665.txt
│   │   ├── doc1666.txt
│   │   ├── doc1667.txt
│   │   ├── doc1668.txt
│   │   ├── doc1669.txt
│   │   ├── doc167.txt
│   │   ├── doc1670.txt
│   │   ├── doc1671.txt
│   │   ├── doc1672.txt
│   │   ├── doc1673.txt
│   │   ├── doc1674.txt
│   │   ├── doc1675.txt
│   │   ├── doc1676.txt
│   │   ├── doc1677.txt
│   │   ├── doc1678.txt
│   │   ├── doc1679.txt
│   │   ├── doc168.txt
│   │   ├── doc1680.txt
│   │   ├── doc1681.txt
│   │   ├── doc1682.txt
│   │   ├── doc1683.txt
│   │   ├── doc1684.txt
│   │   ├── doc1685.txt
│   │   ├── doc1686.txt
│   │   ├── doc1687.txt
│   │   ├── doc1688.txt
│   │   ├── doc1689.txt
│   │   ├── doc169.txt
│   │   ├── doc1690.txt
│   │   ├── doc1691.txt
│   │   ├── doc1692.txt
│   │   ├── doc1693.txt
│   │   ├── doc1694.txt
│   │   ├── doc1695.txt
│   │   ├── doc1696.txt
│   │   ├── doc1697.txt
│   │   ├── doc1698.txt
│   │   ├── doc1699.txt
│   │   ├── doc17.txt
│   │   ├── doc170.txt
│   │   ├── doc1700.txt
│   │   ├── doc1701.txt
│   │   ├── doc1702.txt
│   │   ├── doc1703.txt
│   │   ├── doc1704.txt
│   │   ├── doc1705.txt
│   │   ├── doc1706.txt
│   │   ├── doc1707.txt
│   │   ├── doc1708.txt
│   │   ├── doc1709.txt
│   │   ├── doc171.txt
│   │   ├── doc1710.txt
│   │   ├── doc1711.txt
│   │   ├── doc1712.txt
│   │   ├── doc1713.txt
│   │   ├── doc1714.txt
│   │   ├── doc1715.txt
│   │   ├── doc1716.txt
│   │   ├── doc1717.txt
│   │   ├── doc1718.txt
│   │   ├── doc1719.txt
│   │   ├── doc172.txt
│   │   ├── doc1720.txt
│   │   ├── doc1721.txt
│   │   ├── doc1722.txt
│   │   ├── doc1723.txt
│   │   ├── doc1724.txt
│   │   ├── doc1725.txt
│   │   ├── doc1726.txt
│   │   ├── doc1727.txt
│   │   ├── doc1728.txt
│   │   ├── doc1729.txt
│   │   ├── doc173.txt
│   │   ├── doc1730.txt
│   │   ├── doc1731.txt
│   │   ├── doc1732.txt
│   │   ├── doc1733.txt
│   │   ├── doc1734.txt
│   │   ├── doc1735.txt
│   │   ├── doc1736.txt
│   │   ├── doc1737.txt
│   │   ├── doc1738.txt
│   │   ├── doc1739.txt
│   │   ├── doc174.txt
│   │   ├── doc1740.txt
│   │   ├── doc1741.txt
│   │   ├── doc1742.txt
│   │   ├── doc1743.txt
│   │   ├── doc1744.txt
│   │   ├── doc1745.txt
│   │   ├── doc1746.txt
│   │   ├── doc1747.txt
│   │   ├── doc1748.txt
│   │   ├── doc1749.txt
│   │   ├── doc175.txt
│   │   ├── doc1750.txt
│   │   ├── doc1751.txt
│   │   ├── doc1752.txt
│   │   ├── doc1753.txt
│   │   ├── doc1754.txt
│   │   ├── doc1755.txt
│   │   ├── doc1756.txt
│   │   ├── doc1757.txt
│   │   ├── doc1758.txt
│   │   ├── doc1759.txt
│   │   ├── doc176.txt
│   │   ├── doc1760.txt
│   │   ├── doc1761.txt
│   │   ├── doc1762.txt
│   │   ├── doc1763.txt
│   │   ├── doc1764.txt
│   │   ├── doc1765.txt
│   │   ├── doc1766.txt
│   │   ├── doc1767.txt
│   │   ├── doc1768.txt
│   │   ├── doc1769.txt
│   │   ├── doc177.txt
│   │   ├── doc1770.txt
│   │   ├── doc1771.txt
│   │   ├── doc1772.txt
│   │   ├── doc1773.txt
│   │   ├── doc1774.txt
│   │   ├── doc1775.txt
│   │   ├── doc1776.txt
│   │   ├── doc1777.txt
│   │   ├── doc1778.txt
│   │   ├── doc1779.txt
│   │   ├── doc178.txt
│   │   ├── doc1780.txt
│   │   ├── doc1781.txt
│   │   ├── doc1782.txt
│   │   ├── doc1783.txt
│   │   ├── doc1784.txt
│   │   ├── doc1785.txt
│   │   ├── doc1786.txt
│   │   ├── doc1787.txt
│   │   ├── doc1788.txt
│   │   ├── doc1789.txt
│   │   ├── doc179.txt
│   │   ├── doc1790.txt
│   │   ├── doc1791.txt
│   │   ├── doc1792.txt
│   │   ├── doc1793.txt
│   │   ├── doc1794.txt
│   │   ├── doc1795.txt
│   │   ├── doc1796.txt
│   │   ├── doc1797.txt
│   │   ├── doc1798.txt
│   │   ├── doc1799.txt
│   │   ├── doc18.txt
│   │   ├── doc180.txt
│   │   ├── doc1800.txt
│   │   ├── doc1801.txt
│   │   ├── doc1802.txt
│   │   ├── doc1803.txt
│   │   ├── doc1804.txt
│   │   ├── doc1805.txt
│   │   ├── doc1806.txt
│   │   ├── doc1807.txt
│   │   ├── doc1808.txt
│   │   ├── doc1809.txt
│   │   ├── doc181.txt
│   │   ├── doc1810.txt
│   │   ├── doc1811.txt
│   │   ├── doc1812.txt
│   │   ├── doc1813.txt
│   │   ├── doc1814.txt
│   │   ├── doc1815.txt
│   │   ├── doc1816.txt
│   │   ├── doc1817.txt
│   │   ├── doc1818.txt
│   │   ├── doc1819.txt
│   │   ├── doc182.txt
│   │   ├── doc1820.txt
│   │   ├── doc1821.txt
│   │   ├── doc1822.txt
│   │   ├── doc1823.txt
│   │   ├── doc1824.txt
│   │   ├── doc1825.txt
│   │   ├── doc1826.txt
│   │   ├── doc1827.txt
│   │   ├── doc1828.txt
│   │   ├── doc1829.txt
│   │   ├── doc183.txt
│   │   ├── doc1830.txt
│   │   ├── doc1831.txt
│   │   ├── doc1832.txt
│   │   ├── doc1833.txt
│   │   ├── doc1834.txt
│   │   ├── doc1835.txt
│   │   ├── doc1836.txt
│   │   ├── doc1837.txt
│   │   ├── doc1838.txt
│   │   ├── doc1839.txt
│   │   ├── doc184.txt
│   │   ├── doc1840.txt
│   │   ├── doc1841.txt
│   │   ├── doc1842.txt
│   │   ├── doc1843.txt
│   │   ├── doc1844.txt
│   │   ├── doc1845.txt
│   │   ├── doc1846.txt
│   │   ├── doc1847.txt
│   │   ├── doc1848.txt
│   │   ├── doc1849.txt
│   │   ├── doc185.txt
│   │   ├── doc1850.txt
│   │   ├── doc1851.txt
│   │   ├── doc1852.txt
│   │   ├── doc1853.txt
│   │   ├── doc1854.txt
│   │   ├── doc1855.txt
│   │   ├── doc1856.txt
│   │   ├── doc1857.txt
│   │   ├── doc1858.txt
│   │   ├── doc1859.txt
│   │   ├── doc186.txt
│   │   ├── doc1860.txt
│   │   ├── doc1861.txt
│   │   ├── doc1862.txt
│   │   ├── doc1863.txt
│   │   ├── doc1864.txt
│   │   ├── doc1865.txt
│   │   ├── doc1866.txt
│   │   ├── doc1867.txt
│   │   ├── doc1868.txt
│   │   ├── doc1869.txt
│   │   ├── doc187.txt
│   │   ├── doc1870.txt
│   │   ├── doc1871.txt
│   │   ├── doc1872.txt
│   │   ├── doc1873.txt
│   │   ├── doc1874.txt
│   │   ├── doc1875.txt
│   │   ├── doc1876.txt
│   │   ├── doc1877.txt
│   │   ├── doc1878.txt
│   │   ├── doc1879.txt
│   │   ├── doc188.txt
│   │   ├── doc1880.txt
│   │   ├── doc1881.txt
│   │   ├── doc1882.txt
│   │   ├── doc1883.txt
│   │   ├── doc1884.txt
│   │   ├── doc1885.txt
│   │   ├── doc1886.txt
│   │   ├── doc1887.txt
│   │   ├── doc1888.txt
│   │   ├── doc1889.txt
│   │   ├── doc189.txt
│   │   ├── doc1890.txt
│   │   ├── doc1891.txt
│   │   ├── doc1892.txt
│   │   ├── doc1893.txt
│   │   ├── doc1894.txt
│   │   ├── doc1895.txt
│   │   ├── doc1896.txt
│   │   ├── doc1897.txt
│   │   ├── doc1898.txt
│   │   ├── doc1899.txt
│   │   ├── doc19.txt
│   │   ├── doc190.txt
│   │   ├── doc1900.txt
│   │   ├── doc1901.txt
│   │   ├── doc1902.txt
│   │   ├── doc1903.txt
│   │   ├── doc1904.txt
│   │   ├── doc1905.txt
│   │   ├── doc1906.txt
│   │   ├── doc1907.txt
│   │   ├── doc1908.txt
│   │   ├── doc1909.txt
│   │   ├── doc191.txt
│   │   ├── doc1910.txt
│   │   ├── doc1911.txt
│   │   ├── doc1912.txt
│   │   ├── doc1913.txt
│   │   ├── doc1914.txt
│   │   ├── doc1915.txt
│   │   ├── doc1916.txt
│   │   ├── doc1917.txt
│   │   ├── doc1918.txt
│   │   ├── doc1919.txt
│   │   ├── doc192.txt
│   │   ├── doc1920.txt
│   │   ├── doc1921.txt
│   │   ├── doc1922.txt
│   │   ├── doc1923.txt
│   │   ├── doc1924.txt
│   │   ├── doc1925.txt
│   │   ├── doc1926.txt
│   │   ├── doc1927.txt
│   │   ├── doc1928.txt
│   │   ├── doc1929.txt
│   │   ├── doc193.txt
│   │   ├── doc1930.txt
│   │   ├── doc1931.txt
│   │   ├── doc1932.txt
│   │   ├── doc1933.txt
│   │   ├── doc1934.txt
│   │   ├── doc1935.txt
│   │   ├── doc1936.txt
│   │   ├── doc1937.txt
│   │   ├── doc1938.txt
│   │   ├── doc1939.txt
│   │   ├── doc194.txt
│   │   ├── doc1940.txt
│   │   ├── doc1941.txt
│   │   ├── doc1942.txt
│   │   ├── doc1943.txt
│   │   ├── doc1944.txt
│   │   ├── doc1945.txt
│   │   ├── doc1946.txt
│   │   ├── doc1947.txt
│   │   ├── doc1948.txt
│   │   ├── doc1949.txt
│   │   ├── doc195.txt
│   │   ├── doc1950.txt
│   │   ├── doc1951.txt
│   │   ├── doc1952.txt
│   │   ├── doc1953.txt
│   │   ├── doc1954.txt
│   │   ├── doc1955.txt
│   │   ├── doc1956.txt
│   │   ├── doc1957.txt
│   │   ├── doc1958.txt
│   │   ├── doc1959.txt
│   │   ├── doc196.txt
│   │   ├── doc1960.txt
│   │   ├── doc1961.txt
│   │   ├── doc1962.txt
│   │   ├── doc1963.txt
│   │   ├── doc1964.txt
│   │   ├── doc1965.txt
│   │   ├── doc1966.txt
│   │   ├── doc1967.txt
│   │   ├── doc1968.txt
│   │   ├── doc1969.txt
│   │   ├── doc197.txt
│   │   ├── doc1970.txt
│   │   ├── doc1971.txt
│   │   ├── doc1972.txt
│   │   ├── doc1973.txt
│   │   ├── doc1974.txt
│   │   ├── doc1975.txt
│   │   ├── doc1976.txt
│   │   ├── doc1977.txt
│   │   ├── doc1978.txt
│   │   ├── doc1979.txt
│   │   ├── doc198.txt
│   │   ├── doc1980.txt
│   │   ├── doc1981.txt
│   │   ├── doc1982.txt
│   │   ├── doc1983.txt
│   │   ├── doc1984.txt
│   │   ├── doc1985.txt
│   │   ├── doc1986.txt
│   │   ├── doc1987.txt
│   │   ├── doc1988.txt
│   │   ├── doc1989.txt
│   │   ├── doc199.txt
│   │   ├── doc1990.txt
│   │   ├── doc1991.txt
│   │   ├── doc1992.txt
│   │   ├── doc1993.txt
│   │   ├── doc1994.txt
│   │   ├── doc1995.txt
│   │   ├── doc1996.txt
│   │   ├── doc1997.txt
│   │   ├── doc1998.txt
│   │   ├── doc1999.txt
│   │   ├── doc2.txt
│   │   ├── doc20.txt
│   │   ├── doc200.txt
│   │   ├── doc2000.txt
│   │   ├── doc2001.txt
│   │   ├── doc2002.txt
│   │   ├── doc2003.txt
│   │   ├── doc2004.txt
│   │   ├── doc2005.txt
│   │   ├── doc2006.txt
│   │   ├── doc2007.txt
│   │   ├── doc2008.txt
│   │   ├── doc2009.txt
│   │   ├── doc201.txt
│   │   ├── doc2010.txt
│   │   ├── doc2011.txt
│   │   ├── doc2012.txt
│   │   ├── doc2013.txt
│   │   ├── doc2014.txt
│   │   ├── doc2015.txt
│   │   ├── doc2016.txt
│   │   ├── doc2017.txt
│   │   ├── doc2018.txt
│   │   ├── doc2019.txt
│   │   ├── doc202.txt
│   │   ├── doc2020.txt
│   │   ├── doc2021.txt
│   │   ├── doc2022.txt
│   │   ├── doc2023.txt
│   │   ├── doc2024.txt
│   │   ├── doc2025.txt
│   │   ├── doc2026.txt
│   │   ├── doc2027.txt
│   │   ├── doc2028.txt
│   │   ├── doc2029.txt
│   │   ├── doc203.txt
│   │   ├── doc2030.txt
│   │   ├── doc2031.txt
│   │   ├── doc2032.txt
│   │   ├── doc2033.txt
│   │   ├── doc2034.txt
│   │   ├── doc2035.txt
│   │   ├── doc2036.txt
│   │   ├── doc2037.txt
│   │   ├── doc2038.txt
│   │   ├── doc2039.txt
│   │   ├── doc204.txt
│   │   ├── doc2040.txt
│   │   ├── doc2041.txt
│   │   ├── doc2042.txt
│   │   ├── doc2043.txt
│   │   ├── doc2044.txt
│   │   ├── doc2045.txt
│   │   ├── doc2046.txt
│   │   ├── doc2047.txt
│   │   ├── doc2048.txt
│   │   ├── doc2049.txt
│   │   ├── doc205.txt
│   │   ├── doc2050.txt
│   │   ├── doc2051.txt
│   │   ├── doc2052.txt
│   │   ├── doc2053.txt
│   │   ├── doc2054.txt
│   │   ├── doc2055.txt
│   │   ├── doc2056.txt
│   │   ├── doc2057.txt
│   │   ├── doc2058.txt
│   │   ├── doc2059.txt
│   │   ├── doc206.txt
│   │   ├── doc2060.txt
│   │   ├── doc2061.txt
│   │   ├── doc2062.txt
│   │   ├── doc2063.txt
│   │   ├── doc2064.txt
│   │   ├── doc2065.txt
│   │   ├── doc2066.txt
│   │   ├── doc2067.txt
│   │   ├── doc2068.txt
│   │   ├── doc2069.txt
│   │   ├── doc207.txt
│   │   ├── doc2070.txt
│   │   ├── doc2071.txt
│   │   ├── doc2072.txt
│   │   ├── doc2073.txt
│   │   ├── doc2074.txt
│   │   ├── doc2075.txt
│   │   ├── doc2076.txt
│   │   ├── doc2077.txt
│   │   ├── doc2078.txt
│   │   ├── doc2079.txt
│   │   ├── doc208.txt
│   │   ├── doc2080.txt
│   │   ├── doc2081.txt
│   │   ├── doc2082.txt
│   │   ├── doc2083.txt
│   │   ├── doc2084.txt
│   │   ├── doc2085.txt
│   │   ├── doc2086.txt
│   │   ├── doc2087.txt
│   │   ├── doc2088.txt
│   │   ├── doc2089.txt
│   │   ├── doc209.txt
│   │   ├── doc2090.txt
│   │   ├── doc2091.txt
│   │   ├── doc2092.txt
│   │   ├── doc2093.txt
│   │   ├── doc2094.txt
│   │   ├── doc2095.txt
│   │   ├── doc2096.txt
│   │   ├── doc2097.txt
│   │   ├── doc2098.txt
│   │   ├── doc2099.txt
│   │   ├── doc21.txt
│   │   ├── doc210.txt
│   │   ├── doc2100.txt
│   │   ├── doc2101.txt
│   │   ├── doc2102.txt
│   │   ├── doc2103.txt
│   │   ├── doc2104.txt
│   │   ├── doc2105.txt
│   │   ├── doc2106.txt
│   │   ├── doc2107.txt
│   │   ├── doc2108.txt
│   │   ├── doc2109.txt
│   │   ├── doc211.txt
│   │   ├── doc2110.txt
│   │   ├── doc2111.txt
│   │   ├── doc2112.txt
│   │   ├── doc2113.txt
│   │   ├── doc2114.txt
│   │   ├── doc2115.txt
│   │   ├── doc2116.txt
│   │   ├── doc2117.txt
│   │   ├── doc2118.txt
│   │   ├── doc2119.txt
│   │   ├── doc212.txt
│   │   ├── doc2120.txt
│   │   ├── doc2121.txt
│   │   ├── doc2122.txt
│   │   ├── doc2123.txt
│   │   ├── doc2124.txt
│   │   ├── doc2125.txt
│   │   ├── doc2126.txt
│   │   ├── doc2127.txt
│   │   ├── doc2128.txt
│   │   ├── doc2129.txt
│   │   ├── doc213.txt
│   │   ├── doc2130.txt
│   │   ├── doc2131.txt
│   │   ├── doc2132.txt
│   │   ├── doc2133.txt
│   │   ├── doc2134.txt
│   │   ├── doc2135.txt
│   │   ├── doc2136.txt
│   │   ├── doc2137.txt
│   │   ├── doc2138.txt
│   │   ├── doc2139.txt
│   │   ├── doc214.txt
│   │   ├── doc2140.txt
│   │   ├── doc2141.txt
│   │   ├── doc2142.txt
│   │   ├── doc2143.txt
│   │   ├── doc2144.txt
│   │   ├── doc2145.txt
│   │   ├── doc2146.txt
│   │   ├── doc2147.txt
│   │   ├── doc2148.txt
│   │   ├── doc2149.txt
│   │   ├── doc215.txt
│   │   ├── doc2150.txt
│   │   ├── doc2151.txt
│   │   ├── doc2152.txt
│   │   ├── doc2153.txt
│   │   ├── doc2154.txt
│   │   ├── doc2155.txt
│   │   ├── doc2156.txt
│   │   ├── doc2157.txt
│   │   ├── doc2158.txt
│   │   ├── doc2159.txt
│   │   ├── doc216.txt
│   │   ├── doc2160.txt
│   │   ├── doc2161.txt
│   │   ├── doc2162.txt
│   │   ├── doc2163.txt
│   │   ├── doc2164.txt
│   │   ├── doc2165.txt
│   │   ├── doc2166.txt
│   │   ├── doc2167.txt
│   │   ├── doc2168.txt
│   │   ├── doc2169.txt
│   │   ├── doc217.txt
│   │   ├── doc2170.txt
│   │   ├── doc2171.txt
│   │   ├── doc2172.txt
│   │   ├── doc2173.txt
│   │   ├── doc2174.txt
│   │   ├── doc2175.txt
│   │   ├── doc2176.txt
│   │   ├── doc2177.txt
│   │   ├── doc2178.txt
│   │   ├── doc2179.txt
│   │   ├── doc218.txt
│   │   ├── doc2180.txt
│   │   ├── doc2181.txt
│   │   ├── doc2182.txt
│   │   ├── doc2183.txt
│   │   ├── doc2184.txt
│   │   ├── doc2185.txt
│   │   ├── doc2186.txt
│   │   ├── doc2187.txt
│   │   ├── doc2188.txt
│   │   ├── doc2189.txt
│   │   ├── doc219.txt
│   │   ├── doc2190.txt
│   │   ├── doc2191.txt
│   │   ├── doc2192.txt
│   │   ├── doc2193.txt
│   │   ├── doc2194.txt
│   │   ├── doc2195.txt
│   │   ├── doc2196.txt
│   │   ├── doc2197.txt
│   │   ├── doc2198.txt
│   │   ├── doc2199.txt
│   │   ├── doc22.txt
│   │   ├── doc220.txt
│   │   ├── doc2200.txt
│   │   ├── doc2201.txt
│   │   ├── doc2202.txt
│   │   ├── doc2203.txt
│   │   ├── doc2204.txt
│   │   ├── doc2205.txt
│   │   ├── doc2206.txt
│   │   ├── doc2207.txt
│   │   ├── doc2208.txt
│   │   ├── doc2209.txt
│   │   ├── doc221.txt
│   │   ├── doc2210.txt
│   │   ├── doc2211.txt
│   │   ├── doc2212.txt
│   │   ├── doc2213.txt
│   │   ├── doc2214.txt
│   │   ├── doc2215.txt
│   │   ├── doc2216.txt
│   │   ├── doc2217.txt
│   │   ├── doc2218.txt
│   │   ├── doc2219.txt
│   │   ├── doc222.txt
│   │   ├── doc2220.txt
│   │   ├── doc2221.txt
│   │   ├── doc2222.txt
│   │   ├── doc2223.txt
│   │   ├── doc2224.txt
│   │   ├── doc2225.txt
│   │   ├── doc2226.txt
│   │   ├── doc2227.txt
│   │   ├── doc2228.txt
│   │   ├── doc2229.txt
│   │   ├── doc223.txt
│   │   ├── doc2230.txt
│   │   ├── doc2231.txt
│   │   ├── doc2232.txt
│   │   ├── doc2233.txt
│   │   ├── doc2234.txt
│   │   ├── doc2235.txt
│   │   ├── doc2236.txt
│   │   ├── doc2237.txt
│   │   ├── doc2238.txt
│   │   ├── doc2239.txt
│   │   ├── doc224.txt
│   │   ├── doc2240.txt
│   │   ├── doc2241.txt
│   │   ├── doc2242.txt
│   │   ├── doc2243.txt
│   │   ├── doc2244.txt
│   │   ├── doc2245.txt
│   │   ├── doc2246.txt
│   │   ├── doc2247.txt
│   │   ├── doc2248.txt
│   │   ├── doc2249.txt
│   │   ├── doc225.txt
│   │   ├── doc2250.txt
│   │   ├── doc2251.txt
│   │   ├── doc2252.txt
│   │   ├── doc2253.txt
│   │   ├── doc2254.txt
│   │   ├── doc2255.txt
│   │   ├── doc2256.txt
│   │   ├── doc2257.txt
│   │   ├── doc2258.txt
│   │   ├── doc2259.txt
│   │   ├── doc226.txt
│   │   ├── doc2260.txt
│   │   ├── doc2261.txt
│   │   ├── doc2262.txt
│   │   ├── doc2263.txt
│   │   ├── doc2264.txt
│   │   ├── doc2265.txt
│   │   ├── doc2266.txt
│   │   ├── doc2267.txt
│   │   ├── doc2268.txt
│   │   ├── doc2269.txt
│   │   ├── doc227.txt
│   │   ├── doc2270.txt
│   │   ├── doc2271.txt
│   │   ├── doc2272.txt
│   │   ├── doc2273.txt
│   │   ├── doc2274.txt
│   │   ├── doc2275.txt
│   │   ├── doc2276.txt
│   │   ├── doc2277.txt
│   │   ├── doc2278.txt
│   │   ├── doc2279.txt
│   │   ├── doc228.txt
│   │   ├── doc2280.txt
│   │   ├── doc2281.txt
│   │   ├── doc2282.txt
│   │   ├── doc2283.txt
│   │   ├── doc2284.txt
│   │   ├── doc2285.txt
│   │   ├── doc2286.txt
│   │   ├── doc2287.txt
│   │   ├── doc2288.txt
│   │   ├── doc2289.txt
│   │   ├── doc229.txt
│   │   ├── doc2290.txt
│   │   ├── doc2291.txt
│   │   ├── doc2292.txt
│   │   ├── doc2293.txt
│   │   ├── doc2294.txt
│   │   ├── doc2295.txt
│   │   ├── doc2296.txt
│   │   ├── doc2297.txt
│   │   ├── doc2298.txt
│   │   ├── doc2299.txt
│   │   ├── doc23.txt
│   │   ├── doc230.txt
│   │   ├── doc2300.txt
│   │   ├── doc2301.txt
│   │   ├── doc2302.txt
│   │   ├── doc2303.txt
│   │   ├── doc2304.txt
│   │   ├── doc2305.txt
│   │   ├── doc2306.txt
│   │   ├── doc2307.txt
│   │   ├── doc2308.txt
│   │   ├── doc2309.txt
│   │   ├── doc231.txt
│   │   ├── doc2310.txt
│   │   ├── doc2311.txt
│   │   ├── doc2312.txt
│   │   ├── doc2313.txt
│   │   ├── doc2314.txt
│   │   ├── doc2315.txt
│   │   ├── doc2316.txt
│   │   ├── doc2317.txt
│   │   ├── doc2318.txt
│   │   ├── doc2319.txt
│   │   ├── doc232.txt
│   │   ├── doc2320.txt
│   │   ├── doc2321.txt
│   │   ├── doc2322.txt
│   │   ├── doc2323.txt
│   │   ├── doc2324.txt
│   │   ├── doc2325.txt
│   │   ├── doc2326.txt
│   │   ├── doc2327.txt
│   │   ├── doc2328.txt
│   │   ├── doc2329.txt
│   │   ├── doc233.txt
│   │   ├── doc2330.txt
│   │   ├── doc2331.txt
│   │   ├── doc2332.txt
│   │   ├── doc2333.txt
│   │   ├── doc2334.txt
│   │   ├── doc2335.txt
│   │   ├── doc2336.txt
│   │   ├── doc2337.txt
│   │   ├── doc2338.txt
│   │   ├── doc2339.txt
│   │   ├── doc234.txt
│   │   ├── doc2340.txt
│   │   ├── doc2341.txt
│   │   ├── doc2342.txt
│   │   ├── doc2343.txt
│   │   ├── doc2344.txt
│   │   ├── doc2345.txt
│   │   ├── doc2346.txt
│   │   ├── doc2347.txt
│   │   ├── doc2348.txt
│   │   ├── doc2349.txt
│   │   ├── doc235.txt
│   │   ├── doc2350.txt
│   │   ├── doc2351.txt
│   │   ├── doc2352.txt
│   │   ├── doc2353.txt
│   │   ├── doc2354.txt
│   │   ├── doc2355.txt
│   │   ├── doc2356.txt
│   │   ├── doc2357.txt
│   │   ├── doc2358.txt
│   │   ├── doc2359.txt
│   │   ├── doc236.txt
│   │   ├── doc2360.txt
│   │   ├── doc2361.txt
│   │   ├── doc2362.txt
│   │   ├── doc2363.txt
│   │   ├── doc2364.txt
│   │   ├── doc2365.txt
│   │   ├── doc2366.txt
│   │   ├── doc2367.txt
│   │   ├── doc2368.txt
│   │   ├── doc2369.txt
│   │   ├── doc237.txt
│   │   ├── doc2370.txt
│   │   ├── doc2371.txt
│   │   ├── doc2372.txt
│   │   ├── doc2373.txt
│   │   ├── doc2374.txt
│   │   ├── doc2375.txt
│   │   ├── doc2376.txt
│   │   ├── doc2377.txt
│   │   ├── doc2378.txt
│   │   ├── doc2379.txt
│   │   ├── doc238.txt
│   │   ├── doc2380.txt
│   │   ├── doc2381.txt
│   │   ├── doc2382.txt
│   │   ├── doc2383.txt
│   │   ├── doc2384.txt
│   │   ├── doc2385.txt
│   │   ├── doc2386.txt
│   │   ├── doc2387.txt
│   │   ├── doc2388.txt
│   │   ├── doc2389.txt
│   │   ├── doc239.txt
│   │   ├── doc2390.txt
│   │   ├── doc2391.txt
│   │   ├── doc2392.txt
│   │   ├── doc2393.txt
│   │   ├── doc2394.txt
│   │   ├── doc2395.txt
│   │   ├── doc2396.txt
│   │   ├── doc2397.txt
│   │   ├── doc2398.txt
│   │   ├── doc2399.txt
│   │   ├── doc24.txt
│   │   ├── doc240.txt
│   │   ├── doc2400.txt
│   │   ├── doc2401.txt
│   │   ├── doc2402.txt
│   │   ├── doc2403.txt
│   │   ├── doc2404.txt
│   │   ├── doc2405.txt
│   │   ├── doc2406.txt
│   │   ├── doc2407.txt
│   │   ├── doc2408.txt
│   │   ├── doc2409.txt
│   │   ├── doc241.txt
│   │   ├── doc2410.txt
│   │   ├── doc2411.txt
│   │   ├── doc2412.txt
│   │   ├── doc2413.txt
│   │   ├── doc2414.txt
│   │   ├── doc2415.txt
│   │   ├── doc2416.txt
│   │   ├── doc2417.txt
│   │   ├── doc2418.txt
│   │   ├── doc2419.txt
│   │   ├── doc242.txt
│   │   ├── doc2420.txt
│   │   ├── doc2421.txt
│   │   ├── doc2422.txt
│   │   ├── doc2423.txt
│   │   ├── doc2424.txt
│   │   ├── doc2425.txt
│   │   ├── doc2426.txt
│   │   ├── doc2427.txt
│   │   ├── doc2428.txt
│   │   ├── doc2429.txt
│   │   ├── doc243.txt
│   │   ├── doc2430.txt
│   │   ├── doc2431.txt
│   │   ├── doc2432.txt
│   │   ├── doc2433.txt
│   │   ├── doc2434.txt
│   │   ├── doc2435.txt
│   │   ├── doc2436.txt
│   │   ├── doc2437.txt
│   │   ├── doc2438.txt
│   │   ├── doc2439.txt
│   │   ├── doc244.txt
│   │   ├── doc2440.txt
│   │   ├── doc2441.txt
│   │   ├── doc2442.txt
│   │   ├── doc2443.txt
│   │   ├── doc2444.txt
│   │   ├── doc2445.txt
│   │   ├── doc2446.txt
│   │   ├── doc2447.txt
│   │   ├── doc2448.txt
│   │   ├── doc2449.txt
│   │   ├── doc245.txt
│   │   ├── doc2450.txt
│   │   ├── doc2451.txt
│   │   ├── doc2452.txt
│   │   ├── doc2453.txt
│   │   ├── doc2454.txt
│   │   ├── doc2455.txt
│   │   ├── doc2456.txt
│   │   ├── doc2457.txt
│   │   ├── doc2458.txt
│   │   ├── doc2459.txt
│   │   ├── doc246.txt
│   │   ├── doc2460.txt
│   │   ├── doc2461.txt
│   │   ├── doc2462.txt
│   │   ├── doc2463.txt
│   │   ├── doc2464.txt
│   │   ├── doc2465.txt
│   │   ├── doc2466.txt
│   │   ├── doc2467.txt
│   │   ├── doc2468.txt
│   │   ├── doc2469.txt
│   │   ├── doc247.txt
│   │   ├── doc2470.txt
│   │   ├── doc2471.txt
│   │   ├── doc2472.txt
│   │   ├── doc2473.txt
│   │   ├── doc2474.txt
│   │   ├── doc2475.txt
│   │   ├── doc2476.txt
│   │   ├── doc2477.txt
│   │   ├── doc2478.txt
│   │   ├── doc2479.txt
│   │   ├── doc248.txt
│   │   ├── doc2480.txt
│   │   ├── doc2481.txt
│   │   ├── doc2482.txt
│   │   ├── doc2483.txt
│   │   ├── doc2484.txt
│   │   ├── doc2485.txt
│   │   ├── doc2486.txt
│   │   ├── doc2487.txt
│   │   ├── doc2488.txt
│   │   ├── doc2489.txt
│   │   ├── doc249.txt
│   │   ├── doc2490.txt
│   │   ├── doc2491.txt
│   │   ├── doc2492.txt
│   │   ├── doc2493.txt
│   │   ├── doc2494.txt
│   │   ├── doc2495.txt
│   │   ├── doc2496.txt
│   │   ├── doc2497.txt
│   │   ├── doc2498.txt
│   │   ├── doc2499.txt
│   │   ├── doc25.txt
│   │   ├── doc250.txt
│   │   ├── doc2500.txt
│   │   ├── doc2501.txt
│   │   ├── doc2502.txt
│   │   ├── doc2503.txt
│   │   ├── doc2504.txt
│   │   ├── doc2505.txt
│   │   ├── doc2506.txt
│   │   ├── doc2507.txt
│   │   ├── doc2508.txt
│   │   ├── doc2509.txt
│   │   ├── doc251.txt
│   │   ├── doc2510.txt
│   │   ├── doc2511.txt
│   │   ├── doc2512.txt
│   │   ├── doc2513.txt
│   │   ├── doc2514.txt
│   │   ├── doc2515.txt
│   │   ├── doc2516.txt
│   │   ├── doc2517.txt
│   │   ├── doc2518.txt
│   │   ├── doc2519.txt
│   │   ├── doc252.txt
│   │   ├── doc2520.txt
│   │   ├── doc2521.txt
│   │   ├── doc2522.txt
│   │   ├── doc2523.txt
│   │   ├── doc2524.txt
│   │   ├── doc2525.txt
│   │   ├── doc2526.txt
│   │   ├── doc2527.txt
│   │   ├── doc2528.txt
│   │   ├── doc2529.txt
│   │   ├── doc253.txt
│   │   ├── doc2530.txt
│   │   ├── doc2531.txt
│   │   ├── doc2532.txt
│   │   ├── doc2533.txt
│   │   ├── doc2534.txt
│   │   ├── doc2535.txt
│   │   ├── doc2536.txt
│   │   ├── doc2537.txt
│   │   ├── doc2538.txt
│   │   ├── doc2539.txt
│   │   ├── doc254.txt
│   │   ├── doc2540.txt
│   │   ├── doc2541.txt
│   │   ├── doc2542.txt
│   │   ├── doc2543.txt
│   │   ├── doc2544.txt
│   │   ├── doc2545.txt
│   │   ├── doc2546.txt
│   │   ├── doc2547.txt
│   │   ├── doc2548.txt
│   │   ├── doc2549.txt
│   │   ├── doc255.txt
│   │   ├── doc2550.txt
│   │   ├── doc2551.txt
│   │   ├── doc2552.txt
│   │   ├── doc2553.txt
│   │   ├── doc2554.txt
│   │   ├── doc2555.txt
│   │   ├── doc2556.txt
│   │   ├── doc2557.txt
│   │   ├── doc2558.txt
│   │   ├── doc2559.txt
│   │   ├── doc256.txt
│   │   ├── doc2560.txt
│   │   ├── doc2561.txt
│   │   ├── doc2562.txt
│   │   ├── doc2563.txt
│   │   ├── doc2564.txt
│   │   ├── doc2565.txt
│   │   ├── doc2566.txt
│   │   ├── doc2567.txt
│   │   ├── doc2568.txt
│   │   ├── doc2569.txt
│   │   ├── doc257.txt
│   │   ├── doc2570.txt
│   │   ├── doc2571.txt
│   │   ├── doc2572.txt
│   │   ├── doc2573.txt
│   │   ├── doc2574.txt
│   │   ├── doc2575.txt
│   │   ├── doc2576.txt
│   │   ├── doc2577.txt
│   │   ├── doc2578.txt
│   │   ├── doc2579.txt
│   │   ├── doc258.txt
│   │   ├── doc2580.txt
│   │   ├── doc2581.txt
│   │   ├── doc2582.txt
│   │   ├── doc2583.txt
│   │   ├── doc2584.txt
│   │   ├── doc2585.txt
│   │   ├── doc2586.txt
│   │   ├── doc2587.txt
│   │   ├── doc2588.txt
│   │   ├── doc2589.txt
│   │   ├── doc259.txt
│   │   ├── doc2590.txt
│   │   ├── doc2591.txt
│   │   ├── doc2592.txt
│   │   ├── doc2593.txt
│   │   ├── doc2594.txt
│   │   ├── doc2595.txt
│   │   ├── doc2596.txt
│   │   ├── doc2597.txt
│   │   ├── doc2598.txt
│   │   ├── doc2599.txt
│   │   ├── doc26.txt
│   │   ├── doc260.txt
│   │   ├── doc2600.txt
│   │   ├── doc2601.txt
│   │   ├── doc2602.txt
│   │   ├── doc2603.txt
│   │   ├── doc2604.txt
│   │   ├── doc2605.txt
│   │   ├── doc2606.txt
│   │   ├── doc2607.txt
│   │   ├── doc2608.txt
│   │   ├── doc2609.txt
│   │   ├── doc261.txt
│   │   ├── doc2610.txt
│   │   ├── doc2611.txt
│   │   ├── doc2612.txt
│   │   ├── doc2613.txt
│   │   ├── doc2614.txt
│   │   ├── doc2615.txt
│   │   ├── doc2616.txt
│   │   ├── doc2617.txt
│   │   ├── doc2618.txt
│   │   ├── doc2619.txt
│   │   ├── doc262.txt
│   │   ├── doc2620.txt
│   │   ├── doc2621.txt
│   │   ├── doc2622.txt
│   │   ├── doc2623.txt
│   │   ├── doc2624.txt
│   │   ├── doc2625.txt
│   │   ├── doc2626.txt
│   │   ├── doc2627.txt
│   │   ├── doc2628.txt
│   │   ├── doc2629.txt
│   │   ├── doc263.txt
│   │   ├── doc2630.txt
│   │   ├── doc2631.txt
│   │   ├── doc2632.txt
│   │   ├── doc2633.txt
│   │   ├── doc2634.txt
│   │   ├── doc2635.txt
│   │   ├── doc2636.txt
│   │   ├── doc2637.txt
│   │   ├── doc2638.txt
│   │   ├── doc2639.txt
│   │   ├── doc264.txt
│   │   ├── doc2640.txt
│   │   ├── doc2641.txt
│   │   ├── doc2642.txt
│   │   ├── doc2643.txt
│   │   ├── doc2644.txt
│   │   ├── doc2645.txt
│   │   ├── doc2646.txt
│   │   ├── doc2647.txt
│   │   ├── doc2648.txt
│   │   ├── doc2649.txt
│   │   ├── doc265.txt
│   │   ├── doc2650.txt
│   │   ├── doc2651.txt
│   │   ├── doc2652.txt
│   │   ├── doc2653.txt
│   │   ├── doc2654.txt
│   │   ├── doc2655.txt
│   │   ├── doc2656.txt
│   │   ├── doc2657.txt
│   │   ├── doc2658.txt
│   │   ├── doc2659.txt
│   │   ├── doc266.txt
│   │   ├── doc2660.txt
│   │   ├── doc2661.txt
│   │   ├── doc2662.txt
│   │   ├── doc2663.txt
│   │   ├── doc2664.txt
│   │   ├── doc2665.txt
│   │   ├── doc2666.txt
│   │   ├── doc2667.txt
│   │   ├── doc2668.txt
│   │   ├── doc2669.txt
│   │   ├── doc267.txt
│   │   ├── doc2670.txt
│   │   ├── doc2671.txt
│   │   ├── doc2672.txt
│   │   ├── doc2673.txt
│   │   ├── doc2674.txt
│   │   ├── doc2675.txt
│   │   ├── doc2676.txt
│   │   ├── doc2677.txt
│   │   ├── doc2678.txt
│   │   ├── doc2679.txt
│   │   ├── doc268.txt
│   │   ├── doc2680.txt
│   │   ├── doc2681.txt
│   │   ├── doc2682.txt
│   │   ├── doc2683.txt
│   │   ├── doc2684.txt
│   │   ├── doc2685.txt
│   │   ├── doc2686.txt
│   │   ├── doc2687.txt
│   │   ├── doc2688.txt
│   │   ├── doc2689.txt
│   │   ├── doc269.txt
│   │   ├── doc2690.txt
│   │   ├── doc2691.txt
│   │   ├── doc2692.txt
│   │   ├── doc2693.txt
│   │   ├── doc2694.txt
│   │   ├── doc2695.txt
│   │   ├── doc2696.txt
│   │   ├── doc2697.txt
│   │   ├── doc2698.txt
│   │   ├── doc2699.txt
│   │   ├── doc27.txt
│   │   ├── doc270.txt
│   │   ├── doc2700.txt
│   │   ├── doc2701.txt
│   │   ├── doc2702.txt
│   │   ├── doc2703.txt
│   │   ├── doc2704.txt
│   │   ├── doc2705.txt
│   │   ├── doc2706.txt
│   │   ├── doc2707.txt
│   │   ├── doc2708.txt
│   │   ├── doc2709.txt
│   │   ├── doc271.txt
│   │   ├── doc2710.txt
│   │   ├── doc2711.txt
│   │   ├── doc2712.txt
│   │   ├── doc2713.txt
│   │   ├── doc2714.txt
│   │   ├── doc2715.txt
│   │   ├── doc2716.txt
│   │   ├── doc2717.txt
│   │   ├── doc2718.txt
│   │   ├── doc2719.txt
│   │   ├── doc272.txt
│   │   ├── doc2720.txt
│   │   ├── doc2721.txt
│   │   ├── doc2722.txt
│   │   ├── doc2723.txt
│   │   ├── doc2724.txt
│   │   ├── doc2725.txt
│   │   ├── doc2726.txt
│   │   ├── doc2727.txt
│   │   ├── doc2728.txt
│   │   ├── doc2729.txt
│   │   ├── doc273.txt
│   │   ├── doc2730.txt
│   │   ├── doc2731.txt
│   │   ├── doc2732.txt
│   │   ├── doc2733.txt
│   │   ├── doc2734.txt
│   │   ├── doc2735.txt
│   │   ├── doc2736.txt
│   │   ├── doc2737.txt
│   │   ├── doc2738.txt
│   │   ├── doc2739.txt
│   │   ├── doc274.txt
│   │   ├── doc2740.txt
│   │   ├── doc2741.txt
│   │   ├── doc2742.txt
│   │   ├── doc2743.txt
│   │   ├── doc2744.txt
│   │   ├── doc2745.txt
│   │   ├── doc2746.txt
│   │   ├── doc2747.txt
│   │   ├── doc2748.txt
│   │   ├── doc2749.txt
│   │   ├── doc275.txt
│   │   ├── doc2750.txt
│   │   ├── doc2751.txt
│   │   ├── doc2752.txt
│   │   ├── doc2753.txt
│   │   ├── doc2754.txt
│   │   ├── doc2755.txt
│   │   ├── doc2756.txt
│   │   ├── doc2757.txt
│   │   ├── doc2758.txt
│   │   ├── doc2759.txt
│   │   ├── doc276.txt
│   │   ├── doc2760.txt
│   │   ├── doc2761.txt
│   │   ├── doc2762.txt
│   │   ├── doc2763.txt
│   │   ├── doc2764.txt
│   │   ├── doc2765.txt
│   │   ├── doc2766.txt
│   │   ├── doc2767.txt
│   │   ├── doc2768.txt
│   │   ├── doc2769.txt
│   │   ├── doc277.txt
│   │   ├── doc2770.txt
│   │   ├── doc2771.txt
│   │   ├── doc2772.txt
│   │   ├── doc2773.txt
│   │   ├── doc2774.txt
│   │   ├── doc2775.txt
│   │   ├── doc2776.txt
│   │   ├── doc2777.txt
│   │   ├── doc2778.txt
│   │   ├── doc2779.txt
│   │   ├── doc278.txt
│   │   ├── doc2780.txt
│   │   ├── doc2781.txt
│   │   ├── doc2782.txt
│   │   ├── doc2783.txt
│   │   ├── doc2784.txt
│   │   ├── doc2785.txt
│   │   ├── doc2786.txt
│   │   ├── doc2787.txt
│   │   ├── doc2788.txt
│   │   ├── doc2789.txt
│   │   ├── doc279.txt
│   │   ├── doc2790.txt
│   │   ├── doc2791.txt
│   │   ├── doc2792.txt
│   │   ├── doc2793.txt
│   │   ├── doc2794.txt
│   │   ├── doc2795.txt
│   │   ├── doc2796.txt
│   │   ├── doc2797.txt
│   │   ├── doc2798.txt
│   │   ├── doc2799.txt
│   │   ├── doc28.txt
│   │   ├── doc280.txt
│   │   ├── doc2800.txt
│   │   ├── doc2801.txt
│   │   ├── doc2802.txt
│   │   ├── doc2803.txt
│   │   ├── doc2804.txt
│   │   ├── doc2805.txt
│   │   ├── doc2806.txt
│   │   ├── doc2807.txt
│   │   ├── doc2808.txt
│   │   ├── doc2809.txt
│   │   ├── doc281.txt
│   │   ├── doc2810.txt
│   │   ├── doc2811.txt
│   │   ├── doc2812.txt
│   │   ├── doc2813.txt
│   │   ├── doc2814.txt
│   │   ├── doc2815.txt
│   │   ├── doc2816.txt
│   │   ├── doc2817.txt
│   │   ├── doc2818.txt
│   │   ├── doc2819.txt
│   │   ├── doc282.txt
│   │   ├── doc2820.txt
│   │   ├── doc2821.txt
│   │   ├── doc2822.txt
│   │   ├── doc2823.txt
│   │   ├── doc2824.txt
│   │   ├── doc2825.txt
│   │   ├── doc2826.txt
│   │   ├── doc2827.txt
│   │   ├── doc2828.txt
│   │   ├── doc2829.txt
│   │   ├── doc283.txt
│   │   ├── doc2830.txt
│   │   ├── doc2831.txt
│   │   ├── doc2832.txt
│   │   ├── doc2833.txt
│   │   ├── doc2834.txt
│   │   ├── doc2835.txt
│   │   ├── doc2836.txt
│   │   ├── doc2837.txt
│   │   ├── doc2838.txt
│   │   ├── doc2839.txt
│   │   ├── doc284.txt
│   │   ├── doc2840.txt
│   │   ├── doc2841.txt
│   │   ├── doc2842.txt
│   │   ├── doc2843.txt
│   │   ├── doc2844.txt
│   │   ├── doc2845.txt
│   │   ├── doc2846.txt
│   │   ├── doc2847.txt
│   │   ├── doc2848.txt
│   │   ├── doc2849.txt
│   │   ├── doc285.txt
│   │   ├── doc2850.txt
│   │   ├── doc2851.txt
│   │   ├── doc2852.txt
│   │   ├── doc2853.txt
│   │   ├── doc2854.txt
│   │   ├── doc2855.txt
│   │   ├── doc2856.txt
│   │   ├── doc2857.txt
│   │   ├── doc2858.txt
│   │   ├── doc2859.txt
│   │   ├── doc286.txt
│   │   ├── doc2860.txt
│   │   ├── doc2861.txt
│   │   ├── doc2862.txt
│   │   ├── doc2863.txt
│   │   ├── doc2864.txt
│   │   ├── doc2865.txt
│   │   ├── doc2866.txt
│   │   ├── doc2867.txt
│   │   ├── doc2868.txt
│   │   ├── doc2869.txt
│   │   ├── doc287.txt
│   │   ├── doc2870.txt
│   │   ├── doc2871.txt
│   │   ├── doc2872.txt
│   │   ├── doc2873.txt
│   │   ├── doc2874.txt
│   │   ├── doc2875.txt
│   │   ├── doc2876.txt
│   │   ├── doc2877.txt
│   │   ├── doc2878.txt
│   │   ├── doc2879.txt
│   │   ├── doc288.txt
│   │   ├── doc2880.txt
│   │   ├── doc2881.txt
│   │   ├── doc2882.txt
│   │   ├── doc2883.txt
│   │   ├── doc2884.txt
│   │   ├── doc2885.txt
│   │   ├── doc2886.txt
│   │   ├── doc2887.txt
│   │   ├── doc2888.txt
│   │   ├── doc2889.txt
│   │   ├── doc289.txt
│   │   ├── doc2890.txt
│   │   ├── doc2891.txt
│   │   ├── doc2892.txt
│   │   ├── doc2893.txt
│   │   ├── doc2894.txt
│   │   ├── doc2895.txt
│   │   ├── doc2896.txt
│   │   ├── doc2897.txt
│   │   ├── doc2898.txt
│   │   ├── doc2899.txt
│   │   ├── doc29.txt
│   │   ├── doc290.txt
│   │   ├── doc2900.txt
│   │   ├── doc2901.txt
│   │   ├── doc2902.txt
│   │   ├── doc2903.txt
│   │   ├── doc2904.txt
│   │   ├── doc2905.txt
│   │   ├── doc2906.txt
│   │   ├── doc2907.txt
│   │   ├── doc2908.txt
│   │   ├── doc2909.txt
│   │   ├── doc291.txt
│   │   ├── doc2910.txt
│   │   ├── doc2911.txt
│   │   ├── doc2912.txt
│   │   ├── doc2913.txt
│   │   ├── doc2914.txt
│   │   ├── doc2915.txt
│   │   ├── doc2916.txt
│   │   ├── doc2917.txt
│   │   ├── doc2918.txt
│   │   ├── doc2919.txt
│   │   ├── doc292.txt
│   │   ├── doc2920.txt
│   │   ├── doc2921.txt
│   │   ├── doc2922.txt
│   │   ├── doc2923.txt
│   │   ├── doc2924.txt
│   │   ├── doc2925.txt
│   │   ├── doc2926.txt
│   │   ├── doc2927.txt
│   │   ├── doc2928.txt
│   │   ├── doc2929.txt
│   │   ├── doc293.txt
│   │   ├── doc2930.txt
│   │   ├── doc2931.txt
│   │   ├── doc2932.txt
│   │   ├── doc2933.txt
│   │   ├── doc2934.txt
│   │   ├── doc2935.txt
│   │   ├── doc2936.txt
│   │   ├── doc2937.txt
│   │   ├── doc2938.txt
│   │   ├── doc2939.txt
│   │   ├── doc294.txt
│   │   ├── doc2940.txt
│   │   ├── doc2941.txt
│   │   ├── doc2942.txt
│   │   ├── doc2943.txt
│   │   ├── doc2944.txt
│   │   ├── doc2945.txt
│   │   ├── doc2946.txt
│   │   ├── doc2947.txt
│   │   ├── doc2948.txt
│   │   ├── doc2949.txt
│   │   ├── doc295.txt
│   │   ├── doc2950.txt
│   │   ├── doc2951.txt
│   │   ├── doc2952.txt
│   │   ├── doc2953.txt
│   │   ├── doc2954.txt
│   │   ├── doc2955.txt
│   │   ├── doc2956.txt
│   │   ├── doc2957.txt
│   │   ├── doc2958.txt
│   │   ├── doc2959.txt
│   │   ├── doc296.txt
│   │   ├── doc2960.txt
│   │   ├── doc2961.txt
│   │   ├── doc2962.txt
│   │   ├── doc2963.txt
│   │   ├── doc2964.txt
│   │   ├── doc2965.txt
│   │   ├── doc2966.txt
│   │   ├── doc2967.txt
│   │   ├── doc2968.txt
│   │   ├── doc2969.txt
│   │   ├── doc297.txt
│   │   ├── doc2970.txt
│   │   ├── doc2971.txt
│   │   ├── doc2972.txt
│   │   ├── doc2973.txt
│   │   ├── doc2974.txt
│   │   ├── doc2975.txt
│   │   ├── doc2976.txt
│   │   ├── doc2977.txt
│   │   ├── doc2978.txt
│   │   ├── doc2979.txt
│   │   ├── doc298.txt
│   │   ├── doc2980.txt
│   │   ├── doc2981.txt
│   │   ├── doc2982.txt
│   │   ├── doc2983.txt
│   │   ├── doc2984.txt
│   │   ├── doc2985.txt
│   │   ├── doc2986.txt
│   │   ├── doc2987.txt
│   │   ├── doc2988.txt
│   │   ├── doc2989.txt
│   │   ├── doc299.txt
│   │   ├── doc2990.txt
│   │   ├── doc2991.txt
│   │   ├── doc2992.txt
│   │   ├── doc2993.txt
│   │   ├── doc2994.txt
│   │   ├── doc2995.txt
│   │   ├── doc2996.txt
│   │   ├── doc2997.txt
│   │   ├── doc2998.txt
│   │   ├── doc2999.txt
│   │   ├── doc3.txt
│   │   ├── doc30.txt
│   │   ├── doc300.txt
│   │   ├── doc3000.txt
│   │   ├── doc3001.txt
│   │   ├── doc3002.txt
│   │   ├── doc3003.txt
│   │   ├── doc3004.txt
│   │   ├── doc3005.txt
│   │   ├── doc3006.txt
│   │   ├── doc3007.txt
│   │   ├── doc3008.txt
│   │   ├── doc3009.txt
│   │   ├── doc301.txt
│   │   ├── doc3010.txt
│   │   ├── doc3011.txt
│   │   ├── doc3012.txt
│   │   ├── doc3013.txt
│   │   ├── doc3014.txt
│   │   ├── doc3015.txt
│   │   ├── doc3016.txt
│   │   ├── doc3017.txt
│   │   ├── doc3018.txt
│   │   ├── doc3019.txt
│   │   ├── doc302.txt
│   │   ├── doc3020.txt
│   │   ├── doc3021.txt
│   │   ├── doc3022.txt
│   │   ├── doc3023.txt
│   │   ├── doc3024.txt
│   │   ├── doc3025.txt
│   │   ├── doc3026.txt
│   │   ├── doc3027.txt
│   │   ├── doc3028.txt
│   │   ├── doc3029.txt
│   │   ├── doc303.txt
│   │   ├── doc3030.txt
│   │   ├── doc3031.txt
│   │   ├── doc3032.txt
│   │   ├── doc3033.txt
│   │   ├── doc3034.txt
│   │   ├── doc3035.txt
│   │   ├── doc3036.txt
│   │   ├── doc3037.txt
│   │   ├── doc3038.txt
│   │   ├── doc3039.txt
│   │   ├── doc304.txt
│   │   ├── doc3040.txt
│   │   ├── doc3041.txt
│   │   ├── doc3042.txt
│   │   ├── doc3043.txt
│   │   ├── doc3044.txt
│   │   ├── doc3045.txt
│   │   ├── doc3046.txt
│   │   ├── doc3047.txt
│   │   ├── doc3048.txt
│   │   ├── doc3049.txt
│   │   ├── doc305.txt
│   │   ├── doc3050.txt
│   │   ├── doc3051.txt
│   │   ├── doc3052.txt
│   │   ├── doc3053.txt
│   │   ├── doc3054.txt
│   │   ├── doc3055.txt
│   │   ├── doc3056.txt
│   │   ├── doc3057.txt
│   │   ├── doc3058.txt
│   │   ├── doc3059.txt
│   │   ├── doc306.txt
│   │   ├── doc3060.txt
│   │   ├── doc3061.txt
│   │   ├── doc3062.txt
│   │   ├── doc3063.txt
│   │   ├── doc3064.txt
│   │   ├── doc3065.txt
│   │   ├── doc3066.txt
│   │   ├── doc3067.txt
│   │   ├── doc3068.txt
│   │   ├── doc3069.txt
│   │   ├── doc307.txt
│   │   ├── doc3070.txt
│   │   ├── doc3071.txt
│   │   ├── doc3072.txt
│   │   ├── doc3073.txt
│   │   ├── doc3074.txt
│   │   ├── doc3075.txt
│   │   ├── doc3076.txt
│   │   ├── doc3077.txt
│   │   ├── doc3078.txt
│   │   ├── doc3079.txt
│   │   ├── doc308.txt
│   │   ├── doc3080.txt
│   │   ├── doc3081.txt
│   │   ├── doc3082.txt
│   │   ├── doc3083.txt
│   │   ├── doc3084.txt
│   │   ├── doc3085.txt
│   │   ├── doc3086.txt
│   │   ├── doc3087.txt
│   │   ├── doc3088.txt
│   │   ├── doc3089.txt
│   │   ├── doc309.txt
│   │   ├── doc3090.txt
│   │   ├── doc3091.txt
│   │   ├── doc3092.txt
│   │   ├── doc3093.txt
│   │   ├── doc3094.txt
│   │   ├── doc3095.txt
│   │   ├── doc3096.txt
│   │   ├── doc3097.txt
│   │   ├── doc3098.txt
│   │   ├── doc3099.txt
│   │   ├── doc31.txt
│   │   ├── doc310.txt
│   │   ├── doc3100.txt
│   │   ├── doc3101.txt
│   │   ├── doc3102.txt
│   │   ├── doc3103.txt
│   │   ├── doc3104.txt
│   │   ├── doc3105.txt
│   │   ├── doc3106.txt
│   │   ├── doc3107.txt
│   │   ├── doc3108.txt
│   │   ├── doc3109.txt
│   │   ├── doc311.txt
│   │   ├── doc3110.txt
│   │   ├── doc3111.txt
│   │   ├── doc3112.txt
│   │   ├── doc3113.txt
│   │   ├── doc3114.txt
│   │   ├── doc3115.txt
│   │   ├── doc3116.txt
│   │   ├── doc3117.txt
│   │   ├── doc3118.txt
│   │   ├── doc3119.txt
│   │   ├── doc312.txt
│   │   ├── doc3120.txt
│   │   ├── doc3121.txt
│   │   ├── doc3122.txt
│   │   ├── doc3123.txt
│   │   ├── doc3124.txt
│   │   ├── doc3125.txt
│   │   ├── doc3126.txt
│   │   ├── doc3127.txt
│   │   ├── doc3128.txt
│   │   ├── doc3129.txt
│   │   ├── doc313.txt
│   │   ├── doc3130.txt
│   │   ├── doc3131.txt
│   │   ├── doc3132.txt
│   │   ├── doc3133.txt
│   │   ├── doc3134.txt
│   │   ├── doc3135.txt
│   │   ├── doc3136.txt
│   │   ├── doc3137.txt
│   │   ├── doc3138.txt
│   │   ├── doc3139.txt
│   │   ├── doc314.txt
│   │   ├── doc3140.txt
│   │   ├── doc3141.txt
│   │   ├── doc3142.txt
│   │   ├── doc3143.txt
│   │   ├── doc3144.txt
│   │   ├── doc3145.txt
│   │   ├── doc3146.txt
│   │   ├── doc3147.txt
│   │   ├── doc3148.txt
│   │   ├── doc3149.txt
│   │   ├── doc315.txt
│   │   ├── doc3150.txt
│   │   ├── doc3151.txt
│   │   ├── doc3152.txt
│   │   ├── doc3153.txt
│   │   ├── doc3154.txt
│   │   ├── doc3155.txt
│   │   ├── doc3156.txt
│   │   ├── doc3157.txt
│   │   ├── doc3158.txt
│   │   ├── doc3159.txt
│   │   ├── doc316.txt
│   │   ├── doc3160.txt
│   │   ├── doc3161.txt
│   │   ├── doc3162.txt
│   │   ├── doc3163.txt
│   │   ├── doc3164.txt
│   │   ├── doc3165.txt
│   │   ├── doc3166.txt
│   │   ├── doc3167.txt
│   │   ├── doc3168.txt
│   │   ├── doc3169.txt
│   │   ├── doc317.txt
│   │   ├── doc3170.txt
│   │   ├── doc3171.txt
│   │   ├── doc3172.txt
│   │   ├── doc3173.txt
│   │   ├── doc3174.txt
│   │   ├── doc3175.txt
│   │   ├── doc3176.txt
│   │   ├── doc3177.txt
│   │   ├── doc3178.txt
│   │   ├── doc3179.txt
│   │   ├── doc318.txt
│   │   ├── doc3180.txt
│   │   ├── doc3181.txt
│   │   ├── doc3182.txt
│   │   ├── doc3183.txt
│   │   ├── doc3184.txt
│   │   ├── doc3185.txt
│   │   ├── doc3186.txt
│   │   ├── doc3187.txt
│   │   ├── doc3188.txt
│   │   ├── doc3189.txt
│   │   ├── doc319.txt
│   │   ├── doc3190.txt
│   │   ├── doc3191.txt
│   │   ├── doc3192.txt
│   │   ├── doc3193.txt
│   │   ├── doc3194.txt
│   │   ├── doc3195.txt
│   │   ├── doc3196.txt
│   │   ├── doc3197.txt
│   │   ├── doc3198.txt
│   │   ├── doc3199.txt
│   │   ├── doc32.txt
│   │   ├── doc320.txt
│   │   ├── doc3200.txt
│   │   ├── doc3201.txt
│   │   ├── doc3202.txt
│   │   ├── doc3203.txt
│   │   ├── doc3204.txt
│   │   ├── doc3205.txt
│   │   ├── doc3206.txt
│   │   ├── doc3207.txt
│   │   ├── doc3208.txt
│   │   ├── doc3209.txt
│   │   ├── doc321.txt
│   │   ├── doc3210.txt
│   │   ├── doc3211.txt
│   │   ├── doc3212.txt
│   │   ├── doc3213.txt
│   │   ├── doc3214.txt
│   │   ├── doc3215.txt
│   │   ├── doc3216.txt
│   │   ├── doc3217.txt
│   │   ├── doc3218.txt
│   │   ├── doc3219.txt
│   │   ├── doc322.txt
│   │   ├── doc3220.txt
│   │   ├── doc3221.txt
│   │   ├── doc3222.txt
│   │   ├── doc3223.txt
│   │   ├── doc3224.txt
│   │   ├── doc3225.txt
│   │   ├── doc3226.txt
│   │   ├── doc3227.txt
│   │   ├── doc3228.txt
│   │   ├── doc3229.txt
│   │   ├── doc323.txt
│   │   ├── doc3230.txt
│   │   ├── doc3231.txt
│   │   ├── doc3232.txt
│   │   ├── doc3233.txt
│   │   ├── doc3234.txt
│   │   ├── doc3235.txt
│   │   ├── doc3236.txt
│   │   ├── doc3237.txt
│   │   ├── doc3238.txt
│   │   ├── doc3239.txt
│   │   ├── doc324.txt
│   │   ├── doc3240.txt
│   │   ├── doc3241.txt
│   │   ├── doc3242.txt
│   │   ├── doc3243.txt
│   │   ├── doc3244.txt
│   │   ├── doc3245.txt
│   │   ├── doc3246.txt
│   │   ├── doc3247.txt
│   │   ├── doc3248.txt
│   │   ├── doc3249.txt
│   │   ├── doc325.txt
│   │   ├── doc3250.txt
│   │   ├── doc3251.txt
│   │   ├── doc3252.txt
│   │   ├── doc3253.txt
│   │   ├── doc3254.txt
│   │   ├── doc3255.txt
│   │   ├── doc3256.txt
│   │   ├── doc3257.txt
│   │   ├── doc3258.txt
│   │   ├── doc3259.txt
│   │   ├── doc326.txt
│   │   ├── doc3260.txt
│   │   ├── doc3261.txt
│   │   ├── doc3262.txt
│   │   ├── doc3263.txt
│   │   ├── doc3264.txt
│   │   ├── doc3265.txt
│   │   ├── doc3266.txt
│   │   ├── doc3267.txt
│   │   ├── doc3268.txt
│   │   ├── doc3269.txt
│   │   ├── doc327.txt
│   │   ├── doc3270.txt
│   │   ├── doc3271.txt
│   │   ├── doc3272.txt
│   │   ├── doc3273.txt
│   │   ├── doc3274.txt
│   │   ├── doc3275.txt
│   │   ├── doc3276.txt
│   │   ├── doc3277.txt
│   │   ├── doc3278.txt
│   │   ├── doc3279.txt
│   │   ├── doc328.txt
│   │   ├── doc3280.txt
│   │   ├── doc3281.txt
│   │   ├── doc3282.txt
│   │   ├── doc3283.txt
│   │   ├── doc3284.txt
│   │   ├── doc3285.txt
│   │   ├── doc3286.txt
│   │   ├── doc3287.txt
│   │   ├── doc3288.txt
│   │   ├── doc3289.txt
│   │   ├── doc329.txt
│   │   ├── doc3290.txt
│   │   ├── doc3291.txt
│   │   ├── doc3292.txt
│   │   ├── doc3293.txt
│   │   ├── doc3294.txt
│   │   ├── doc3295.txt
│   │   ├── doc3296.txt
│   │   ├── doc3297.txt
│   │   ├── doc3298.txt
│   │   ├── doc3299.txt
│   │   ├── doc33.txt
│   │   ├── doc330.txt
│   │   ├── doc3300.txt
│   │   ├── doc3301.txt
│   │   ├── doc3302.txt
│   │   ├── doc3303.txt
│   │   ├── doc3304.txt
│   │   ├── doc3305.txt
│   │   ├── doc3306.txt
│   │   ├── doc3307.txt
│   │   ├── doc3308.txt
│   │   ├── doc3309.txt
│   │   ├── doc331.txt
│   │   ├── doc3310.txt
│   │   ├── doc3311.txt
│   │   ├── doc3312.txt
│   │   ├── doc3313.txt
│   │   ├── doc3314.txt
│   │   ├── doc3315.txt
│   │   ├── doc3316.txt
│   │   ├── doc3317.txt
│   │   ├── doc3318.txt
│   │   ├── doc3319.txt
│   │   ├── doc332.txt
│   │   ├── doc3320.txt
│   │   ├── doc3321.txt
│   │   ├── doc3322.txt
│   │   ├── doc3323.txt
│   │   ├── doc3324.txt
│   │   ├── doc3325.txt
│   │   ├── doc3326.txt
│   │   ├── doc3327.txt
│   │   ├── doc3328.txt
│   │   ├── doc3329.txt
│   │   ├── doc333.txt
│   │   ├── doc3330.txt
│   │   ├── doc3331.txt
│   │   ├── doc3332.txt
│   │   ├── doc3333.txt
│   │   ├── doc3334.txt
│   │   ├── doc3335.txt
│   │   ├── doc3336.txt
│   │   ├── doc3337.txt
│   │   ├── doc3338.txt
│   │   ├── doc3339.txt
│   │   ├── doc334.txt
│   │   ├── doc3340.txt
│   │   ├── doc3341.txt
│   │   ├── doc3342.txt
│   │   ├── doc3343.txt
│   │   ├── doc3344.txt
│   │   ├── doc3345.txt
│   │   ├── doc3346.txt
│   │   ├── doc3347.txt
│   │   ├── doc3348.txt
│   │   ├── doc3349.txt
│   │   ├── doc335.txt
│   │   ├── doc3350.txt
│   │   ├── doc3351.txt
│   │   ├── doc3352.txt
│   │   ├── doc3353.txt
│   │   ├── doc3354.txt
│   │   ├── doc3355.txt
│   │   ├── doc3356.txt
│   │   ├── doc3357.txt
│   │   ├── doc3358.txt
│   │   ├── doc3359.txt
│   │   ├── doc336.txt
│   │   ├── doc3360.txt
│   │   ├── doc3361.txt
│   │   ├── doc3362.txt
│   │   ├── doc3363.txt
│   │   ├── doc3364.txt
│   │   ├── doc3365.txt
│   │   ├── doc3366.txt
│   │   ├── doc3367.txt
│   │   ├── doc3368.txt
│   │   ├── doc3369.txt
│   │   ├── doc337.txt
│   │   ├── doc3370.txt
│   │   ├── doc3371.txt
│   │   ├── doc3372.txt
│   │   ├── doc3373.txt
│   │   ├── doc3374.txt
│   │   ├── doc3375.txt
│   │   ├── doc3376.txt
│   │   ├── doc3377.txt
│   │   ├── doc3378.txt
│   │   ├── doc3379.txt
│   │   ├── doc338.txt
│   │   ├── doc3380.txt
│   │   ├── doc3381.txt
│   │   ├── doc3382.txt
│   │   ├── doc3383.txt
│   │   ├── doc3384.txt
│   │   ├── doc3385.txt
│   │   ├── doc3386.txt
│   │   ├── doc3387.txt
│   │   ├── doc3388.txt
│   │   ├── doc3389.txt
│   │   ├── doc339.txt
│   │   ├── doc3390.txt
│   │   ├── doc3391.txt
│   │   ├── doc3392.txt
│   │   ├── doc3393.txt
│   │   ├── doc3394.txt
│   │   ├── doc3395.txt
│   │   ├── doc3396.txt
│   │   ├── doc3397.txt
│   │   ├── doc3398.txt
│   │   ├── doc3399.txt
│   │   ├── doc34.txt
│   │   ├── doc340.txt
│   │   ├── doc3400.txt
│   │   ├── doc3401.txt
│   │   ├── doc3402.txt
│   │   ├── doc3403.txt
│   │   ├── doc3404.txt
│   │   ├── doc3405.txt
│   │   ├── doc3406.txt
│   │   ├── doc3407.txt
│   │   ├── doc3408.txt
│   │   ├── doc3409.txt
│   │   ├── doc341.txt
│   │   ├── doc3410.txt
│   │   ├── doc3411.txt
│   │   ├── doc3412.txt
│   │   ├── doc3413.txt
│   │   ├── doc3414.txt
│   │   ├── doc3415.txt
│   │   ├── doc3416.txt
│   │   ├── doc3417.txt
│   │   ├── doc3418.txt
│   │   ├── doc3419.txt
│   │   ├── doc342.txt
│   │   ├── doc3420.txt
│   │   ├── doc3421.txt
│   │   ├── doc3422.txt
│   │   ├── doc3423.txt
│   │   ├── doc3424.txt
│   │   ├── doc3425.txt
│   │   ├── doc3426.txt
│   │   ├── doc3427.txt
│   │   ├── doc3428.txt
│   │   ├── doc3429.txt
│   │   ├── doc343.txt
│   │   ├── doc3430.txt
│   │   ├── doc3431.txt
│   │   ├── doc3432.txt
│   │   ├── doc3433.txt
│   │   ├── doc3434.txt
│   │   ├── doc3435.txt
│   │   ├── doc3436.txt
│   │   ├── doc3437.txt
│   │   ├── doc3438.txt
│   │   ├── doc3439.txt
│   │   ├── doc344.txt
│   │   ├── doc3440.txt
│   │   ├── doc3441.txt
│   │   ├── doc3442.txt
│   │   ├── doc3443.txt
│   │   ├── doc3444.txt
│   │   ├── doc3445.txt
│   │   ├── doc3446.txt
│   │   ├── doc3447.txt
│   │   ├── doc3448.txt
│   │   ├── doc3449.txt
│   │   ├── doc345.txt
│   │   ├── doc3450.txt
│   │   ├── doc3451.txt
│   │   ├── doc3452.txt
│   │   ├── doc3453.txt
│   │   ├── doc3454.txt
│   │   ├── doc3455.txt
│   │   ├── doc3456.txt
│   │   ├── doc3457.txt
│   │   ├── doc3458.txt
│   │   ├── doc3459.txt
│   │   ├── doc346.txt
│   │   ├── doc3460.txt
│   │   ├── doc3461.txt
│   │   ├── doc3462.txt
│   │   ├── doc3463.txt
│   │   ├── doc3464.txt
│   │   ├── doc3465.txt
│   │   ├── doc3466.txt
│   │   ├── doc3467.txt
│   │   ├── doc3468.txt
│   │   ├── doc3469.txt
│   │   ├── doc347.txt
│   │   ├── doc3470.txt
│   │   ├── doc3471.txt
│   │   ├── doc3472.txt
│   │   ├── doc3473.txt
│   │   ├── doc3474.txt
│   │   ├── doc3475.txt
│   │   ├── doc3476.txt
│   │   ├── doc3477.txt
│   │   ├── doc3478.txt
│   │   ├── doc3479.txt
│   │   ├── doc348.txt
│   │   ├── doc3480.txt
│   │   ├── doc3481.txt
│   │   ├── doc3482.txt
│   │   ├── doc3483.txt
│   │   ├── doc3484.txt
│   │   ├── doc3485.txt
│   │   ├── doc3486.txt
│   │   ├── doc3487.txt
│   │   ├── doc3488.txt
│   │   ├── doc3489.txt
│   │   ├── doc349.txt
│   │   ├── doc3490.txt
│   │   ├── doc3491.txt
│   │   ├── doc3492.txt
│   │   ├── doc3493.txt
│   │   ├── doc3494.txt
│   │   ├── doc3495.txt
│   │   ├── doc3496.txt
│   │   ├── doc3497.txt
│   │   ├── doc3498.txt
│   │   ├── doc3499.txt
│   │   ├── doc35.txt
│   │   ├── doc350.txt
│   │   ├── doc3500.txt
│   │   ├── doc3501.txt
│   │   ├── doc3502.txt
│   │   ├── doc3503.txt
│   │   ├── doc3504.txt
│   │   ├── doc3505.txt
│   │   ├── doc3506.txt
│   │   ├── doc3507.txt
│   │   ├── doc3508.txt
│   │   ├── doc3509.txt
│   │   ├── doc351.txt
│   │   ├── doc3510.txt
│   │   ├── doc3511.txt
│   │   ├── doc3512.txt
│   │   ├── doc3513.txt
│   │   ├── doc3514.txt
│   │   ├── doc3515.txt
│   │   ├── doc3516.txt
│   │   ├── doc3517.txt
│   │   ├── doc3518.txt
│   │   ├── doc3519.txt
│   │   ├── doc352.txt
│   │   ├── doc3520.txt
│   │   ├── doc3521.txt
│   │   ├── doc3522.txt
│   │   ├── doc3523.txt
│   │   ├── doc3524.txt
│   │   ├── doc3525.txt
│   │   ├── doc3526.txt
│   │   ├── doc3527.txt
│   │   ├── doc3528.txt
│   │   ├── doc3529.txt
│   │   ├── doc353.txt
│   │   ├── doc3530.txt
│   │   ├── doc3531.txt
│   │   ├── doc3532.txt
│   │   ├── doc3533.txt
│   │   ├── doc3534.txt
│   │   ├── doc3535.txt
│   │   ├── doc3536.txt
│   │   ├── doc3537.txt
│   │   ├── doc3538.txt
│   │   ├── doc3539.txt
│   │   ├── doc354.txt
│   │   ├── doc3540.txt
│   │   ├── doc3541.txt
│   │   ├── doc3542.txt
│   │   ├── doc3543.txt
│   │   ├── doc3544.txt
│   │   ├── doc3545.txt
│   │   ├── doc3546.txt
│   │   ├── doc3547.txt
│   │   ├── doc3548.txt
│   │   ├── doc3549.txt
│   │   ├── doc355.txt
│   │   ├── doc3550.txt
│   │   ├── doc3551.txt
│   │   ├── doc3552.txt
│   │   ├── doc3553.txt
│   │   ├── doc3554.txt
│   │   ├── doc3555.txt
│   │   ├── doc3556.txt
│   │   ├── doc3557.txt
│   │   ├── doc3558.txt
│   │   ├── doc3559.txt
│   │   ├── doc356.txt
│   │   ├── doc3560.txt
│   │   ├── doc3561.txt
│   │   ├── doc3562.txt
│   │   ├── doc3563.txt
│   │   ├── doc3564.txt
│   │   ├── doc3565.txt
│   │   ├── doc3566.txt
│   │   ├── doc3567.txt
│   │   ├── doc3568.txt
│   │   ├── doc3569.txt
│   │   ├── doc357.txt
│   │   ├── doc3570.txt
│   │   ├── doc3571.txt
│   │   ├── doc3572.txt
│   │   ├── doc3573.txt
│   │   ├── doc3574.txt
│   │   ├── doc3575.txt
│   │   ├── doc3576.txt
│   │   ├── doc3577.txt
│   │   ├── doc3578.txt
│   │   ├── doc3579.txt
│   │   ├── doc358.txt
│   │   ├── doc3580.txt
│   │   ├── doc3581.txt
│   │   ├── doc3582.txt
│   │   ├── doc3583.txt
│   │   ├── doc3584.txt
│   │   ├── doc3585.txt
│   │   ├── doc3586.txt
│   │   ├── doc3587.txt
│   │   ├── doc3588.txt
│   │   ├── doc3589.txt
│   │   ├── doc359.txt
│   │   ├── doc3590.txt
│   │   ├── doc3591.txt
│   │   ├── doc3592.txt
│   │   ├── doc3593.txt
│   │   ├── doc3594.txt
│   │   ├── doc3595.txt
│   │   ├── doc3596.txt
│   │   ├── doc3597.txt
│   │   ├── doc3598.txt
│   │   ├── doc3599.txt
│   │   ├── doc36.txt
│   │   ├── doc360.txt
│   │   ├── doc3600.txt
│   │   ├── doc3601.txt
│   │   ├── doc3602.txt
│   │   ├── doc3603.txt
│   │   ├── doc3604.txt
│   │   ├── doc3605.txt
│   │   ├── doc3606.txt
│   │   ├── doc3607.txt
│   │   ├── doc3608.txt
│   │   ├── doc3609.txt
│   │   ├── doc361.txt
│   │   ├── doc3610.txt
│   │   ├── doc3611.txt
│   │   ├── doc3612.txt
│   │   ├── doc3613.txt
│   │   ├── doc3614.txt
│   │   ├── doc3615.txt
│   │   ├── doc3616.txt
│   │   ├── doc3617.txt
│   │   ├── doc3618.txt
│   │   ├── doc3619.txt
│   │   ├── doc362.txt
│   │   ├── doc3620.txt
│   │   ├── doc3621.txt
│   │   ├── doc3622.txt
│   │   ├── doc3623.txt
│   │   ├── doc3624.txt
│   │   ├── doc3625.txt
│   │   ├── doc3626.txt
│   │   ├── doc3627.txt
│   │   ├── doc3628.txt
│   │   ├── doc3629.txt
│   │   ├── doc363.txt
│   │   ├── doc3630.txt
│   │   ├── doc3631.txt
│   │   ├── doc3632.txt
│   │   ├── doc3633.txt
│   │   ├── doc3634.txt
│   │   ├── doc3635.txt
│   │   ├── doc3636.txt
│   │   ├── doc3637.txt
│   │   ├── doc3638.txt
│   │   ├── doc3639.txt
│   │   ├── doc364.txt
│   │   ├── doc3640.txt
│   │   ├── doc3641.txt
│   │   ├── doc3642.txt
│   │   ├── doc3643.txt
│   │   ├── doc3644.txt
│   │   ├── doc3645.txt
│   │   ├── doc3646.txt
│   │   ├── doc3647.txt
│   │   ├── doc3648.txt
│   │   ├── doc3649.txt
│   │   ├── doc365.txt
│   │   ├── doc3650.txt
│   │   ├── doc3651.txt
│   │   ├── doc3652.txt
│   │   ├── doc3653.txt
│   │   ├── doc3654.txt
│   │   ├── doc3655.txt
│   │   ├── doc3656.txt
│   │   ├── doc3657.txt
│   │   ├── doc3658.txt
│   │   ├── doc3659.txt
│   │   ├── doc366.txt
│   │   ├── doc3660.txt
│   │   ├── doc3661.txt
│   │   ├── doc3662.txt
│   │   ├── doc3663.txt
│   │   ├── doc3664.txt
│   │   ├── doc3665.txt
│   │   ├── doc3666.txt
│   │   ├── doc3667.txt
│   │   ├── doc3668.txt
│   │   ├── doc3669.txt
│   │   ├── doc367.txt
│   │   ├── doc3670.txt
│   │   ├── doc3671.txt
│   │   ├── doc3672.txt
│   │   ├── doc3673.txt
│   │   ├── doc3674.txt
│   │   ├── doc3675.txt
│   │   ├── doc3676.txt
│   │   ├── doc3677.txt
│   │   ├── doc3678.txt
│   │   ├── doc3679.txt
│   │   ├── doc368.txt
│   │   ├── doc3680.txt
│   │   ├── doc3681.txt
│   │   ├── doc3682.txt
│   │   ├── doc3683.txt
│   │   ├── doc3684.txt
│   │   ├── doc3685.txt
│   │   ├── doc3686.txt
│   │   ├── doc3687.txt
│   │   ├── doc3688.txt
│   │   ├── doc3689.txt
│   │   ├── doc369.txt
│   │   ├── doc3690.txt
│   │   ├── doc3691.txt
│   │   ├── doc3692.txt
│   │   ├── doc3693.txt
│   │   ├── doc3694.txt
│   │   ├── doc3695.txt
│   │   ├── doc3696.txt
│   │   ├── doc3697.txt
│   │   ├── doc3698.txt
│   │   ├── doc3699.txt
│   │   ├── doc37.txt
│   │   ├── doc370.txt
│   │   ├── doc3700.txt
│   │   ├── doc3701.txt
│   │   ├── doc3702.txt
│   │   ├── doc3703.txt
│   │   ├── doc3704.txt
│   │   ├── doc3705.txt
│   │   ├── doc3706.txt
│   │   ├── doc3707.txt
│   │   ├── doc3708.txt
│   │   ├── doc3709.txt
│   │   ├── doc371.txt
│   │   ├── doc3710.txt
│   │   ├── doc3711.txt
│   │   ├── doc3712.txt
│   │   ├── doc3713.txt
│   │   ├── doc3714.txt
│   │   ├── doc3715.txt
│   │   ├── doc3716.txt
│   │   ├── doc3717.txt
│   │   ├── doc3718.txt
│   │   ├── doc3719.txt
│   │   ├── doc372.txt
│   │   ├── doc3720.txt
│   │   ├── doc3721.txt
│   │   ├── doc3722.txt
│   │   ├── doc3723.txt
│   │   ├── doc3724.txt
│   │   ├── doc3725.txt
│   │   ├── doc3726.txt
│   │   ├── doc3727.txt
│   │   ├── doc3728.txt
│   │   ├── doc3729.txt
│   │   ├── doc373.txt
│   │   ├── doc3730.txt
│   │   ├── doc3731.txt
│   │   ├── doc3732.txt
│   │   ├── doc3733.txt
│   │   ├── doc3734.txt
│   │   ├── doc3735.txt
│   │   ├── doc3736.txt
│   │   ├── doc3737.txt
│   │   ├── doc3738.txt
│   │   ├── doc3739.txt
│   │   ├── doc374.txt
│   │   ├── doc3740.txt
│   │   ├── doc3741.txt
│   │   ├── doc3742.txt
│   │   ├── doc3743.txt
│   │   ├── doc3744.txt
│   │   ├── doc3745.txt
│   │   ├── doc3746.txt
│   │   ├── doc3747.txt
│   │   ├── doc3748.txt
│   │   ├── doc3749.txt
│   │   ├── doc375.txt
│   │   ├── doc3750.txt
│   │   ├── doc3751.txt
│   │   ├── doc3752.txt
│   │   ├── doc3753.txt
│   │   ├── doc3754.txt
│   │   ├── doc3755.txt
│   │   ├── doc3756.txt
│   │   ├── doc3757.txt
│   │   ├── doc3758.txt
│   │   ├── doc3759.txt
│   │   ├── doc376.txt
│   │   ├── doc3760.txt
│   │   ├── doc3761.txt
│   │   ├── doc3762.txt
│   │   ├── doc3763.txt
│   │   ├── doc3764.txt
│   │   ├── doc3765.txt
│   │   ├── doc3766.txt
│   │   ├── doc3767.txt
│   │   ├── doc3768.txt
│   │   ├── doc3769.txt
│   │   ├── doc377.txt
│   │   ├── doc3770.txt
│   │   ├── doc3771.txt
│   │   ├── doc3772.txt
│   │   ├── doc3773.txt
│   │   ├── doc3774.txt
│   │   ├── doc3775.txt
│   │   ├── doc3776.txt
│   │   ├── doc3777.txt
│   │   ├── doc3778.txt
│   │   ├── doc3779.txt
│   │   ├── doc378.txt
│   │   ├── doc3780.txt
│   │   ├── doc3781.txt
│   │   ├── doc3782.txt
│   │   ├── doc3783.txt
│   │   ├── doc3784.txt
│   │   ├── doc3785.txt
│   │   ├── doc3786.txt
│   │   ├── doc3787.txt
│   │   ├── doc3788.txt
│   │   ├── doc3789.txt
│   │   ├── doc379.txt
│   │   ├── doc3790.txt
│   │   ├── doc3791.txt
│   │   ├── doc3792.txt
│   │   ├── doc3793.txt
│   │   ├── doc3794.txt
│   │   ├── doc3795.txt
│   │   ├── doc3796.txt
│   │   ├── doc3797.txt
│   │   ├── doc3798.txt
│   │   ├── doc3799.txt
│   │   ├── doc38.txt
│   │   ├── doc380.txt
│   │   ├── doc3800.txt
│   │   ├── doc3801.txt
│   │   ├── doc3802.txt
│   │   ├── doc3803.txt
│   │   ├── doc3804.txt
│   │   ├── doc3805.txt
│   │   ├── doc3806.txt
│   │   ├── doc3807.txt
│   │   ├── doc3808.txt
│   │   ├── doc3809.txt
│   │   ├── doc381.txt
│   │   ├── doc3810.txt
│   │   ├── doc3811.txt
│   │   ├── doc3812.txt
│   │   ├── doc3813.txt
│   │   ├── doc3814.txt
│   │   ├── doc3815.txt
│   │   ├── doc3816.txt
│   │   ├── doc3817.txt
│   │   ├── doc3818.txt
│   │   ├── doc3819.txt
│   │   ├── doc382.txt
│   │   ├── doc3820.txt
│   │   ├── doc3821.txt
│   │   ├── doc3822.txt
│   │   ├── doc3823.txt
│   │   ├── doc3824.txt
│   │   ├── doc3825.txt
│   │   ├── doc3826.txt
│   │   ├── doc3827.txt
│   │   ├── doc3828.txt
│   │   ├── doc3829.txt
│   │   ├── doc383.txt
│   │   ├── doc3830.txt
│   │   ├── doc3831.txt
│   │   ├── doc3832.txt
│   │   ├── doc3833.txt
│   │   ├── doc3834.txt
│   │   ├── doc3835.txt
│   │   ├── doc3836.txt
│   │   ├── doc3837.txt
│   │   ├── doc3838.txt
│   │   ├── doc3839.txt
│   │   ├── doc384.txt
│   │   ├── doc3840.txt
│   │   ├── doc3841.txt
│   │   ├── doc3842.txt
│   │   ├── doc3843.txt
│   │   ├── doc3844.txt
│   │   ├── doc3845.txt
│   │   ├── doc3846.txt
│   │   ├── doc3847.txt
│   │   ├── doc3848.txt
│   │   ├── doc3849.txt
│   │   ├── doc385.txt
│   │   ├── doc3850.txt
│   │   ├── doc3851.txt
│   │   ├── doc3852.txt
│   │   ├── doc3853.txt
│   │   ├── doc3854.txt
│   │   ├── doc3855.txt
│   │   ├── doc3856.txt
│   │   ├── doc3857.txt
│   │   ├── doc3858.txt
│   │   ├── doc3859.txt
│   │   ├── doc386.txt
│   │   ├── doc3860.txt
│   │   ├── doc3861.txt
│   │   ├── doc3862.txt
│   │   ├── doc3863.txt
│   │   ├── doc3864.txt
│   │   ├── doc3865.txt
│   │   ├── doc3866.txt
│   │   ├── doc3867.txt
│   │   ├── doc3868.txt
│   │   ├── doc3869.txt
│   │   ├── doc387.txt
│   │   ├── doc3870.txt
│   │   ├── doc3871.txt
│   │   ├── doc3872.txt
│   │   ├── doc3873.txt
│   │   ├── doc3874.txt
│   │   ├── doc3875.txt
│   │   ├── doc3876.txt
│   │   ├── doc3877.txt
│   │   ├── doc3878.txt
│   │   ├── doc3879.txt
│   │   ├── doc388.txt
│   │   ├── doc3880.txt
│   │   ├── doc3881.txt
│   │   ├── doc3882.txt
│   │   ├── doc3883.txt
│   │   ├── doc3884.txt
│   │   ├── doc3885.txt
│   │   ├── doc3886.txt
│   │   ├── doc3887.txt
│   │   ├── doc3888.txt
│   │   ├── doc3889.txt
│   │   ├── doc389.txt
│   │   ├── doc3890.txt
│   │   ├── doc3891.txt
│   │   ├── doc3892.txt
│   │   ├── doc3893.txt
│   │   ├── doc3894.txt
│   │   ├── doc3895.txt
│   │   ├── doc3896.txt
│   │   ├── doc3897.txt
│   │   ├── doc3898.txt
│   │   ├── doc3899.txt
│   │   ├── doc39.txt
│   │   ├── doc390.txt
│   │   ├── doc3900.txt
│   │   ├── doc3901.txt
│   │   ├── doc3902.txt
│   │   ├── doc3903.txt
│   │   ├── doc3904.txt
│   │   ├── doc3905.txt
│   │   ├── doc3906.txt
│   │   ├── doc3907.txt
│   │   ├── doc3908.txt
│   │   ├── doc3909.txt
│   │   ├── doc391.txt
│   │   ├── doc3910.txt
│   │   ├── doc3911.txt
│   │   ├── doc3912.txt
│   │   ├── doc3913.txt
│   │   ├── doc3914.txt
│   │   ├── doc3915.txt
│   │   ├── doc3916.txt
│   │   ├── doc3917.txt
│   │   ├── doc3918.txt
│   │   ├── doc3919.txt
│   │   ├── doc392.txt
│   │   ├── doc3920.txt
│   │   ├── doc3921.txt
│   │   ├── doc3922.txt
│   │   ├── doc3923.txt
│   │   ├── doc3924.txt
│   │   ├── doc3925.txt
│   │   ├── doc3926.txt
│   │   ├── doc3927.txt
│   │   ├── doc3928.txt
│   │   ├── doc3929.txt
│   │   ├── doc393.txt
│   │   ├── doc3930.txt
│   │   ├── doc3931.txt
│   │   ├── doc3932.txt
│   │   ├── doc3933.txt
│   │   ├── doc3934.txt
│   │   ├── doc3935.txt
│   │   ├── doc3936.txt
│   │   ├── doc3937.txt
│   │   ├── doc3938.txt
│   │   ├── doc3939.txt
│   │   ├── doc394.txt
│   │   ├── doc3940.txt
│   │   ├── doc3941.txt
│   │   ├── doc3942.txt
│   │   ├── doc3943.txt
│   │   ├── doc3944.txt
│   │   ├── doc3945.txt
│   │   ├── doc3946.txt
│   │   ├── doc3947.txt
│   │   ├── doc3948.txt
│   │   ├── doc3949.txt
│   │   ├── doc395.txt
│   │   ├── doc3950.txt
│   │   ├── doc3951.txt
│   │   ├── doc3952.txt
│   │   ├── doc3953.txt
│   │   ├── doc3954.txt
│   │   ├── doc3955.txt
│   │   ├── doc3956.txt
│   │   ├── doc3957.txt
│   │   ├── doc3958.txt
│   │   ├── doc3959.txt
│   │   ├── doc396.txt
│   │   ├── doc3960.txt
│   │   ├── doc3961.txt
│   │   ├── doc3962.txt
│   │   ├── doc3963.txt
│   │   ├── doc3964.txt
│   │   ├── doc3965.txt
│   │   ├── doc3966.txt
│   │   ├── doc3967.txt
│   │   ├── doc3968.txt
│   │   ├── doc3969.txt
│   │   ├── doc397.txt
│   │   ├── doc3970.txt
│   │   ├── doc3971.txt
│   │   ├── doc3972.txt
│   │   ├── doc3973.txt
│   │   ├── doc3974.txt
│   │   ├── doc3975.txt
│   │   ├── doc3976.txt
│   │   ├── doc3977.txt
│   │   ├── doc3978.txt
│   │   ├── doc3979.txt
│   │   ├── doc398.txt
│   │   ├── doc3980.txt
│   │   ├── doc3981.txt
│   │   ├── doc3982.txt
│   │   ├── doc3983.txt
│   │   ├── doc3984.txt
│   │   ├── doc3985.txt
│   │   ├── doc3986.txt
│   │   ├── doc3987.txt
│   │   ├── doc3988.txt
│   │   ├── doc3989.txt
│   │   ├── doc399.txt
│   │   ├── doc3990.txt
│   │   ├── doc3991.txt
│   │   ├── doc3992.txt
│   │   ├── doc3993.txt
│   │   ├── doc3994.txt
│   │   ├── doc3995.txt
│   │   ├── doc3996.txt
│   │   ├── doc3997.txt
│   │   ├── doc3998.txt
│   │   ├── doc3999.txt
│   │   ├── doc4.txt
│   │   ├── doc40.txt
│   │   ├── doc400.txt
│   │   ├── doc4000.txt
│   │   ├── doc4001.txt
│   │   ├── doc4002.txt
│   │   ├── doc4003.txt
│   │   ├── doc4004.txt
│   │   ├── doc4005.txt
│   │   ├── doc4006.txt
│   │   ├── doc4007.txt
│   │   ├── doc4008.txt
│   │   ├── doc4009.txt
│   │   ├── doc401.txt
│   │   ├── doc4010.txt
│   │   ├── doc4011.txt
│   │   ├── doc4012.txt
│   │   ├── doc4013.txt
│   │   ├── doc4014.txt
│   │   ├── doc4015.txt
│   │   ├── doc4016.txt
│   │   ├── doc4017.txt
│   │   ├── doc4018.txt
│   │   ├── doc4019.txt
│   │   ├── doc402.txt
│   │   ├── doc4020.txt
│   │   ├── doc4021.txt
│   │   ├── doc4022.txt
│   │   ├── doc4023.txt
│   │   ├── doc4024.txt
│   │   ├── doc4025.txt
│   │   ├── doc4026.txt
│   │   ├── doc4027.txt
│   │   ├── doc4028.txt
│   │   ├── doc4029.txt
│   │   ├── doc403.txt
│   │   ├── doc4030.txt
│   │   ├── doc4031.txt
│   │   ├── doc4032.txt
│   │   ├── doc4033.txt
│   │   ├── doc4034.txt
│   │   ├── doc4035.txt
│   │   ├── doc4036.txt
│   │   ├── doc4037.txt
│   │   ├── doc4038.txt
│   │   ├── doc4039.txt
│   │   ├── doc404.txt
│   │   ├── doc4040.txt
│   │   ├── doc4041.txt
│   │   ├── doc4042.txt
│   │   ├── doc4043.txt
│   │   ├── doc4044.txt
│   │   ├── doc4045.txt
│   │   ├── doc4046.txt
│   │   ├── doc4047.txt
│   │   ├── doc4048.txt
│   │   ├── doc4049.txt
│   │   ├── doc405.txt
│   │   ├── doc4050.txt
│   │   ├── doc4051.txt
│   │   ├── doc4052.txt
│   │   ├── doc4053.txt
│   │   ├── doc4054.txt
│   │   ├── doc4055.txt
│   │   ├── doc4056.txt
│   │   ├── doc4057.txt
│   │   ├── doc4058.txt
│   │   ├── doc4059.txt
│   │   ├── doc406.txt
│   │   ├── doc4060.txt
│   │   ├── doc4061.txt
│   │   ├── doc4062.txt
│   │   ├── doc4063.txt
│   │   ├── doc4064.txt
│   │   ├── doc4065.txt
│   │   ├── doc4066.txt
│   │   ├── doc4067.txt
│   │   ├── doc4068.txt
│   │   ├── doc4069.txt
│   │   ├── doc407.txt
│   │   ├── doc4070.txt
│   │   ├── doc4071.txt
│   │   ├── doc4072.txt
│   │   ├── doc4073.txt
│   │   ├── doc4074.txt
│   │   ├── doc4075.txt
│   │   ├── doc4076.txt
│   │   ├── doc4077.txt
│   │   ├── doc4078.txt
│   │   ├── doc4079.txt
│   │   ├── doc408.txt
│   │   ├── doc4080.txt
│   │   ├── doc4081.txt
│   │   ├── doc4082.txt
│   │   ├── doc4083.txt
│   │   ├── doc4084.txt
│   │   ├── doc4085.txt
│   │   ├── doc4086.txt
│   │   ├── doc4087.txt
│   │   ├── doc4088.txt
│   │   ├── doc4089.txt
│   │   ├── doc409.txt
│   │   ├── doc4090.txt
│   │   ├── doc4091.txt
│   │   ├── doc4092.txt
│   │   ├── doc4093.txt
│   │   ├── doc4094.txt
│   │   ├── doc4095.txt
│   │   ├── doc4096.txt
│   │   ├── doc4097.txt
│   │   ├── doc4098.txt
│   │   ├── doc4099.txt
│   │   ├── doc41.txt
│   │   ├── doc410.txt
│   │   ├── doc4100.txt
│   │   ├── doc4101.txt
│   │   ├── doc4102.txt
│   │   ├── doc4103.txt
│   │   ├── doc4104.txt
│   │   ├── doc4105.txt
│   │   ├── doc4106.txt
│   │   ├── doc4107.txt
│   │   ├── doc4108.txt
│   │   ├── doc4109.txt
│   │   ├── doc411.txt
│   │   ├── doc4110.txt
│   │   ├── doc4111.txt
│   │   ├── doc4112.txt
│   │   ├── doc4113.txt
│   │   ├── doc4114.txt
│   │   ├── doc4115.txt
│   │   ├── doc4116.txt
│   │   ├── doc4117.txt
│   │   ├── doc4118.txt
│   │   ├── doc4119.txt
│   │   ├── doc412.txt
│   │   ├── doc4120.txt
│   │   ├── doc4121.txt
│   │   ├── doc4122.txt
│   │   ├── doc4123.txt
│   │   ├── doc4124.txt
│   │   ├── doc4125.txt
│   │   ├── doc4126.txt
│   │   ├── doc4127.txt
│   │   ├── doc4128.txt
│   │   ├── doc4129.txt
│   │   ├── doc413.txt
│   │   ├── doc4130.txt
│   │   ├── doc4131.txt
│   │   ├── doc4132.txt
│   │   ├── doc4133.txt
│   │   ├── doc4134.txt
│   │   ├── doc4135.txt
│   │   ├── doc4136.txt
│   │   ├── doc4137.txt
│   │   ├── doc4138.txt
│   │   ├── doc4139.txt
│   │   ├── doc414.txt
│   │   ├── doc4140.txt
│   │   ├── doc4141.txt
│   │   ├── doc4142.txt
│   │   ├── doc4143.txt
│   │   ├── doc4144.txt
│   │   ├── doc4145.txt
│   │   ├── doc4146.txt
│   │   ├── doc4147.txt
│   │   ├── doc4148.txt
│   │   ├── doc4149.txt
│   │   ├── doc415.txt
│   │   ├── doc4150.txt
│   │   ├── doc4151.txt
│   │   ├── doc4152.txt
│   │   ├── doc4153.txt
│   │   ├── doc4154.txt
│   │   ├── doc4155.txt
│   │   ├── doc4156.txt
│   │   ├── doc4157.txt
│   │   ├── doc4158.txt
│   │   ├── doc4159.txt
│   │   ├── doc416.txt
│   │   ├── doc4160.txt
│   │   ├── doc4161.txt
│   │   ├── doc4162.txt
│   │   ├── doc4163.txt
│   │   ├── doc4164.txt
│   │   ├── doc4165.txt
│   │   ├── doc4166.txt
│   │   ├── doc4167.txt
│   │   ├── doc4168.txt
│   │   ├── doc4169.txt
│   │   ├── doc417.txt
│   │   ├── doc4170.txt
│   │   ├── doc4171.txt
│   │   ├── doc4172.txt
│   │   ├── doc4173.txt
│   │   ├── doc4174.txt
│   │   ├── doc4175.txt
│   │   ├── doc4176.txt
│   │   ├── doc4177.txt
│   │   ├── doc4178.txt
│   │   ├── doc4179.txt
│   │   ├── doc418.txt
│   │   ├── doc4180.txt
│   │   ├── doc4181.txt
│   │   ├── doc4182.txt
│   │   ├── doc4183.txt
│   │   ├── doc4184.txt
│   │   ├── doc4185.txt
│   │   ├── doc4186.txt
│   │   ├── doc4187.txt
│   │   ├── doc4188.txt
│   │   ├── doc4189.txt
│   │   ├── doc419.txt
│   │   ├── doc4190.txt
│   │   ├── doc4191.txt
│   │   ├── doc4192.txt
│   │   ├── doc4193.txt
│   │   ├── doc4194.txt
│   │   ├── doc4195.txt
│   │   ├── doc4196.txt
│   │   ├── doc4197.txt
│   │   ├── doc4198.txt
│   │   ├── doc4199.txt
│   │   ├── doc42.txt
│   │   ├── doc420.txt
│   │   ├── doc4200.txt
│   │   ├── doc4201.txt
│   │   ├── doc4202.txt
│   │   ├── doc4203.txt
│   │   ├── doc4204.txt
│   │   ├── doc4205.txt
│   │   ├── doc4206.txt
│   │   ├── doc4207.txt
│   │   ├── doc4208.txt
│   │   ├── doc4209.txt
│   │   ├── doc421.txt
│   │   ├── doc4210.txt
│   │   ├── doc4211.txt
│   │   ├── doc4212.txt
│   │   ├── doc4213.txt
│   │   ├── doc4214.txt
│   │   ├── doc4215.txt
│   │   ├── doc4216.txt
│   │   ├── doc4217.txt
│   │   ├── doc4218.txt
│   │   ├── doc4219.txt
│   │   ├── doc422.txt
│   │   ├── doc4220.txt
│   │   ├── doc4221.txt
│   │   ├── doc4222.txt
│   │   ├── doc4223.txt
│   │   ├── doc4224.txt
│   │   ├── doc4225.txt
│   │   ├── doc4226.txt
│   │   ├── doc4227.txt
│   │   ├── doc4228.txt
│   │   ├── doc4229.txt
│   │   ├── doc423.txt
│   │   ├── doc4230.txt
│   │   ├── doc4231.txt
│   │   ├── doc4232.txt
│   │   ├── doc4233.txt
│   │   ├── doc4234.txt
│   │   ├── doc4235.txt
│   │   ├── doc4236.txt
│   │   ├── doc4237.txt
│   │   ├── doc4238.txt
│   │   ├── doc4239.txt
│   │   ├── doc424.txt
│   │   ├── doc4240.txt
│   │   ├── doc4241.txt
│   │   ├── doc4242.txt
│   │   ├── doc4243.txt
│   │   ├── doc4244.txt
│   │   ├── doc4245.txt
│   │   ├── doc4246.txt
│   │   ├── doc4247.txt
│   │   ├── doc4248.txt
│   │   ├── doc4249.txt
│   │   ├── doc425.txt
│   │   ├── doc4250.txt
│   │   ├── doc4251.txt
│   │   ├── doc4252.txt
│   │   ├── doc4253.txt
│   │   ├── doc4254.txt
│   │   ├── doc4255.txt
│   │   ├── doc4256.txt
│   │   ├── doc4257.txt
│   │   ├── doc4258.txt
│   │   ├── doc4259.txt
│   │   ├── doc426.txt
│   │   ├── doc4260.txt
│   │   ├── doc4261.txt
│   │   ├── doc4262.txt
│   │   ├── doc4263.txt
│   │   ├── doc4264.txt
│   │   ├── doc4265.txt
│   │   ├── doc4266.txt
│   │   ├── doc4267.txt
│   │   ├── doc4268.txt
│   │   ├── doc4269.txt
│   │   ├── doc427.txt
│   │   ├── doc4270.txt
│   │   ├── doc4271.txt
│   │   ├── doc4272.txt
│   │   ├── doc4273.txt
│   │   ├── doc4274.txt
│   │   ├── doc4275.txt
│   │   ├── doc4276.txt
│   │   ├── doc4277.txt
│   │   ├── doc4278.txt
│   │   ├── doc4279.txt
│   │   ├── doc428.txt
│   │   ├── doc4280.txt
│   │   ├── doc4281.txt
│   │   ├── doc4282.txt
│   │   ├── doc4283.txt
│   │   ├── doc4284.txt
│   │   ├── doc4285.txt
│   │   ├── doc4286.txt
│   │   ├── doc4287.txt
│   │   ├── doc4288.txt
│   │   ├── doc4289.txt
│   │   ├── doc429.txt
│   │   ├── doc4290.txt
│   │   ├── doc4291.txt
│   │   ├── doc4292.txt
│   │   ├── doc4293.txt
│   │   ├── doc4294.txt
│   │   ├── doc4295.txt
│   │   ├── doc4296.txt
│   │   ├── doc4297.txt
│   │   ├── doc4298.txt
│   │   ├── doc4299.txt
│   │   ├── doc43.txt
│   │   ├── doc430.txt
│   │   ├── doc4300.txt
│   │   ├── doc4301.txt
│   │   ├── doc4302.txt
│   │   ├── doc4303.txt
│   │   ├── doc4304.txt
│   │   ├── doc4305.txt
│   │   ├── doc4306.txt
│   │   ├── doc4307.txt
│   │   ├── doc4308.txt
│   │   ├── doc4309.txt
│   │   ├── doc431.txt
│   │   ├── doc4310.txt
│   │   ├── doc4311.txt
│   │   ├── doc4312.txt
│   │   ├── doc4313.txt
│   │   ├── doc4314.txt
│   │   ├── doc4315.txt
│   │   ├── doc4316.txt
│   │   ├── doc4317.txt
│   │   ├── doc4318.txt
│   │   ├── doc4319.txt
│   │   ├── doc432.txt
│   │   ├── doc4320.txt
│   │   ├── doc4321.txt
│   │   ├── doc4322.txt
│   │   ├── doc4323.txt
│   │   ├── doc4324.txt
│   │   ├── doc4325.txt
│   │   ├── doc4326.txt
│   │   ├── doc4327.txt
│   │   ├── doc4328.txt
│   │   ├── doc4329.txt
│   │   ├── doc433.txt
│   │   ├── doc4330.txt
│   │   ├── doc4331.txt
│   │   ├── doc4332.txt
│   │   ├── doc4333.txt
│   │   ├── doc4334.txt
│   │   ├── doc4335.txt
│   │   ├── doc4336.txt
│   │   ├── doc4337.txt
│   │   ├── doc4338.txt
│   │   ├── doc4339.txt
│   │   ├── doc434.txt
│   │   ├── doc4340.txt
│   │   ├── doc4341.txt
│   │   ├── doc4342.txt
│   │   ├── doc4343.txt
│   │   ├── doc4344.txt
│   │   ├── doc4345.txt
│   │   ├── doc4346.txt
│   │   ├── doc4347.txt
│   │   ├── doc4348.txt
│   │   ├── doc4349.txt
│   │   ├── doc435.txt
│   │   ├── doc4350.txt
│   │   ├── doc4351.txt
│   │   ├── doc4352.txt
│   │   ├── doc4353.txt
│   │   ├── doc4354.txt
│   │   ├── doc4355.txt
│   │   ├── doc4356.txt
│   │   ├── doc4357.txt
│   │   ├── doc4358.txt
│   │   ├── doc4359.txt
│   │   ├── doc436.txt
│   │   ├── doc4360.txt
│   │   ├── doc4361.txt
│   │   ├── doc4362.txt
│   │   ├── doc4363.txt
│   │   ├── doc4364.txt
│   │   ├── doc4365.txt
│   │   ├── doc4366.txt
│   │   ├── doc4367.txt
│   │   ├── doc4368.txt
│   │   ├── doc4369.txt
│   │   ├── doc437.txt
│   │   ├── doc4370.txt
│   │   ├── doc4371.txt
│   │   ├── doc4372.txt
│   │   ├── doc4373.txt
│   │   ├── doc4374.txt
│   │   ├── doc4375.txt
│   │   ├── doc4376.txt
│   │   ├── doc4377.txt
│   │   ├── doc4378.txt
│   │   ├── doc4379.txt
│   │   ├── doc438.txt
│   │   ├── doc4380.txt
│   │   ├── doc4381.txt
│   │   ├── doc4382.txt
│   │   ├── doc4383.txt
│   │   ├── doc4384.txt
│   │   ├── doc4385.txt
│   │   ├── doc4386.txt
│   │   ├── doc4387.txt
│   │   ├── doc4388.txt
│   │   ├── doc4389.txt
│   │   ├── doc439.txt
│   │   ├── doc4390.txt
│   │   ├── doc4391.txt
│   │   ├── doc4392.txt
│   │   ├── doc4393.txt
│   │   ├── doc4394.txt
│   │   ├── doc4395.txt
│   │   ├── doc4396.txt
│   │   ├── doc4397.txt
│   │   ├── doc4398.txt
│   │   ├── doc4399.txt
│   │   ├── doc44.txt
│   │   ├── doc440.txt
│   │   ├── doc4400.txt
│   │   ├── doc4401.txt
│   │   ├── doc4402.txt
│   │   ├── doc4403.txt
│   │   ├── doc4404.txt
│   │   ├── doc4405.txt
│   │   ├── doc4406.txt
│   │   ├── doc4407.txt
│   │   ├── doc4408.txt
│   │   ├── doc4409.txt
│   │   ├── doc441.txt
│   │   ├── doc4410.txt
│   │   ├── doc4411.txt
│   │   ├── doc4412.txt
│   │   ├── doc4413.txt
│   │   ├── doc4414.txt
│   │   ├── doc4415.txt
│   │   ├── doc4416.txt
│   │   ├── doc4417.txt
│   │   ├── doc4418.txt
│   │   ├── doc4419.txt
│   │   ├── doc442.txt
│   │   ├── doc4420.txt
│   │   ├── doc4421.txt
│   │   ├── doc4422.txt
│   │   ├── doc4423.txt
│   │   ├── doc4424.txt
│   │   ├── doc4425.txt
│   │   ├── doc4426.txt
│   │   ├── doc4427.txt
│   │   ├── doc4428.txt
│   │   ├── doc4429.txt
│   │   ├── doc443.txt
│   │   ├── doc4430.txt
│   │   ├── doc4431.txt
│   │   ├── doc4432.txt
│   │   ├── doc4433.txt
│   │   ├── doc4434.txt
│   │   ├── doc4435.txt
│   │   ├── doc4436.txt
│   │   ├── doc4437.txt
│   │   ├── doc4438.txt
│   │   ├── doc4439.txt
│   │   ├── doc444.txt
│   │   ├── doc4440.txt
│   │   ├── doc4441.txt
│   │   ├── doc4442.txt
│   │   ├── doc4443.txt
│   │   ├── doc4444.txt
│   │   ├── doc4445.txt
│   │   ├── doc4446.txt
│   │   ├── doc4447.txt
│   │   ├── doc4448.txt
│   │   ├── doc4449.txt
│   │   ├── doc445.txt
│   │   ├── doc4450.txt
│   │   ├── doc4451.txt
│   │   ├── doc4452.txt
│   │   ├── doc4453.txt
│   │   ├── doc4454.txt
│   │   ├── doc4455.txt
│   │   ├── doc4456.txt
│   │   ├── doc4457.txt
│   │   ├── doc4458.txt
│   │   ├── doc4459.txt
│   │   ├── doc446.txt
│   │   ├── doc4460.txt
│   │   ├── doc4461.txt
│   │   ├── doc4462.txt
│   │   ├── doc4463.txt
│   │   ├── doc4464.txt
│   │   ├── doc4465.txt
│   │   ├── doc4466.txt
│   │   ├── doc4467.txt
│   │   ├── doc4468.txt
│   │   ├── doc4469.txt
│   │   ├── doc447.txt
│   │   ├── doc4470.txt
│   │   ├── doc4471.txt
│   │   ├── doc4472.txt
│   │   ├── doc4473.txt
│   │   ├── doc4474.txt
│   │   ├── doc4475.txt
│   │   ├── doc4476.txt
│   │   ├── doc4477.txt
│   │   ├── doc4478.txt
│   │   ├── doc4479.txt
│   │   ├── doc448.txt
│   │   ├── doc4480.txt
│   │   ├── doc4481.txt
│   │   ├── doc4482.txt
│   │   ├── doc4483.txt
│   │   ├── doc4484.txt
│   │   ├── doc4485.txt
│   │   ├── doc4486.txt
│   │   ├── doc4487.txt
│   │   ├── doc4488.txt
│   │   ├── doc4489.txt
│   │   ├── doc449.txt
│   │   ├── doc4490.txt
│   │   ├── doc4491.txt
│   │   ├── doc4492.txt
│   │   ├── doc4493.txt
│   │   ├── doc4494.txt
│   │   ├── doc4495.txt
│   │   ├── doc4496.txt
│   │   ├── doc4497.txt
│   │   ├── doc4498.txt
│   │   ├── doc4499.txt
│   │   ├── doc45.txt
│   │   ├── doc450.txt
│   │   ├── doc4500.txt
│   │   ├── doc4501.txt
│   │   ├── doc4502.txt
│   │   ├── doc4503.txt
│   │   ├── doc4504.txt
│   │   ├── doc4505.txt
│   │   ├── doc4506.txt
│   │   ├── doc4507.txt
│   │   ├── doc4508.txt
│   │   ├── doc4509.txt
│   │   ├── doc451.txt
│   │   ├── doc4510.txt
│   │   ├── doc4511.txt
│   │   ├── doc4512.txt
│   │   ├── doc4513.txt
│   │   ├── doc4514.txt
│   │   ├── doc4515.txt
│   │   ├── doc4516.txt
│   │   ├── doc4517.txt
│   │   ├── doc4518.txt
│   │   ├── doc4519.txt
│   │   ├── doc452.txt
│   │   ├── doc4520.txt
│   │   ├── doc4521.txt
│   │   ├── doc4522.txt
│   │   ├── doc4523.txt
│   │   ├── doc4524.txt
│   │   ├── doc4525.txt
│   │   ├── doc4526.txt
│   │   ├── doc4527.txt
│   │   ├── doc4528.txt
│   │   ├── doc4529.txt
│   │   ├── doc453.txt
│   │   ├── doc4530.txt
│   │   ├── doc4531.txt
│   │   ├── doc4532.txt
│   │   ├── doc4533.txt
│   │   ├── doc4534.txt
│   │   ├── doc4535.txt
│   │   ├── doc4536.txt
│   │   ├── doc4537.txt
│   │   ├── doc4538.txt
│   │   ├── doc4539.txt
│   │   ├── doc454.txt
│   │   ├── doc4540.txt
│   │   ├── doc4541.txt
│   │   ├── doc4542.txt
│   │   ├── doc4543.txt
│   │   ├── doc4544.txt
│   │   ├── doc4545.txt
│   │   ├── doc4546.txt
│   │   ├── doc4547.txt
│   │   ├── doc4548.txt
│   │   ├── doc4549.txt
│   │   ├── doc455.txt
│   │   ├── doc4550.txt
│   │   ├── doc4551.txt
│   │   ├── doc4552.txt
│   │   ├── doc4553.txt
│   │   ├── doc4554.txt
│   │   ├── doc4555.txt
│   │   ├── doc4556.txt
│   │   ├── doc4557.txt
│   │   ├── doc4558.txt
│   │   ├── doc4559.txt
│   │   ├── doc456.txt
│   │   ├── doc4560.txt
│   │   ├── doc4561.txt
│   │   ├── doc4562.txt
│   │   ├── doc4563.txt
│   │   ├── doc4564.txt
│   │   ├── doc4565.txt
│   │   ├── doc4566.txt
│   │   ├── doc4567.txt
│   │   ├── doc4568.txt
│   │   ├── doc4569.txt
│   │   ├── doc457.txt
│   │   ├── doc4570.txt
│   │   ├── doc4571.txt
│   │   ├── doc4572.txt
│   │   ├── doc4573.txt
│   │   ├── doc4574.txt
│   │   ├── doc4575.txt
│   │   ├── doc4576.txt
│   │   ├── doc4577.txt
│   │   ├── doc4578.txt
│   │   ├── doc4579.txt
│   │   ├── doc458.txt
│   │   ├── doc4580.txt
│   │   ├── doc4581.txt
│   │   ├── doc4582.txt
│   │   ├── doc4583.txt
│   │   ├── doc4584.txt
│   │   ├── doc4585.txt
│   │   ├── doc4586.txt
│   │   ├── doc4587.txt
│   │   ├── doc4588.txt
│   │   ├── doc4589.txt
│   │   ├── doc459.txt
│   │   ├── doc4590.txt
│   │   ├── doc4591.txt
│   │   ├── doc4592.txt
│   │   ├── doc4593.txt
│   │   ├── doc4594.txt
│   │   ├── doc4595.txt
│   │   ├── doc4596.txt
│   │   ├── doc4597.txt
│   │   ├── doc4598.txt
│   │   ├── doc4599.txt
│   │   ├── doc46.txt
│   │   ├── doc460.txt
│   │   ├── doc4600.txt
│   │   ├── doc4601.txt
│   │   ├── doc4602.txt
│   │   ├── doc4603.txt
│   │   ├── doc4604.txt
│   │   ├── doc4605.txt
│   │   ├── doc4606.txt
│   │   ├── doc4607.txt
│   │   ├── doc4608.txt
│   │   ├── doc4609.txt
│   │   ├── doc461.txt
│   │   ├── doc4610.txt
│   │   ├── doc4611.txt
│   │   ├── doc4612.txt
│   │   ├── doc4613.txt
│   │   ├── doc4614.txt
│   │   ├── doc4615.txt
│   │   ├── doc4616.txt
│   │   ├── doc4617.txt
│   │   ├── doc4618.txt
│   │   ├── doc4619.txt
│   │   ├── doc462.txt
│   │   ├── doc4620.txt
│   │   ├── doc4621.txt
│   │   ├── doc4622.txt
│   │   ├── doc4623.txt
│   │   ├── doc4624.txt
│   │   ├── doc4625.txt
│   │   ├── doc4626.txt
│   │   ├── doc4627.txt
│   │   ├── doc4628.txt
│   │   ├── doc4629.txt
│   │   ├── doc463.txt
│   │   ├── doc4630.txt
│   │   ├── doc4631.txt
│   │   ├── doc4632.txt
│   │   ├── doc4633.txt
│   │   ├── doc4634.txt
│   │   ├── doc4635.txt
│   │   ├── doc4636.txt
│   │   ├── doc4637.txt
│   │   ├── doc4638.txt
│   │   ├── doc4639.txt
│   │   ├── doc464.txt
│   │   ├── doc4640.txt
│   │   ├── doc4641.txt
│   │   ├── doc4642.txt
│   │   ├── doc4643.txt
│   │   ├── doc4644.txt
│   │   ├── doc4645.txt
│   │   ├── doc4646.txt
│   │   ├── doc4647.txt
│   │   ├── doc4648.txt
│   │   ├── doc4649.txt
│   │   ├── doc465.txt
│   │   ├── doc4650.txt
│   │   ├── doc4651.txt
│   │   ├── doc4652.txt
│   │   ├── doc4653.txt
│   │   ├── doc4654.txt
│   │   ├── doc4655.txt
│   │   ├── doc4656.txt
│   │   ├── doc4657.txt
│   │   ├── doc4658.txt
│   │   ├── doc4659.txt
│   │   ├── doc466.txt
│   │   ├── doc4660.txt
│   │   ├── doc4661.txt
│   │   ├── doc4662.txt
│   │   ├── doc4663.txt
│   │   ├── doc4664.txt
│   │   ├── doc4665.txt
│   │   ├── doc4666.txt
│   │   ├── doc4667.txt
│   │   ├── doc4668.txt
│   │   ├── doc4669.txt
│   │   ├── doc467.txt
│   │   ├── doc4670.txt
│   │   ├── doc4671.txt
│   │   ├── doc4672.txt
│   │   ├── doc4673.txt
│   │   ├── doc4674.txt
│   │   ├── doc4675.txt
│   │   ├── doc4676.txt
│   │   ├── doc4677.txt
│   │   ├── doc4678.txt
│   │   ├── doc4679.txt
│   │   ├── doc468.txt
│   │   ├── doc4680.txt
│   │   ├── doc4681.txt
│   │   ├── doc4682.txt
│   │   ├── doc4683.txt
│   │   ├── doc4684.txt
│   │   ├── doc4685.txt
│   │   ├── doc4686.txt
│   │   ├── doc4687.txt
│   │   ├── doc4688.txt
│   │   ├── doc4689.txt
│   │   ├── doc469.txt
│   │   ├── doc4690.txt
│   │   ├── doc4691.txt
│   │   ├── doc4692.txt
│   │   ├── doc4693.txt
│   │   ├── doc4694.txt
│   │   ├── doc4695.txt
│   │   ├── doc4696.txt
│   │   ├── doc4697.txt
│   │   ├── doc4698.txt
│   │   ├── doc4699.txt
│   │   ├── doc47.txt
│   │   ├── doc470.txt
│   │   ├── doc4700.txt
│   │   ├── doc4701.txt
│   │   ├── doc4702.txt
│   │   ├── doc4703.txt
│   │   ├── doc4704.txt
│   │   ├── doc4705.txt
│   │   ├── doc4706.txt
│   │   ├── doc4707.txt
│   │   ├── doc4708.txt
│   │   ├── doc4709.txt
│   │   ├── doc471.txt
│   │   ├── doc4710.txt
│   │   ├── doc4711.txt
│   │   ├── doc4712.txt
│   │   ├── doc4713.txt
│   │   ├── doc4714.txt
│   │   ├── doc4715.txt
│   │   ├── doc4716.txt
│   │   ├── doc4717.txt
│   │   ├── doc4718.txt
│   │   ├── doc4719.txt
│   │   ├── doc472.txt
│   │   ├── doc4720.txt
│   │   ├── doc4721.txt
│   │   ├── doc4722.txt
│   │   ├── doc4723.txt
│   │   ├── doc4724.txt
│   │   ├── doc4725.txt
│   │   ├── doc4726.txt
│   │   ├── doc4727.txt
│   │   ├── doc4728.txt
│   │   ├── doc4729.txt
│   │   ├── doc473.txt
│   │   ├── doc4730.txt
│   │   ├── doc4731.txt
│   │   ├── doc4732.txt
│   │   ├── doc4733.txt
│   │   ├── doc4734.txt
│   │   ├── doc4735.txt
│   │   ├── doc4736.txt
│   │   ├── doc4737.txt
│   │   ├── doc4738.txt
│   │   ├── doc4739.txt
│   │   ├── doc474.txt
│   │   ├── doc4740.txt
│   │   ├── doc4741.txt
│   │   ├── doc4742.txt
│   │   ├── doc4743.txt
│   │   ├── doc4744.txt
│   │   ├── doc4745.txt
│   │   ├── doc4746.txt
│   │   ├── doc4747.txt
│   │   ├── doc4748.txt
│   │   ├── doc4749.txt
│   │   ├── doc475.txt
│   │   ├── doc4750.txt
│   │   ├── doc4751.txt
│   │   ├── doc4752.txt
│   │   ├── doc4753.txt
│   │   ├── doc4754.txt
│   │   ├── doc4755.txt
│   │   ├── doc4756.txt
│   │   ├── doc4757.txt
│   │   ├── doc4758.txt
│   │   ├── doc4759.txt
│   │   ├── doc476.txt
│   │   ├── doc4760.txt
│   │   ├── doc4761.txt
│   │   ├── doc4762.txt
│   │   ├── doc4763.txt
│   │   ├── doc4764.txt
│   │   ├── doc4765.txt
│   │   ├── doc4766.txt
│   │   ├── doc4767.txt
│   │   ├── doc4768.txt
│   │   ├── doc4769.txt
│   │   ├── doc477.txt
│   │   ├── doc4770.txt
│   │   ├── doc4771.txt
│   │   ├── doc4772.txt
│   │   ├── doc4773.txt
│   │   ├── doc4774.txt
│   │   ├── doc4775.txt
│   │   ├── doc4776.txt
│   │   ├── doc4777.txt
│   │   ├── doc4778.txt
│   │   ├── doc4779.txt
│   │   ├── doc478.txt
│   │   ├── doc4780.txt
│   │   ├── doc4781.txt
│   │   ├── doc4782.txt
│   │   ├── doc4783.txt
│   │   ├── doc4784.txt
│   │   ├── doc4785.txt
│   │   ├── doc4786.txt
│   │   ├── doc4787.txt
│   │   ├── doc4788.txt
│   │   ├── doc4789.txt
│   │   ├── doc479.txt
│   │   ├── doc4790.txt
│   │   ├── doc4791.txt
│   │   ├── doc4792.txt
│   │   ├── doc4793.txt
│   │   ├── doc4794.txt
│   │   ├── doc4795.txt
│   │   ├── doc4796.txt
│   │   ├── doc4797.txt
│   │   ├── doc4798.txt
│   │   ├── doc4799.txt
│   │   ├── doc48.txt
│   │   ├── doc480.txt
│   │   ├── doc4800.txt
│   │   ├── doc4801.txt
│   │   ├── doc4802.txt
│   │   ├── doc4803.txt
│   │   ├── doc4804.txt
│   │   ├── doc4805.txt
│   │   ├── doc4806.txt
│   │   ├── doc4807.txt
│   │   ├── doc4808.txt
│   │   ├── doc4809.txt
│   │   ├── doc481.txt
│   │   ├── doc4810.txt
│   │   ├── doc4811.txt
│   │   ├── doc4812.txt
│   │   ├── doc4813.txt
│   │   ├── doc4814.txt
│   │   ├── doc4815.txt
│   │   ├── doc4816.txt
│   │   ├── doc4817.txt
│   │   ├── doc4818.txt
│   │   ├── doc4819.txt
│   │   ├── doc482.txt
│   │   ├── doc4820.txt
│   │   ├── doc4821.txt
│   │   ├── doc4822.txt
│   │   ├── doc4823.txt
│   │   ├── doc4824.txt
│   │   ├── doc4825.txt
│   │   ├── doc4826.txt
│   │   ├── doc4827.txt
│   │   ├── doc4828.txt
│   │   ├── doc4829.txt
│   │   ├── doc483.txt
│   │   ├── doc4830.txt
│   │   ├── doc4831.txt
│   │   ├── doc4832.txt
│   │   ├── doc4833.txt
│   │   ├── doc4834.txt
│   │   ├── doc4835.txt
│   │   ├── doc4836.txt
│   │   ├── doc4837.txt
│   │   ├── doc4838.txt
│   │   ├── doc4839.txt
│   │   ├── doc484.txt
│   │   ├── doc4840.txt
│   │   ├── doc4841.txt
│   │   ├── doc4842.txt
│   │   ├── doc4843.txt
│   │   ├── doc4844.txt
│   │   ├── doc4845.txt
│   │   ├── doc4846.txt
│   │   ├── doc4847.txt
│   │   ├── doc4848.txt
│   │   ├── doc4849.txt
│   │   ├── doc485.txt
│   │   ├── doc4850.txt
│   │   ├── doc4851.txt
│   │   ├── doc4852.txt
│   │   ├── doc4853.txt
│   │   ├── doc4854.txt
│   │   ├── doc4855.txt
│   │   ├── doc4856.txt
│   │   ├── doc4857.txt
│   │   ├── doc4858.txt
│   │   ├── doc4859.txt
│   │   ├── doc486.txt
│   │   ├── doc4860.txt
│   │   ├── doc4861.txt
│   │   ├── doc4862.txt
│   │   ├── doc4863.txt
│   │   ├── doc4864.txt
│   │   ├── doc4865.txt
│   │   ├── doc4866.txt
│   │   ├── doc4867.txt
│   │   ├── doc4868.txt
│   │   ├── doc4869.txt
│   │   ├── doc487.txt
│   │   ├── doc4870.txt
│   │   ├── doc4871.txt
│   │   ├── doc4872.txt
│   │   ├── doc4873.txt
│   │   ├── doc4874.txt
│   │   ├── doc4875.txt
│   │   ├── doc4876.txt
│   │   ├── doc4877.txt
│   │   ├── doc4878.txt
│   │   ├── doc4879.txt
│   │   ├── doc488.txt
│   │   ├── doc4880.txt
│   │   ├── doc4881.txt
│   │   ├── doc4882.txt
│   │   ├── doc4883.txt
│   │   ├── doc4884.txt
│   │   ├── doc4885.txt
│   │   ├── doc4886.txt
│   │   ├── doc4887.txt
│   │   ├── doc4888.txt
│   │   ├── doc4889.txt
│   │   ├── doc489.txt
│   │   ├── doc4890.txt
│   │   ├── doc4891.txt
│   │   ├── doc4892.txt
│   │   ├── doc4893.txt
│   │   ├── doc4894.txt
│   │   ├── doc4895.txt
│   │   ├── doc4896.txt
│   │   ├── doc4897.txt
│   │   ├── doc4898.txt
│   │   ├── doc4899.txt
│   │   ├── doc49.txt
│   │   ├── doc490.txt
│   │   ├── doc4900.txt
│   │   ├── doc4901.txt
│   │   ├── doc4902.txt
│   │   ├── doc4903.txt
│   │   ├── doc4904.txt
│   │   ├── doc4905.txt
│   │   ├── doc4906.txt
│   │   ├── doc4907.txt
│   │   ├── doc4908.txt
│   │   ├── doc4909.txt
│   │   ├── doc491.txt
│   │   ├── doc4910.txt
│   │   ├── doc4911.txt
│   │   ├── doc4912.txt
│   │   ├── doc4913.txt
│   │   ├── doc4914.txt
│   │   ├── doc4915.txt
│   │   ├── doc4916.txt
│   │   ├── doc4917.txt
│   │   ├── doc4918.txt
│   │   ├── doc4919.txt
│   │   ├── doc492.txt
│   │   ├── doc4920.txt
│   │   ├── doc4921.txt
│   │   ├── doc4922.txt
│   │   ├── doc4923.txt
│   │   ├── doc4924.txt
│   │   ├── doc4925.txt
│   │   ├── doc4926.txt
│   │   ├── doc4927.txt
│   │   ├── doc4928.txt
│   │   ├── doc4929.txt
│   │   ├── doc493.txt
│   │   ├── doc4930.txt
│   │   ├── doc4931.txt
│   │   ├── doc4932.txt
│   │   ├── doc4933.txt
│   │   ├── doc4934.txt
│   │   ├── doc4935.txt
│   │   ├── doc4936.txt
│   │   ├── doc4937.txt
│   │   ├── doc4938.txt
│   │   ├── doc4939.txt
│   │   ├── doc494.txt
│   │   ├── doc4940.txt
│   │   ├── doc4941.txt
│   │   ├── doc4942.txt
│   │   ├── doc4943.txt
│   │   ├── doc4944.txt
│   │   ├── doc4945.txt
│   │   ├── doc4946.txt
│   │   ├── doc4947.txt
│   │   ├── doc4948.txt
│   │   ├── doc4949.txt
│   │   ├── doc495.txt
│   │   ├── doc4950.txt
│   │   ├── doc4951.txt
│   │   ├── doc4952.txt
│   │   ├── doc4953.txt
│   │   ├── doc4954.txt
│   │   ├── doc4955.txt
│   │   ├── doc4956.txt
│   │   ├── doc4957.txt
│   │   ├── doc4958.txt
│   │   ├── doc4959.txt
│   │   ├── doc496.txt
│   │   ├── doc4960.txt
│   │   ├── doc4961.txt
│   │   ├── doc4962.txt
│   │   ├── doc4963.txt
│   │   ├── doc4964.txt
│   │   ├── doc4965.txt
│   │   ├── doc4966.txt
│   │   ├── doc4967.txt
│   │   ├── doc4968.txt
│   │   ├── doc4969.txt
│   │   ├── doc497.txt
│   │   ├── doc4970.txt
│   │   ├── doc4971.txt
│   │   ├── doc4972.txt
│   │   ├── doc4973.txt
│   │   ├── doc4974.txt
│   │   ├── doc4975.txt
│   │   ├── doc4976.txt
│   │   ├── doc4977.txt
│   │   ├── doc4978.txt
│   │   ├── doc4979.txt
│   │   ├── doc498.txt
│   │   ├── doc4980.txt
│   │   ├── doc4981.txt
│   │   ├── doc4982.txt
│   │   ├── doc4983.txt
│   │   ├── doc4984.txt
│   │   ├── doc4985.txt
│   │   ├── doc4986.txt
│   │   ├── doc4987.txt
│   │   ├── doc4988.txt
│   │   ├── doc4989.txt
│   │   ├── doc499.txt
│   │   ├── doc4990.txt
│   │   ├── doc4991.txt
│   │   ├── doc4992.txt
│   │   ├── doc4993.txt
│   │   ├── doc4994.txt
│   │   ├── doc4995.txt
│   │   ├── doc4996.txt
│   │   ├── doc4997.txt
│   │   ├── doc4998.txt
│   │   ├── doc4999.txt
│   │   ├── doc5.txt
│   │   ├── doc50.txt
│   │   ├── doc500.txt
│   │   ├── doc5000.txt
│   │   ├── doc5001.txt
│   │   ├── doc5002.txt
│   │   ├── doc5003.txt
│   │   ├── doc5004.txt
│   │   ├── doc5005.txt
│   │   ├── doc5006.txt
│   │   ├── doc5007.txt
│   │   ├── doc5008.txt
│   │   ├── doc5009.txt
│   │   ├── doc501.txt
│   │   ├── doc5010.txt
│   │   ├── doc5011.txt
│   │   ├── doc5012.txt
│   │   ├── doc5013.txt
│   │   ├── doc5014.txt
│   │   ├── doc5015.txt
│   │   ├── doc5016.txt
│   │   ├── doc5017.txt
│   │   ├── doc5018.txt
│   │   ├── doc5019.txt
│   │   ├── doc502.txt
│   │   ├── doc5020.txt
│   │   ├── doc5021.txt
│   │   ├── doc5022.txt
│   │   ├── doc5023.txt
│   │   ├── doc5024.txt
│   │   ├── doc5025.txt
│   │   ├── doc5026.txt
│   │   ├── doc5027.txt
│   │   ├── doc5028.txt
│   │   ├── doc5029.txt
│   │   ├── doc503.txt
│   │   ├── doc5030.txt
│   │   ├── doc5031.txt
│   │   ├── doc5032.txt
│   │   ├── doc5033.txt
│   │   ├── doc5034.txt
│   │   ├── doc5035.txt
│   │   ├── doc5036.txt
│   │   ├── doc5037.txt
│   │   ├── doc5038.txt
│   │   ├── doc5039.txt
│   │   ├── doc504.txt
│   │   ├── doc5040.txt
│   │   ├── doc5041.txt
│   │   ├── doc5042.txt
│   │   ├── doc5043.txt
│   │   ├── doc5044.txt
│   │   ├── doc5045.txt
│   │   ├── doc5046.txt
│   │   ├── doc5047.txt
│   │   ├── doc5048.txt
│   │   ├── doc5049.txt
│   │   ├── doc505.txt
│   │   ├── doc5050.txt
│   │   ├── doc5051.txt
│   │   ├── doc5052.txt
│   │   ├── doc5053.txt
│   │   ├── doc5054.txt
│   │   ├── doc5055.txt
│   │   ├── doc5056.txt
│   │   ├── doc5057.txt
│   │   ├── doc5058.txt
│   │   ├── doc5059.txt
│   │   ├── doc506.txt
│   │   ├── doc5060.txt
│   │   ├── doc5061.txt
│   │   ├── doc5062.txt
│   │   ├── doc5063.txt
│   │   ├── doc5064.txt
│   │   ├── doc5065.txt
│   │   ├── doc5066.txt
│   │   ├── doc5067.txt
│   │   ├── doc5068.txt
│   │   ├── doc5069.txt
│   │   ├── doc507.txt
│   │   ├── doc5070.txt
│   │   ├── doc5071.txt
│   │   ├── doc5072.txt
│   │   ├── doc5073.txt
│   │   ├── doc5074.txt
│   │   ├── doc5075.txt
│   │   ├── doc5076.txt
│   │   ├── doc5077.txt
│   │   ├── doc5078.txt
│   │   ├── doc5079.txt
│   │   ├── doc508.txt
│   │   ├── doc5080.txt
│   │   ├── doc5081.txt
│   │   ├── doc5082.txt
│   │   ├── doc5083.txt
│   │   ├── doc5084.txt
│   │   ├── doc5085.txt
│   │   ├── doc5086.txt
│   │   ├── doc5087.txt
│   │   ├── doc5088.txt
│   │   ├── doc5089.txt
│   │   ├── doc509.txt
│   │   ├── doc5090.txt
│   │   ├── doc5091.txt
│   │   ├── doc5092.txt
│   │   ├── doc5093.txt
│   │   ├── doc5094.txt
│   │   ├── doc5095.txt
│   │   ├── doc5096.txt
│   │   ├── doc5097.txt
│   │   ├── doc5098.txt
│   │   ├── doc5099.txt
│   │   ├── doc51.txt
│   │   ├── doc510.txt
│   │   ├── doc5100.txt
│   │   ├── doc5101.txt
│   │   ├── doc5102.txt
│   │   ├── doc5103.txt
│   │   ├── doc5104.txt
│   │   ├── doc5105.txt
│   │   ├── doc5106.txt
│   │   ├── doc5107.txt
│   │   ├── doc5108.txt
│   │   ├── doc5109.txt
│   │   ├── doc511.txt
│   │   ├── doc5110.txt
│   │   ├── doc5111.txt
│   │   ├── doc5112.txt
│   │   ├── doc5113.txt
│   │   ├── doc5114.txt
│   │   ├── doc5115.txt
│   │   ├── doc5116.txt
│   │   ├── doc5117.txt
│   │   ├── doc5118.txt
│   │   ├── doc5119.txt
│   │   ├── doc512.txt
│   │   ├── doc5120.txt
│   │   ├── doc5121.txt
│   │   ├── doc5122.txt
│   │   ├── doc5123.txt
│   │   ├── doc5124.txt
│   │   ├── doc5125.txt
│   │   ├── doc5126.txt
│   │   ├── doc5127.txt
│   │   ├── doc5128.txt
│   │   ├── doc5129.txt
│   │   ├── doc513.txt
│   │   ├── doc5130.txt
│   │   ├── doc5131.txt
│   │   ├── doc5132.txt
│   │   ├── doc5133.txt
│   │   ├── doc5134.txt
│   │   ├── doc5135.txt
│   │   ├── doc5136.txt
│   │   ├── doc5137.txt
│   │   ├── doc5138.txt
│   │   ├── doc5139.txt
│   │   ├── doc514.txt
│   │   ├── doc5140.txt
│   │   ├── doc5141.txt
│   │   ├── doc5142.txt
│   │   ├── doc5143.txt
│   │   ├── doc5144.txt
│   │   ├── doc5145.txt
│   │   ├── doc5146.txt
│   │   ├── doc5147.txt
│   │   ├── doc5148.txt
│   │   ├── doc5149.txt
│   │   ├── doc515.txt
│   │   ├── doc5150.txt
│   │   ├── doc5151.txt
│   │   ├── doc5152.txt
│   │   ├── doc5153.txt
│   │   ├── doc5154.txt
│   │   ├── doc5155.txt
│   │   ├── doc5156.txt
│   │   ├── doc5157.txt
│   │   ├── doc5158.txt
│   │   ├── doc5159.txt
│   │   ├── doc516.txt
│   │   ├── doc5160.txt
│   │   ├── doc5161.txt
│   │   ├── doc5162.txt
│   │   ├── doc5163.txt
│   │   ├── doc5164.txt
│   │   ├── doc5165.txt
│   │   ├── doc5166.txt
│   │   ├── doc5167.txt
│   │   ├── doc5168.txt
│   │   ├── doc5169.txt
│   │   ├── doc517.txt
│   │   ├── doc5170.txt
│   │   ├── doc5171.txt
│   │   ├── doc5172.txt
│   │   ├── doc5173.txt
│   │   ├── doc5174.txt
│   │   ├── doc5175.txt
│   │   ├── doc5176.txt
│   │   ├── doc5177.txt
│   │   ├── doc5178.txt
│   │   ├── doc5179.txt
│   │   ├── doc518.txt
│   │   ├── doc5180.txt
│   │   ├── doc5181.txt
│   │   ├── doc5182.txt
│   │   ├── doc5183.txt
│   │   ├── doc5184.txt
│   │   ├── doc5185.txt
│   │   ├── doc5186.txt
│   │   ├── doc5187.txt
│   │   ├── doc5188.txt
│   │   ├── doc5189.txt
│   │   ├── doc519.txt
│   │   ├── doc5190.txt
│   │   ├── doc5191.txt
│   │   ├── doc5192.txt
│   │   ├── doc5193.txt
│   │   ├── doc5194.txt
│   │   ├── doc5195.txt
│   │   ├── doc5196.txt
│   │   ├── doc5197.txt
│   │   ├── doc5198.txt
│   │   ├── doc5199.txt
│   │   ├── doc52.txt
│   │   ├── doc520.txt
│   │   ├── doc5200.txt
│   │   ├── doc5201.txt
│   │   ├── doc5202.txt
│   │   ├── doc5203.txt
│   │   ├── doc5204.txt
│   │   ├── doc5205.txt
│   │   ├── doc5206.txt
│   │   ├── doc5207.txt
│   │   ├── doc5208.txt
│   │   ├── doc5209.txt
│   │   ├── doc521.txt
│   │   ├── doc5210.txt
│   │   ├── doc5211.txt
│   │   ├── doc5212.txt
│   │   ├── doc5213.txt
│   │   ├── doc5214.txt
│   │   ├── doc5215.txt
│   │   ├── doc5216.txt
│   │   ├── doc5217.txt
│   │   ├── doc5218.txt
│   │   ├── doc5219.txt
│   │   ├── doc522.txt
│   │   ├── doc5220.txt
│   │   ├── doc5221.txt
│   │   ├── doc5222.txt
│   │   ├── doc5223.txt
│   │   ├── doc5224.txt
│   │   ├── doc5225.txt
│   │   ├── doc5226.txt
│   │   ├── doc5227.txt
│   │   ├── doc5228.txt
│   │   ├── doc5229.txt
│   │   ├── doc523.txt
│   │   ├── doc5230.txt
│   │   ├── doc5231.txt
│   │   ├── doc5232.txt
│   │   ├── doc5233.txt
│   │   ├── doc5234.txt
│   │   ├── doc5235.txt
│   │   ├── doc5236.txt
│   │   ├── doc5237.txt
│   │   ├── doc5238.txt
│   │   ├── doc5239.txt
│   │   ├── doc524.txt
│   │   ├── doc5240.txt
│   │   ├── doc5241.txt
│   │   ├── doc5242.txt
│   │   ├── doc5243.txt
│   │   ├── doc5244.txt
│   │   ├── doc5245.txt
│   │   ├── doc5246.txt
│   │   ├── doc5247.txt
│   │   ├── doc5248.txt
│   │   ├── doc5249.txt
│   │   ├── doc525.txt
│   │   ├── doc5250.txt
│   │   ├── doc5251.txt
│   │   ├── doc5252.txt
│   │   ├── doc5253.txt
│   │   ├── doc5254.txt
│   │   ├── doc5255.txt
│   │   ├── doc5256.txt
│   │   ├── doc5257.txt
│   │   ├── doc5258.txt
│   │   ├── doc5259.txt
│   │   ├── doc526.txt
│   │   ├── doc5260.txt
│   │   ├── doc5261.txt
│   │   ├── doc5262.txt
│   │   ├── doc5263.txt
│   │   ├── doc5264.txt
│   │   ├── doc5265.txt
│   │   ├── doc5266.txt
│   │   ├── doc5267.txt
│   │   ├── doc5268.txt
│   │   ├── doc5269.txt
│   │   ├── doc527.txt
│   │   ├── doc5270.txt
│   │   ├── doc5271.txt
│   │   ├── doc5272.txt
│   │   ├── doc5273.txt
│   │   ├── doc5274.txt
│   │   ├── doc5275.txt
│   │   ├── doc5276.txt
│   │   ├── doc5277.txt
│   │   ├── doc5278.txt
│   │   ├── doc5279.txt
│   │   ├── doc528.txt
│   │   ├── doc5280.txt
│   │   ├── doc5281.txt
│   │   ├── doc5282.txt
│   │   ├── doc5283.txt
│   │   ├── doc5284.txt
│   │   ├── doc5285.txt
│   │   ├── doc5286.txt
│   │   ├── doc5287.txt
│   │   ├── doc5288.txt
│   │   ├── doc5289.txt
│   │   ├── doc529.txt
│   │   ├── doc5290.txt
│   │   ├── doc5291.txt
│   │   ├── doc5292.txt
│   │   ├── doc5293.txt
│   │   ├── doc5294.txt
│   │   ├── doc5295.txt
│   │   ├── doc5296.txt
│   │   ├── doc5297.txt
│   │   ├── doc5298.txt
│   │   ├── doc5299.txt
│   │   ├── doc53.txt
│   │   ├── doc530.txt
│   │   ├── doc5300.txt
│   │   ├── doc5301.txt
│   │   ├── doc5302.txt
│   │   ├── doc5303.txt
│   │   ├── doc5304.txt
│   │   ├── doc5305.txt
│   │   ├── doc5306.txt
│   │   ├── doc5307.txt
│   │   ├── doc5308.txt
│   │   ├── doc5309.txt
│   │   ├── doc531.txt
│   │   ├── doc5310.txt
│   │   ├── doc5311.txt
│   │   ├── doc5312.txt
│   │   ├── doc5313.txt
│   │   ├── doc5314.txt
│   │   ├── doc5315.txt
│   │   ├── doc5316.txt
│   │   ├── doc5317.txt
│   │   ├── doc5318.txt
│   │   ├── doc5319.txt
│   │   ├── doc532.txt
│   │   ├── doc5320.txt
│   │   ├── doc5321.txt
│   │   ├── doc5322.txt
│   │   ├── doc5323.txt
│   │   ├── doc5324.txt
│   │   ├── doc5325.txt
│   │   ├── doc5326.txt
│   │   ├── doc5327.txt
│   │   ├── doc5328.txt
│   │   ├── doc5329.txt
│   │   ├── doc533.txt
│   │   ├── doc5330.txt
│   │   ├── doc5331.txt
│   │   ├── doc5332.txt
│   │   ├── doc5333.txt
│   │   ├── doc5334.txt
│   │   ├── doc5335.txt
│   │   ├── doc5336.txt
│   │   ├── doc5337.txt
│   │   ├── doc5338.txt
│   │   ├── doc5339.txt
│   │   ├── doc534.txt
│   │   ├── doc5340.txt
│   │   ├── doc5341.txt
│   │   ├── doc5342.txt
│   │   ├── doc5343.txt
│   │   ├── doc5344.txt
│   │   ├── doc5345.txt
│   │   ├── doc5346.txt
│   │   ├── doc5347.txt
│   │   ├── doc5348.txt
│   │   ├── doc5349.txt
│   │   ├── doc535.txt
│   │   ├── doc5350.txt
│   │   ├── doc5351.txt
│   │   ├── doc5352.txt
│   │   ├── doc5353.txt
│   │   ├── doc5354.txt
│   │   ├── doc5355.txt
│   │   ├── doc5356.txt
│   │   ├── doc5357.txt
│   │   ├── doc5358.txt
│   │   ├── doc5359.txt
│   │   ├── doc536.txt
│   │   ├── doc5360.txt
│   │   ├── doc5361.txt
│   │   ├── doc5362.txt
│   │   ├── doc5363.txt
│   │   ├── doc5364.txt
│   │   ├── doc5365.txt
│   │   ├── doc5366.txt
│   │   ├── doc5367.txt
│   │   ├── doc5368.txt
│   │   ├── doc5369.txt
│   │   ├── doc537.txt
│   │   ├── doc5370.txt
│   │   ├── doc5371.txt
│   │   ├── doc5372.txt
│   │   ├── doc5373.txt
│   │   ├── doc5374.txt
│   │   ├── doc5375.txt
│   │   ├── doc5376.txt
│   │   ├── doc5377.txt
│   │   ├── doc5378.txt
│   │   ├── doc5379.txt
│   │   ├── doc538.txt
│   │   ├── doc5380.txt
│   │   ├── doc5381.txt
│   │   ├── doc5382.txt
│   │   ├── doc5383.txt
│   │   ├── doc5384.txt
│   │   ├── doc5385.txt
│   │   ├── doc5386.txt
│   │   ├── doc5387.txt
│   │   ├── doc5388.txt
│   │   ├── doc5389.txt
│   │   ├── doc539.txt
│   │   ├── doc5390.txt
│   │   ├── doc5391.txt
│   │   ├── doc5392.txt
│   │   ├── doc5393.txt
│   │   ├── doc5394.txt
│   │   ├── doc5395.txt
│   │   ├── doc5396.txt
│   │   ├── doc5397.txt
│   │   ├── doc5398.txt
│   │   ├── doc5399.txt
│   │   ├── doc54.txt
│   │   ├── doc540.txt
│   │   ├── doc5400.txt
│   │   ├── doc5401.txt
│   │   ├── doc5402.txt
│   │   ├── doc5403.txt
│   │   ├── doc5404.txt
│   │   ├── doc5405.txt
│   │   ├── doc5406.txt
│   │   ├── doc5407.txt
│   │   ├── doc5408.txt
│   │   ├── doc5409.txt
│   │   ├── doc541.txt
│   │   ├── doc5410.txt
│   │   ├── doc5411.txt
│   │   ├── doc5412.txt
│   │   ├── doc5413.txt
│   │   ├── doc5414.txt
│   │   ├── doc5415.txt
│   │   ├── doc5416.txt
│   │   ├── doc5417.txt
│   │   ├── doc5418.txt
│   │   ├── doc5419.txt
│   │   ├── doc542.txt
│   │   ├── doc5420.txt
│   │   ├── doc5421.txt
│   │   ├── doc5422.txt
│   │   ├── doc5423.txt
│   │   ├── doc5424.txt
│   │   ├── doc5425.txt
│   │   ├── doc5426.txt
│   │   ├── doc5427.txt
│   │   ├── doc5428.txt
│   │   ├── doc5429.txt
│   │   ├── doc543.txt
│   │   ├── doc5430.txt
│   │   ├── doc5431.txt
│   │   ├── doc5432.txt
│   │   ├── doc5433.txt
│   │   ├── doc5434.txt
│   │   ├── doc5435.txt
│   │   ├── doc5436.txt
│   │   ├── doc5437.txt
│   │   ├── doc5438.txt
│   │   ├── doc5439.txt
│   │   ├── doc544.txt
│   │   ├── doc5440.txt
│   │   ├── doc5441.txt
│   │   ├── doc5442.txt
│   │   ├── doc5443.txt
│   │   ├── doc5444.txt
│   │   ├── doc5445.txt
│   │   ├── doc5446.txt
│   │   ├── doc5447.txt
│   │   ├── doc5448.txt
│   │   ├── doc5449.txt
│   │   ├── doc545.txt
│   │   ├── doc5450.txt
│   │   ├── doc5451.txt
│   │   ├── doc5452.txt
│   │   ├── doc5453.txt
│   │   ├── doc5454.txt
│   │   ├── doc5455.txt
│   │   ├── doc5456.txt
│   │   ├── doc5457.txt
│   │   ├── doc5458.txt
│   │   ├── doc5459.txt
│   │   ├── doc546.txt
│   │   ├── doc5460.txt
│   │   ├── doc5461.txt
│   │   ├── doc5462.txt
│   │   ├── doc5463.txt
│   │   ├── doc5464.txt
│   │   ├── doc5465.txt
│   │   ├── doc5466.txt
│   │   ├── doc5467.txt
│   │   ├── doc5468.txt
│   │   ├── doc5469.txt
│   │   ├── doc547.txt
│   │   ├── doc5470.txt
│   │   ├── doc5471.txt
│   │   ├── doc5472.txt
│   │   ├── doc5473.txt
│   │   ├── doc5474.txt
│   │   ├── doc5475.txt
│   │   ├── doc5476.txt
│   │   ├── doc5477.txt
│   │   ├── doc5478.txt
│   │   ├── doc5479.txt
│   │   ├── doc548.txt
│   │   ├── doc5480.txt
│   │   ├── doc5481.txt
│   │   ├── doc5482.txt
│   │   ├── doc5483.txt
│   │   ├── doc5484.txt
│   │   ├── doc5485.txt
│   │   ├── doc5486.txt
│   │   ├── doc5487.txt
│   │   ├── doc5488.txt
│   │   ├── doc5489.txt
│   │   ├── doc549.txt
│   │   ├── doc5490.txt
│   │   ├── doc5491.txt
│   │   ├── doc5492.txt
│   │   ├── doc5493.txt
│   │   ├── doc5494.txt
│   │   ├── doc5495.txt
│   │   ├── doc5496.txt
│   │   ├── doc5497.txt
│   │   ├── doc5498.txt
│   │   ├── doc5499.txt
│   │   ├── doc55.txt
│   │   ├── doc550.txt
│   │   ├── doc5500.txt
│   │   ├── doc5501.txt
│   │   ├── doc5502.txt
│   │   ├── doc5503.txt
│   │   ├── doc5504.txt
│   │   ├── doc5505.txt
│   │   ├── doc5506.txt
│   │   ├── doc5507.txt
│   │   ├── doc5508.txt
│   │   ├── doc5509.txt
│   │   ├── doc551.txt
│   │   ├── doc5510.txt
│   │   ├── doc5511.txt
│   │   ├── doc5512.txt
│   │   ├── doc5513.txt
│   │   ├── doc5514.txt
│   │   ├── doc5515.txt
│   │   ├── doc5516.txt
│   │   ├── doc5517.txt
│   │   ├── doc5518.txt
│   │   ├── doc5519.txt
│   │   ├── doc552.txt
│   │   ├── doc5520.txt
│   │   ├── doc5521.txt
│   │   ├── doc5522.txt
│   │   ├── doc5523.txt
│   │   ├── doc5524.txt
│   │   ├── doc5525.txt
│   │   ├── doc5526.txt
│   │   ├── doc5527.txt
│   │   ├── doc5528.txt
│   │   ├── doc5529.txt
│   │   ├── doc553.txt
│   │   ├── doc5530.txt
│   │   ├── doc5531.txt
│   │   ├── doc5532.txt
│   │   ├── doc5533.txt
│   │   ├── doc5534.txt
│   │   ├── doc5535.txt
│   │   ├── doc5536.txt
│   │   ├── doc5537.txt
│   │   ├── doc5538.txt
│   │   ├── doc5539.txt
│   │   ├── doc554.txt
│   │   ├── doc5540.txt
│   │   ├── doc5541.txt
│   │   ├── doc5542.txt
│   │   ├── doc5543.txt
│   │   ├── doc5544.txt
│   │   ├── doc5545.txt
│   │   ├── doc5546.txt
│   │   ├── doc5547.txt
│   │   ├── doc5548.txt
│   │   ├── doc5549.txt
│   │   ├── doc555.txt
│   │   ├── doc5550.txt
│   │   ├── doc5551.txt
│   │   ├── doc5552.txt
│   │   ├── doc5553.txt
│   │   ├── doc5554.txt
│   │   ├── doc5555.txt
│   │   ├── doc5556.txt
│   │   ├── doc5557.txt
│   │   ├── doc5558.txt
│   │   ├── doc5559.txt
│   │   ├── doc556.txt
│   │   ├── doc5560.txt
│   │   ├── doc5561.txt
│   │   ├── doc5562.txt
│   │   ├── doc5563.txt
│   │   ├── doc5564.txt
│   │   ├── doc5565.txt
│   │   ├── doc5566.txt
│   │   ├── doc5567.txt
│   │   ├── doc5568.txt
│   │   ├── doc5569.txt
│   │   ├── doc557.txt
│   │   ├── doc5570.txt
│   │   ├── doc5571.txt
│   │   ├── doc5572.txt
│   │   ├── doc5573.txt
│   │   ├── doc5574.txt
│   │   ├── doc5575.txt
│   │   ├── doc5576.txt
│   │   ├── doc5577.txt
│   │   ├── doc5578.txt
│   │   ├── doc5579.txt
│   │   ├── doc558.txt
│   │   ├── doc5580.txt
│   │   ├── doc5581.txt
│   │   ├── doc5582.txt
│   │   ├── doc5583.txt
│   │   ├── doc5584.txt
│   │   ├── doc5585.txt
│   │   ├── doc5586.txt
│   │   ├── doc5587.txt
│   │   ├── doc5588.txt
│   │   ├── doc5589.txt
│   │   ├── doc559.txt
│   │   ├── doc5590.txt
│   │   ├── doc5591.txt
│   │   ├── doc5592.txt
│   │   ├── doc5593.txt
│   │   ├── doc5594.txt
│   │   ├── doc5595.txt
│   │   ├── doc5596.txt
│   │   ├── doc5597.txt
│   │   ├── doc5598.txt
│   │   ├── doc5599.txt
│   │   ├── doc56.txt
│   │   ├── doc560.txt
│   │   ├── doc5600.txt
│   │   ├── doc5601.txt
│   │   ├── doc5602.txt
│   │   ├── doc5603.txt
│   │   ├── doc5604.txt
│   │   ├── doc5605.txt
│   │   ├── doc5606.txt
│   │   ├── doc5607.txt
│   │   ├── doc5608.txt
│   │   ├── doc5609.txt
│   │   ├── doc561.txt
│   │   ├── doc5610.txt
│   │   ├── doc5611.txt
│   │   ├── doc5612.txt
│   │   ├── doc5613.txt
│   │   ├── doc5614.txt
│   │   ├── doc5615.txt
│   │   ├── doc5616.txt
│   │   ├── doc5617.txt
│   │   ├── doc5618.txt
│   │   ├── doc5619.txt
│   │   ├── doc562.txt
│   │   ├── doc5620.txt
│   │   ├── doc5621.txt
│   │   ├── doc5622.txt
│   │   ├── doc5623.txt
│   │   ├── doc5624.txt
│   │   ├── doc5625.txt
│   │   ├── doc5626.txt
│   │   ├── doc5627.txt
│   │   ├── doc5628.txt
│   │   ├── doc5629.txt
│   │   ├── doc563.txt
│   │   ├── doc5630.txt
│   │   ├── doc5631.txt
│   │   ├── doc5632.txt
│   │   ├── doc5633.txt
│   │   ├── doc5634.txt
│   │   ├── doc5635.txt
│   │   ├── doc5636.txt
│   │   ├── doc5637.txt
│   │   ├── doc5638.txt
│   │   ├── doc5639.txt
│   │   ├── doc564.txt
│   │   ├── doc5640.txt
│   │   ├── doc5641.txt
│   │   ├── doc5642.txt
│   │   ├── doc5643.txt
│   │   ├── doc5644.txt
│   │   ├── doc5645.txt
│   │   ├── doc5646.txt
│   │   ├── doc5647.txt
│   │   ├── doc5648.txt
│   │   ├── doc5649.txt
│   │   ├── doc565.txt
│   │   ├── doc5650.txt
│   │   ├── doc5651.txt
│   │   ├── doc5652.txt
│   │   ├── doc5653.txt
│   │   ├── doc5654.txt
│   │   ├── doc5655.txt
│   │   ├── doc5656.txt
│   │   ├── doc5657.txt
│   │   ├── doc5658.txt
│   │   ├── doc5659.txt
│   │   ├── doc566.txt
│   │   ├── doc5660.txt
│   │   ├── doc5661.txt
│   │   ├── doc5662.txt
│   │   ├── doc5663.txt
│   │   ├── doc5664.txt
│   │   ├── doc5665.txt
│   │   ├── doc5666.txt
│   │   ├── doc5667.txt
│   │   ├── doc5668.txt
│   │   ├── doc5669.txt
│   │   ├── doc567.txt
│   │   ├── doc5670.txt
│   │   ├── doc5671.txt
│   │   ├── doc5672.txt
│   │   ├── doc5673.txt
│   │   ├── doc5674.txt
│   │   ├── doc5675.txt
│   │   ├── doc5676.txt
│   │   ├── doc5677.txt
│   │   ├── doc5678.txt
│   │   ├── doc5679.txt
│   │   ├── doc568.txt
│   │   ├── doc5680.txt
│   │   ├── doc5681.txt
│   │   ├── doc5682.txt
│   │   ├── doc5683.txt
│   │   ├── doc5684.txt
│   │   ├── doc5685.txt
│   │   ├── doc5686.txt
│   │   ├── doc5687.txt
│   │   ├── doc5688.txt
│   │   ├── doc5689.txt
│   │   ├── doc569.txt
│   │   ├── doc5690.txt
│   │   ├── doc5691.txt
│   │   ├── doc5692.txt
│   │   ├── doc5693.txt
│   │   ├── doc5694.txt
│   │   ├── doc5695.txt
│   │   ├── doc5696.txt
│   │   ├── doc5697.txt
│   │   ├── doc5698.txt
│   │   ├── doc5699.txt
│   │   ├── doc57.txt
│   │   ├── doc570.txt
│   │   ├── doc5700.txt
│   │   ├── doc5701.txt
│   │   ├── doc5702.txt
│   │   ├── doc5703.txt
│   │   ├── doc5704.txt
│   │   ├── doc5705.txt
│   │   ├── doc5706.txt
│   │   ├── doc5707.txt
│   │   ├── doc5708.txt
│   │   ├── doc5709.txt
│   │   ├── doc571.txt
│   │   ├── doc5710.txt
│   │   ├── doc5711.txt
│   │   ├── doc5712.txt
│   │   ├── doc5713.txt
│   │   ├── doc5714.txt
│   │   ├── doc5715.txt
│   │   ├── doc5716.txt
│   │   ├── doc5717.txt
│   │   ├── doc5718.txt
│   │   ├── doc5719.txt
│   │   ├── doc572.txt
│   │   ├── doc5720.txt
│   │   ├── doc5721.txt
│   │   ├── doc5722.txt
│   │   ├── doc5723.txt
│   │   ├── doc5724.txt
│   │   ├── doc5725.txt
│   │   ├── doc5726.txt
│   │   ├── doc5727.txt
│   │   ├── doc5728.txt
│   │   ├── doc5729.txt
│   │   ├── doc573.txt
│   │   ├── doc5730.txt
│   │   ├── doc5731.txt
│   │   ├── doc5732.txt
│   │   ├── doc5733.txt
│   │   ├── doc5734.txt
│   │   ├── doc5735.txt
│   │   ├── doc5736.txt
│   │   ├── doc5737.txt
│   │   ├── doc5738.txt
│   │   ├── doc5739.txt
│   │   ├── doc574.txt
│   │   ├── doc5740.txt
│   │   ├── doc5741.txt
│   │   ├── doc5742.txt
│   │   ├── doc5743.txt
│   │   ├── doc5744.txt
│   │   ├── doc5745.txt
│   │   ├── doc5746.txt
│   │   ├── doc5747.txt
│   │   ├── doc5748.txt
│   │   ├── doc5749.txt
│   │   ├── doc575.txt
│   │   ├── doc5750.txt
│   │   ├── doc5751.txt
│   │   ├── doc5752.txt
│   │   ├── doc5753.txt
│   │   ├── doc5754.txt
│   │   ├── doc5755.txt
│   │   ├── doc5756.txt
│   │   ├── doc5757.txt
│   │   ├── doc5758.txt
│   │   ├── doc5759.txt
│   │   ├── doc576.txt
│   │   ├── doc5760.txt
│   │   ├── doc5761.txt
│   │   ├── doc5762.txt
│   │   ├── doc5763.txt
│   │   ├── doc5764.txt
│   │   ├── doc5765.txt
│   │   ├── doc5766.txt
│   │   ├── doc5767.txt
│   │   ├── doc5768.txt
│   │   ├── doc5769.txt
│   │   ├── doc577.txt
│   │   ├── doc5770.txt
│   │   ├── doc5771.txt
│   │   ├── doc5772.txt
│   │   ├── doc5773.txt
│   │   ├── doc5774.txt
│   │   ├── doc5775.txt
│   │   ├── doc5776.txt
│   │   ├── doc5777.txt
│   │   ├── doc5778.txt
│   │   ├── doc5779.txt
│   │   ├── doc578.txt
│   │   ├── doc5780.txt
│   │   ├── doc5781.txt
│   │   ├── doc5782.txt
│   │   ├── doc5783.txt
│   │   ├── doc5784.txt
│   │   ├── doc5785.txt
│   │   ├── doc5786.txt
│   │   ├── doc5787.txt
│   │   ├── doc5788.txt
│   │   ├── doc5789.txt
│   │   ├── doc579.txt
│   │   ├── doc5790.txt
│   │   ├── doc5791.txt
│   │   ├── doc5792.txt
│   │   ├── doc5793.txt
│   │   ├── doc5794.txt
│   │   ├── doc5795.txt
│   │   ├── doc5796.txt
│   │   ├── doc5797.txt
│   │   ├── doc5798.txt
│   │   ├── doc5799.txt
│   │   ├── doc58.txt
│   │   ├── doc580.txt
│   │   ├── doc5800.txt
│   │   ├── doc5801.txt
│   │   ├── doc5802.txt
│   │   ├── doc5803.txt
│   │   ├── doc5804.txt
│   │   ├── doc5805.txt
│   │   ├── doc5806.txt
│   │   ├── doc5807.txt
│   │   ├── doc5808.txt
│   │   ├── doc5809.txt
│   │   ├── doc581.txt
│   │   ├── doc5810.txt
│   │   ├── doc5811.txt
│   │   ├── doc5812.txt
│   │   ├── doc5813.txt
│   │   ├── doc5814.txt
│   │   ├── doc5815.txt
│   │   ├── doc5816.txt
│   │   ├── doc5817.txt
│   │   ├── doc5818.txt
│   │   ├── doc5819.txt
│   │   ├── doc582.txt
│   │   ├── doc5820.txt
│   │   ├── doc5821.txt
│   │   ├── doc5822.txt
│   │   ├── doc5823.txt
│   │   ├── doc5824.txt
│   │   ├── doc5825.txt
│   │   ├── doc5826.txt
│   │   ├── doc5827.txt
│   │   ├── doc5828.txt
│   │   ├── doc5829.txt
│   │   ├── doc583.txt
│   │   ├── doc5830.txt
│   │   ├── doc5831.txt
│   │   ├── doc5832.txt
│   │   ├── doc5833.txt
│   │   ├── doc5834.txt
│   │   ├── doc5835.txt
│   │   ├── doc5836.txt
│   │   ├── doc5837.txt
│   │   ├── doc5838.txt
│   │   ├── doc5839.txt
│   │   ├── doc584.txt
│   │   ├── doc5840.txt
│   │   ├── doc5841.txt
│   │   ├── doc5842.txt
│   │   ├── doc5843.txt
│   │   ├── doc5844.txt
│   │   ├── doc5845.txt
│   │   ├── doc5846.txt
│   │   ├── doc5847.txt
│   │   ├── doc5848.txt
│   │   ├── doc5849.txt
│   │   ├── doc585.txt
│   │   ├── doc5850.txt
│   │   ├── doc5851.txt
│   │   ├── doc5852.txt
│   │   ├── doc5853.txt
│   │   ├── doc5854.txt
│   │   ├── doc5855.txt
│   │   ├── doc5856.txt
│   │   ├── doc5857.txt
│   │   ├── doc5858.txt
│   │   ├── doc5859.txt
│   │   ├── doc586.txt
│   │   ├── doc5860.txt
│   │   ├── doc5861.txt
│   │   ├── doc5862.txt
│   │   ├── doc5863.txt
│   │   ├── doc5864.txt
│   │   ├── doc5865.txt
│   │   ├── doc5866.txt
│   │   ├── doc5867.txt
│   │   ├── doc5868.txt
│   │   ├── doc5869.txt
│   │   ├── doc587.txt
│   │   ├── doc5870.txt
│   │   ├── doc5871.txt
│   │   ├── doc5872.txt
│   │   ├── doc5873.txt
│   │   ├── doc5874.txt
│   │   ├── doc5875.txt
│   │   ├── doc5876.txt
│   │   ├── doc5877.txt
│   │   ├── doc5878.txt
│   │   ├── doc5879.txt
│   │   ├── doc588.txt
│   │   ├── doc5880.txt
│   │   ├── doc5881.txt
│   │   ├── doc5882.txt
│   │   ├── doc5883.txt
│   │   ├── doc5884.txt
│   │   ├── doc5885.txt
│   │   ├── doc5886.txt
│   │   ├── doc5887.txt
│   │   ├── doc5888.txt
│   │   ├── doc5889.txt
│   │   ├── doc589.txt
│   │   ├── doc5890.txt
│   │   ├── doc5891.txt
│   │   ├── doc5892.txt
│   │   ├── doc5893.txt
│   │   ├── doc5894.txt
│   │   ├── doc5895.txt
│   │   ├── doc5896.txt
│   │   ├── doc5897.txt
│   │   ├── doc5898.txt
│   │   ├── doc5899.txt
│   │   ├── doc59.txt
│   │   ├── doc590.txt
│   │   ├── doc5900.txt
│   │   ├── doc5901.txt
│   │   ├── doc5902.txt
│   │   ├── doc5903.txt
│   │   ├── doc5904.txt
│   │   ├── doc5905.txt
│   │   ├── doc5906.txt
│   │   ├── doc5907.txt
│   │   ├── doc5908.txt
│   │   ├── doc5909.txt
│   │   ├── doc591.txt
│   │   ├── doc5910.txt
│   │   ├── doc5911.txt
│   │   ├── doc5912.txt
│   │   ├── doc5913.txt
│   │   ├── doc5914.txt
│   │   ├── doc5915.txt
│   │   ├── doc5916.txt
│   │   ├── doc5917.txt
│   │   ├── doc5918.txt
│   │   ├── doc5919.txt
│   │   ├── doc592.txt
│   │   ├── doc5920.txt
│   │   ├── doc5921.txt
│   │   ├── doc5922.txt
│   │   ├── doc5923.txt
│   │   ├── doc5924.txt
│   │   ├── doc5925.txt
│   │   ├── doc5926.txt
│   │   ├── doc5927.txt
│   │   ├── doc5928.txt
│   │   ├── doc5929.txt
│   │   ├── doc593.txt
│   │   ├── doc5930.txt
│   │   ├── doc5931.txt
│   │   ├── doc5932.txt
│   │   ├── doc5933.txt
│   │   ├── doc5934.txt
│   │   ├── doc5935.txt
│   │   ├── doc5936.txt
│   │   ├── doc5937.txt
│   │   ├── doc5938.txt
│   │   ├── doc5939.txt
│   │   ├── doc594.txt
│   │   ├── doc5940.txt
│   │   ├── doc5941.txt
│   │   ├── doc5942.txt
│   │   ├── doc5943.txt
│   │   ├── doc5944.txt
│   │   ├── doc5945.txt
│   │   ├── doc5946.txt
│   │   ├── doc5947.txt
│   │   ├── doc5948.txt
│   │   ├── doc5949.txt
│   │   ├── doc595.txt
│   │   ├── doc5950.txt
│   │   ├── doc5951.txt
│   │   ├── doc5952.txt
│   │   ├── doc5953.txt
│   │   ├── doc5954.txt
│   │   ├── doc5955.txt
│   │   ├── doc5956.txt
│   │   ├── doc5957.txt
│   │   ├── doc5958.txt
│   │   ├── doc5959.txt
│   │   ├── doc596.txt
│   │   ├── doc5960.txt
│   │   ├── doc5961.txt
│   │   ├── doc5962.txt
│   │   ├── doc5963.txt
│   │   ├── doc5964.txt
│   │   ├── doc5965.txt
│   │   ├── doc5966.txt
│   │   ├── doc5967.txt
│   │   ├── doc5968.txt
│   │   ├── doc5969.txt
│   │   ├── doc597.txt
│   │   ├── doc5970.txt
│   │   ├── doc5971.txt
│   │   ├── doc5972.txt
│   │   ├── doc5973.txt
│   │   ├── doc5974.txt
│   │   ├── doc5975.txt
│   │   ├── doc5976.txt
│   │   ├── doc5977.txt
│   │   ├── doc5978.txt
│   │   ├── doc5979.txt
│   │   ├── doc598.txt
│   │   ├── doc5980.txt
│   │   ├── doc5981.txt
│   │   ├── doc5982.txt
│   │   ├── doc5983.txt
│   │   ├── doc5984.txt
│   │   ├── doc5985.txt
│   │   ├── doc5986.txt
│   │   ├── doc5987.txt
│   │   ├── doc5988.txt
│   │   ├── doc5989.txt
│   │   ├── doc599.txt
│   │   ├── doc5990.txt
│   │   ├── doc5991.txt
│   │   ├── doc5992.txt
│   │   ├── doc5993.txt
│   │   ├── doc5994.txt
│   │   ├── doc5995.txt
│   │   ├── doc5996.txt
│   │   ├── doc5997.txt
│   │   ├── doc5998.txt
│   │   ├── doc5999.txt
│   │   ├── doc6.txt
│   │   ├── doc60.txt
│   │   ├── doc600.txt
│   │   ├── doc6000.txt
│   │   ├── doc6001.txt
│   │   ├── doc6002.txt
│   │   ├── doc6003.txt
│   │   ├── doc6004.txt
│   │   ├── doc6005.txt
│   │   ├── doc6006.txt
│   │   ├── doc6007.txt
│   │   ├── doc6008.txt
│   │   ├── doc6009.txt
│   │   ├── doc601.txt
│   │   ├── doc6010.txt
│   │   ├── doc6011.txt
│   │   ├── doc6012.txt
│   │   ├── doc6013.txt
│   │   ├── doc6014.txt
│   │   ├── doc6015.txt
│   │   ├── doc6016.txt
│   │   ├── doc6017.txt
│   │   ├── doc6018.txt
│   │   ├── doc6019.txt
│   │   ├── doc602.txt
│   │   ├── doc6020.txt
│   │   ├── doc6021.txt
│   │   ├── doc6022.txt
│   │   ├── doc6023.txt
│   │   ├── doc6024.txt
│   │   ├── doc6025.txt
│   │   ├── doc6026.txt
│   │   ├── doc6027.txt
│   │   ├── doc6028.txt
│   │   ├── doc6029.txt
│   │   ├── doc603.txt
│   │   ├── doc6030.txt
│   │   ├── doc6031.txt
│   │   ├── doc6032.txt
│   │   ├── doc6033.txt
│   │   ├── doc6034.txt
│   │   ├── doc6035.txt
│   │   ├── doc6036.txt
│   │   ├── doc6037.txt
│   │   ├── doc6038.txt
│   │   ├── doc6039.txt
│   │   ├── doc604.txt
│   │   ├── doc6040.txt
│   │   ├── doc6041.txt
│   │   ├── doc6042.txt
│   │   ├── doc6043.txt
│   │   ├── doc6044.txt
│   │   ├── doc6045.txt
│   │   ├── doc6046.txt
│   │   ├── doc6047.txt
│   │   ├── doc6048.txt
│   │   ├── doc6049.txt
│   │   ├── doc605.txt
│   │   ├── doc6050.txt
│   │   ├── doc6051.txt
│   │   ├── doc6052.txt
│   │   ├── doc6053.txt
│   │   ├── doc6054.txt
│   │   ├── doc6055.txt
│   │   ├── doc6056.txt
│   │   ├── doc6057.txt
│   │   ├── doc6058.txt
│   │   ├── doc6059.txt
│   │   ├── doc606.txt
│   │   ├── doc6060.txt
│   │   ├── doc6061.txt
│   │   ├── doc6062.txt
│   │   ├── doc6063.txt
│   │   ├── doc6064.txt
│   │   ├── doc6065.txt
│   │   ├── doc6066.txt
│   │   ├── doc6067.txt
│   │   ├── doc6068.txt
│   │   ├── doc6069.txt
│   │   ├── doc607.txt
│   │   ├── doc6070.txt
│   │   ├── doc6071.txt
│   │   ├── doc6072.txt
│   │   ├── doc6073.txt
│   │   ├── doc6074.txt
│   │   ├── doc6075.txt
│   │   ├── doc6076.txt
│   │   ├── doc6077.txt
│   │   ├── doc6078.txt
│   │   ├── doc6079.txt
│   │   ├── doc608.txt
│   │   ├── doc6080.txt
│   │   ├── doc6081.txt
│   │   ├── doc6082.txt
│   │   ├── doc6083.txt
│   │   ├── doc6084.txt
│   │   ├── doc6085.txt
│   │   ├── doc6086.txt
│   │   ├── doc6087.txt
│   │   ├── doc6088.txt
│   │   ├── doc6089.txt
│   │   ├── doc609.txt
│   │   ├── doc6090.txt
│   │   ├── doc6091.txt
│   │   ├── doc6092.txt
│   │   ├── doc6093.txt
│   │   ├── doc6094.txt
│   │   ├── doc6095.txt
│   │   ├── doc6096.txt
│   │   ├── doc6097.txt
│   │   ├── doc6098.txt
│   │   ├── doc6099.txt
│   │   ├── doc61.txt
│   │   ├── doc610.txt
│   │   ├── doc6100.txt
│   │   ├── doc6101.txt
│   │   ├── doc6102.txt
│   │   ├── doc6103.txt
│   │   ├── doc6104.txt
│   │   ├── doc6105.txt
│   │   ├── doc6106.txt
│   │   ├── doc6107.txt
│   │   ├── doc6108.txt
│   │   ├── doc6109.txt
│   │   ├── doc611.txt
│   │   ├── doc6110.txt
│   │   ├── doc6111.txt
│   │   ├── doc6112.txt
│   │   ├── doc6113.txt
│   │   ├── doc6114.txt
│   │   ├── doc6115.txt
│   │   ├── doc6116.txt
│   │   ├── doc6117.txt
│   │   ├── doc6118.txt
│   │   ├── doc6119.txt
│   │   ├── doc612.txt
│   │   ├── doc6120.txt
│   │   ├── doc6121.txt
│   │   ├── doc6122.txt
│   │   ├── doc6123.txt
│   │   ├── doc6124.txt
│   │   ├── doc6125.txt
│   │   ├── doc6126.txt
│   │   ├── doc6127.txt
│   │   ├── doc6128.txt
│   │   ├── doc6129.txt
│   │   ├── doc613.txt
│   │   ├── doc6130.txt
│   │   ├── doc6131.txt
│   │   ├── doc6132.txt
│   │   ├── doc6133.txt
│   │   ├── doc6134.txt
│   │   ├── doc6135.txt
│   │   ├── doc6136.txt
│   │   ├── doc6137.txt
│   │   ├── doc6138.txt
│   │   ├── doc6139.txt
│   │   ├── doc614.txt
│   │   ├── doc6140.txt
│   │   ├── doc6141.txt
│   │   ├── doc6142.txt
│   │   ├── doc6143.txt
│   │   ├── doc6144.txt
│   │   ├── doc6145.txt
│   │   ├── doc6146.txt
│   │   ├── doc6147.txt
│   │   ├── doc6148.txt
│   │   ├── doc6149.txt
│   │   ├── doc615.txt
│   │   ├── doc6150.txt
│   │   ├── doc6151.txt
│   │   ├── doc6152.txt
│   │   ├── doc6153.txt
│   │   ├── doc6154.txt
│   │   ├── doc6155.txt
│   │   ├── doc6156.txt
│   │   ├── doc6157.txt
│   │   ├── doc6158.txt
│   │   ├── doc6159.txt
│   │   ├── doc616.txt
│   │   ├── doc6160.txt
│   │   ├── doc6161.txt
│   │   ├── doc6162.txt
│   │   ├── doc6163.txt
│   │   ├── doc6164.txt
│   │   ├── doc6165.txt
│   │   ├── doc6166.txt
│   │   ├── doc6167.txt
│   │   ├── doc6168.txt
│   │   ├── doc6169.txt
│   │   ├── doc617.txt
│   │   ├── doc6170.txt
│   │   ├── doc6171.txt
│   │   ├── doc6172.txt
│   │   ├── doc6173.txt
│   │   ├── doc6174.txt
│   │   ├── doc6175.txt
│   │   ├── doc6176.txt
│   │   ├── doc6177.txt
│   │   ├── doc6178.txt
│   │   ├── doc6179.txt
│   │   ├── doc618.txt
│   │   ├── doc6180.txt
│   │   ├── doc6181.txt
│   │   ├── doc6182.txt
│   │   ├── doc6183.txt
│   │   ├── doc6184.txt
│   │   ├── doc6185.txt
│   │   ├── doc6186.txt
│   │   ├── doc6187.txt
│   │   ├── doc6188.txt
│   │   ├── doc6189.txt
│   │   ├── doc619.txt
│   │   ├── doc6190.txt
│   │   ├── doc6191.txt
│   │   ├── doc6192.txt
│   │   ├── doc6193.txt
│   │   ├── doc6194.txt
│   │   ├── doc6195.txt
│   │   ├── doc6196.txt
│   │   ├── doc6197.txt
│   │   ├── doc6198.txt
│   │   ├── doc6199.txt
│   │   ├── doc62.txt
│   │   ├── doc620.txt
│   │   ├── doc6200.txt
│   │   ├── doc6201.txt
│   │   ├── doc6202.txt
│   │   ├── doc6203.txt
│   │   ├── doc6204.txt
│   │   ├── doc6205.txt
│   │   ├── doc6206.txt
│   │   ├── doc6207.txt
│   │   ├── doc6208.txt
│   │   ├── doc6209.txt
│   │   ├── doc621.txt
│   │   ├── doc6210.txt
│   │   ├── doc6211.txt
│   │   ├── doc6212.txt
│   │   ├── doc6213.txt
│   │   ├── doc6214.txt
│   │   ├── doc6215.txt
│   │   ├── doc6216.txt
│   │   ├── doc6217.txt
│   │   ├── doc6218.txt
│   │   ├── doc6219.txt
│   │   ├── doc622.txt
│   │   ├── doc6220.txt
│   │   ├── doc6221.txt
│   │   ├── doc6222.txt
│   │   ├── doc6223.txt
│   │   ├── doc6224.txt
│   │   ├── doc6225.txt
│   │   ├── doc6226.txt
│   │   ├── doc6227.txt
│   │   ├── doc6228.txt
│   │   ├── doc6229.txt
│   │   ├── doc623.txt
│   │   ├── doc6230.txt
│   │   ├── doc6231.txt
│   │   ├── doc6232.txt
│   │   ├── doc6233.txt
│   │   ├── doc6234.txt
│   │   ├── doc6235.txt
│   │   ├── doc6236.txt
│   │   ├── doc6237.txt
│   │   ├── doc6238.txt
│   │   ├── doc6239.txt
│   │   ├── doc624.txt
│   │   ├── doc6240.txt
│   │   ├── doc6241.txt
│   │   ├── doc6242.txt
│   │   ├── doc6243.txt
│   │   ├── doc6244.txt
│   │   ├── doc6245.txt
│   │   ├── doc6246.txt
│   │   ├── doc6247.txt
│   │   ├── doc6248.txt
│   │   ├── doc6249.txt
│   │   ├── doc625.txt
│   │   ├── doc6250.txt
│   │   ├── doc6251.txt
│   │   ├── doc6252.txt
│   │   ├── doc6253.txt
│   │   ├── doc6254.txt
│   │   ├── doc6255.txt
│   │   ├── doc6256.txt
│   │   ├── doc6257.txt
│   │   ├── doc6258.txt
│   │   ├── doc6259.txt
│   │   ├── doc626.txt
│   │   ├── doc6260.txt
│   │   ├── doc6261.txt
│   │   ├── doc6262.txt
│   │   ├── doc6263.txt
│   │   ├── doc6264.txt
│   │   ├── doc6265.txt
│   │   ├── doc6266.txt
│   │   ├── doc6267.txt
│   │   ├── doc6268.txt
│   │   ├── doc6269.txt
│   │   ├── doc627.txt
│   │   ├── doc6270.txt
│   │   ├── doc6271.txt
│   │   ├── doc6272.txt
│   │   ├── doc6273.txt
│   │   ├── doc6274.txt
│   │   ├── doc6275.txt
│   │   ├── doc6276.txt
│   │   ├── doc6277.txt
│   │   ├── doc6278.txt
│   │   ├── doc6279.txt
│   │   ├── doc628.txt
│   │   ├── doc6280.txt
│   │   ├── doc6281.txt
│   │   ├── doc6282.txt
│   │   ├── doc6283.txt
│   │   ├── doc6284.txt
│   │   ├── doc6285.txt
│   │   ├── doc6286.txt
│   │   ├── doc6287.txt
│   │   ├── doc6288.txt
│   │   ├── doc6289.txt
│   │   ├── doc629.txt
│   │   ├── doc6290.txt
│   │   ├── doc6291.txt
│   │   ├── doc6292.txt
│   │   ├── doc6293.txt
│   │   ├── doc6294.txt
│   │   ├── doc6295.txt
│   │   ├── doc6296.txt
│   │   ├── doc6297.txt
│   │   ├── doc6298.txt
│   │   ├── doc6299.txt
│   │   ├── doc63.txt
│   │   ├── doc630.txt
│   │   ├── doc6300.txt
│   │   ├── doc6301.txt
│   │   ├── doc6302.txt
│   │   ├── doc6303.txt
│   │   ├── doc6304.txt
│   │   ├── doc6305.txt
│   │   ├── doc6306.txt
│   │   ├── doc6307.txt
│   │   ├── doc6308.txt
│   │   ├── doc6309.txt
│   │   ├── doc631.txt
│   │   ├── doc6310.txt
│   │   ├── doc6311.txt
│   │   ├── doc6312.txt
│   │   ├── doc6313.txt
│   │   ├── doc6314.txt
│   │   ├── doc6315.txt
│   │   ├── doc6316.txt
│   │   ├── doc6317.txt
│   │   ├── doc6318.txt
│   │   ├── doc6319.txt
│   │   ├── doc632.txt
│   │   ├── doc6320.txt
│   │   ├── doc6321.txt
│   │   ├── doc6322.txt
│   │   ├── doc6323.txt
│   │   ├── doc6324.txt
│   │   ├── doc6325.txt
│   │   ├── doc6326.txt
│   │   ├── doc6327.txt
│   │   ├── doc6328.txt
│   │   ├── doc6329.txt
│   │   ├── doc633.txt
│   │   ├── doc6330.txt
│   │   ├── doc6331.txt
│   │   ├── doc6332.txt
│   │   ├── doc6333.txt
│   │   ├── doc6334.txt
│   │   ├── doc6335.txt
│   │   ├── doc6336.txt
│   │   ├── doc6337.txt
│   │   ├── doc6338.txt
│   │   ├── doc6339.txt
│   │   ├── doc634.txt
│   │   ├── doc6340.txt
│   │   ├── doc6341.txt
│   │   ├── doc6342.txt
│   │   ├── doc6343.txt
│   │   ├── doc6344.txt
│   │   ├── doc6345.txt
│   │   ├── doc6346.txt
│   │   ├── doc6347.txt
│   │   ├── doc6348.txt
│   │   ├── doc6349.txt
│   │   ├── doc635.txt
│   │   ├── doc6350.txt
│   │   ├── doc6351.txt
│   │   ├── doc6352.txt
│   │   ├── doc6353.txt
│   │   ├── doc6354.txt
│   │   ├── doc6355.txt
│   │   ├── doc6356.txt
│   │   ├── doc6357.txt
│   │   ├── doc6358.txt
│   │   ├── doc6359.txt
│   │   ├── doc636.txt
│   │   ├── doc6360.txt
│   │   ├── doc6361.txt
│   │   ├── doc6362.txt
│   │   ├── doc6363.txt
│   │   ├── doc6364.txt
│   │   ├── doc6365.txt
│   │   ├── doc6366.txt
│   │   ├── doc6367.txt
│   │   ├── doc6368.txt
│   │   ├── doc6369.txt
│   │   ├── doc637.txt
│   │   ├── doc6370.txt
│   │   ├── doc6371.txt
│   │   ├── doc6372.txt
│   │   ├── doc6373.txt
│   │   ├── doc6374.txt
│   │   ├── doc6375.txt
│   │   ├── doc6376.txt
│   │   ├── doc6377.txt
│   │   ├── doc6378.txt
│   │   ├── doc6379.txt
│   │   ├── doc638.txt
│   │   ├── doc6380.txt
│   │   ├── doc6381.txt
│   │   ├── doc6382.txt
│   │   ├── doc6383.txt
│   │   ├── doc6384.txt
│   │   ├── doc6385.txt
│   │   ├── doc6386.txt
│   │   ├── doc6387.txt
│   │   ├── doc6388.txt
│   │   ├── doc6389.txt
│   │   ├── doc639.txt
│   │   ├── doc6390.txt
│   │   ├── doc6391.txt
│   │   ├── doc6392.txt
│   │   ├── doc6393.txt
│   │   ├── doc6394.txt
│   │   ├── doc6395.txt
│   │   ├── doc6396.txt
│   │   ├── doc6397.txt
│   │   ├── doc6398.txt
│   │   ├── doc6399.txt
│   │   ├── doc64.txt
│   │   ├── doc640.txt
│   │   ├── doc6400.txt
│   │   ├── doc6401.txt
│   │   ├── doc6402.txt
│   │   ├── doc6403.txt
│   │   ├── doc6404.txt
│   │   ├── doc6405.txt
│   │   ├── doc6406.txt
│   │   ├── doc6407.txt
│   │   ├── doc6408.txt
│   │   ├── doc6409.txt
│   │   ├── doc641.txt
│   │   ├── doc6410.txt
│   │   ├── doc6411.txt
│   │   ├── doc6412.txt
│   │   ├── doc6413.txt
│   │   ├── doc6414.txt
│   │   ├── doc6415.txt
│   │   ├── doc6416.txt
│   │   ├── doc6417.txt
│   │   ├── doc6418.txt
│   │   ├── doc6419.txt
│   │   ├── doc642.txt
│   │   ├── doc6420.txt
│   │   ├── doc6421.txt
│   │   ├── doc6422.txt
│   │   ├── doc6423.txt
│   │   ├── doc6424.txt
│   │   ├── doc6425.txt
│   │   ├── doc6426.txt
│   │   ├── doc6427.txt
│   │   ├── doc6428.txt
│   │   ├── doc6429.txt
│   │   ├── doc643.txt
│   │   ├── doc6430.txt
│   │   ├── doc6431.txt
│   │   ├── doc6432.txt
│   │   ├── doc6433.txt
│   │   ├── doc6434.txt
│   │   ├── doc6435.txt
│   │   ├── doc6436.txt
│   │   ├── doc6437.txt
│   │   ├── doc6438.txt
│   │   ├── doc6439.txt
│   │   ├── doc644.txt
│   │   ├── doc6440.txt
│   │   ├── doc6441.txt
│   │   ├── doc6442.txt
│   │   ├── doc6443.txt
│   │   ├── doc6444.txt
│   │   ├── doc6445.txt
│   │   ├── doc6446.txt
│   │   ├── doc6447.txt
│   │   ├── doc6448.txt
│   │   ├── doc6449.txt
│   │   ├── doc645.txt
│   │   ├── doc6450.txt
│   │   ├── doc6451.txt
│   │   ├── doc6452.txt
│   │   ├── doc6453.txt
│   │   ├── doc6454.txt
│   │   ├── doc6455.txt
│   │   ├── doc6456.txt
│   │   ├── doc6457.txt
│   │   ├── doc6458.txt
│   │   ├── doc6459.txt
│   │   ├── doc646.txt
│   │   ├── doc6460.txt
│   │   ├── doc6461.txt
│   │   ├── doc6462.txt
│   │   ├── doc6463.txt
│   │   ├── doc6464.txt
│   │   ├── doc6465.txt
│   │   ├── doc6466.txt
│   │   ├── doc6467.txt
│   │   ├── doc6468.txt
│   │   ├── doc6469.txt
│   │   ├── doc647.txt
│   │   ├── doc6470.txt
│   │   ├── doc6471.txt
│   │   ├── doc6472.txt
│   │   ├── doc6473.txt
│   │   ├── doc6474.txt
│   │   ├── doc6475.txt
│   │   ├── doc6476.txt
│   │   ├── doc6477.txt
│   │   ├── doc6478.txt
│   │   ├── doc6479.txt
│   │   ├── doc648.txt
│   │   ├── doc6480.txt
│   │   ├── doc6481.txt
│   │   ├── doc6482.txt
│   │   ├── doc6483.txt
│   │   ├── doc6484.txt
│   │   ├── doc6485.txt
│   │   ├── doc6486.txt
│   │   ├── doc6487.txt
│   │   ├── doc6488.txt
│   │   ├── doc6489.txt
│   │   ├── doc649.txt
│   │   ├── doc6490.txt
│   │   ├── doc6491.txt
│   │   ├── doc6492.txt
│   │   ├── doc6493.txt
│   │   ├── doc6494.txt
│   │   ├── doc6495.txt
│   │   ├── doc6496.txt
│   │   ├── doc6497.txt
│   │   ├── doc6498.txt
│   │   ├── doc6499.txt
│   │   ├── doc65.txt
│   │   ├── doc650.txt
│   │   ├── doc6500.txt
│   │   ├── doc6501.txt
│   │   ├── doc6502.txt
│   │   ├── doc6503.txt
│   │   ├── doc6504.txt
│   │   ├── doc6505.txt
│   │   ├── doc6506.txt
│   │   ├── doc6507.txt
│   │   ├── doc6508.txt
│   │   ├── doc6509.txt
│   │   ├── doc651.txt
│   │   ├── doc6510.txt
│   │   ├── doc6511.txt
│   │   ├── doc6512.txt
│   │   ├── doc6513.txt
│   │   ├── doc6514.txt
│   │   ├── doc6515.txt
│   │   ├── doc6516.txt
│   │   ├── doc6517.txt
│   │   ├── doc6518.txt
│   │   ├── doc6519.txt
│   │   ├── doc652.txt
│   │   ├── doc6520.txt
│   │   ├── doc6521.txt
│   │   ├── doc6522.txt
│   │   ├── doc6523.txt
│   │   ├── doc6524.txt
│   │   ├── doc6525.txt
│   │   ├── doc6526.txt
│   │   ├── doc6527.txt
│   │   ├── doc6528.txt
│   │   ├── doc6529.txt
│   │   ├── doc653.txt
│   │   ├── doc6530.txt
│   │   ├── doc6531.txt
│   │   ├── doc6532.txt
│   │   ├── doc6533.txt
│   │   ├── doc6534.txt
│   │   ├── doc6535.txt
│   │   ├── doc6536.txt
│   │   ├── doc6537.txt
│   │   ├── doc6538.txt
│   │   ├── doc6539.txt
│   │   ├── doc654.txt
│   │   ├── doc6540.txt
│   │   ├── doc6541.txt
│   │   ├── doc6542.txt
│   │   ├── doc6543.txt
│   │   ├── doc6544.txt
│   │   ├── doc6545.txt
│   │   ├── doc6546.txt
│   │   ├── doc6547.txt
│   │   ├── doc6548.txt
│   │   ├── doc6549.txt
│   │   ├── doc655.txt
│   │   ├── doc6550.txt
│   │   ├── doc6551.txt
│   │   ├── doc6552.txt
│   │   ├── doc6553.txt
│   │   ├── doc6554.txt
│   │   ├── doc6555.txt
│   │   ├── doc6556.txt
│   │   ├── doc6557.txt
│   │   ├── doc6558.txt
│   │   ├── doc6559.txt
│   │   ├── doc656.txt
│   │   ├── doc6560.txt
│   │   ├── doc6561.txt
│   │   ├── doc6562.txt
│   │   ├── doc6563.txt
│   │   ├── doc6564.txt
│   │   ├── doc6565.txt
│   │   ├── doc6566.txt
│   │   ├── doc6567.txt
│   │   ├── doc6568.txt
│   │   ├── doc6569.txt
│   │   ├── doc657.txt
│   │   ├── doc6570.txt
│   │   ├── doc6571.txt
│   │   ├── doc6572.txt
│   │   ├── doc6573.txt
│   │   ├── doc6574.txt
│   │   ├── doc6575.txt
│   │   ├── doc6576.txt
│   │   ├── doc6577.txt
│   │   ├── doc6578.txt
│   │   ├── doc6579.txt
│   │   ├── doc658.txt
│   │   ├── doc6580.txt
│   │   ├── doc6581.txt
│   │   ├── doc6582.txt
│   │   ├── doc6583.txt
│   │   ├── doc6584.txt
│   │   ├── doc6585.txt
│   │   ├── doc6586.txt
│   │   ├── doc6587.txt
│   │   ├── doc6588.txt
│   │   ├── doc6589.txt
│   │   ├── doc659.txt
│   │   ├── doc6590.txt
│   │   ├── doc6591.txt
│   │   ├── doc6592.txt
│   │   ├── doc6593.txt
│   │   ├── doc6594.txt
│   │   ├── doc6595.txt
│   │   ├── doc6596.txt
│   │   ├── doc6597.txt
│   │   ├── doc6598.txt
│   │   ├── doc6599.txt
│   │   ├── doc66.txt
│   │   ├── doc660.txt
│   │   ├── doc6600.txt
│   │   ├── doc6601.txt
│   │   ├── doc6602.txt
│   │   ├── doc6603.txt
│   │   ├── doc6604.txt
│   │   ├── doc6605.txt
│   │   ├── doc6606.txt
│   │   ├── doc6607.txt
│   │   ├── doc6608.txt
│   │   ├── doc6609.txt
│   │   ├── doc661.txt
│   │   ├── doc6610.txt
│   │   ├── doc6611.txt
│   │   ├── doc6612.txt
│   │   ├── doc6613.txt
│   │   ├── doc6614.txt
│   │   ├── doc6615.txt
│   │   ├── doc6616.txt
│   │   ├── doc6617.txt
│   │   ├── doc6618.txt
│   │   ├── doc6619.txt
│   │   ├── doc662.txt
│   │   ├── doc6620.txt
│   │   ├── doc6621.txt
│   │   ├── doc6622.txt
│   │   ├── doc6623.txt
│   │   ├── doc6624.txt
│   │   ├── doc6625.txt
│   │   ├── doc6626.txt
│   │   ├── doc6627.txt
│   │   ├── doc6628.txt
│   │   ├── doc6629.txt
│   │   ├── doc663.txt
│   │   ├── doc6630.txt
│   │   ├── doc6631.txt
│   │   ├── doc6632.txt
│   │   ├── doc6633.txt
│   │   ├── doc6634.txt
│   │   ├── doc6635.txt
│   │   ├── doc6636.txt
│   │   ├── doc6637.txt
│   │   ├── doc6638.txt
│   │   ├── doc6639.txt
│   │   ├── doc664.txt
│   │   ├── doc6640.txt
│   │   ├── doc6641.txt
│   │   ├── doc6642.txt
│   │   ├── doc6643.txt
│   │   ├── doc6644.txt
│   │   ├── doc6645.txt
│   │   ├── doc6646.txt
│   │   ├── doc6647.txt
│   │   ├── doc6648.txt
│   │   ├── doc6649.txt
│   │   ├── doc665.txt
│   │   ├── doc6650.txt
│   │   ├── doc6651.txt
│   │   ├── doc6652.txt
│   │   ├── doc6653.txt
│   │   ├── doc6654.txt
│   │   ├── doc6655.txt
│   │   ├── doc6656.txt
│   │   ├── doc6657.txt
│   │   ├── doc6658.txt
│   │   ├── doc6659.txt
│   │   ├── doc666.txt
│   │   ├── doc6660.txt
│   │   ├── doc6661.txt
│   │   ├── doc6662.txt
│   │   ├── doc6663.txt
│   │   ├── doc6664.txt
│   │   ├── doc6665.txt
│   │   ├── doc6666.txt
│   │   ├── doc6667.txt
│   │   ├── doc6668.txt
│   │   ├── doc6669.txt
│   │   ├── doc667.txt
│   │   ├── doc6670.txt
│   │   ├── doc6671.txt
│   │   ├── doc6672.txt
│   │   ├── doc6673.txt
│   │   ├── doc6674.txt
│   │   ├── doc6675.txt
│   │   ├── doc6676.txt
│   │   ├── doc6677.txt
│   │   ├── doc6678.txt
│   │   ├── doc6679.txt
│   │   ├── doc668.txt
│   │   ├── doc6680.txt
│   │   ├── doc6681.txt
│   │   ├── doc6682.txt
│   │   ├── doc6683.txt
│   │   ├── doc6684.txt
│   │   ├── doc6685.txt
│   │   ├── doc6686.txt
│   │   ├── doc6687.txt
│   │   ├── doc6688.txt
│   │   ├── doc6689.txt
│   │   ├── doc669.txt
│   │   ├── doc6690.txt
│   │   ├── doc6691.txt
│   │   ├── doc6692.txt
│   │   ├── doc6693.txt
│   │   ├── doc6694.txt
│   │   ├── doc6695.txt
│   │   ├── doc6696.txt
│   │   ├── doc6697.txt
│   │   ├── doc6698.txt
│   │   ├── doc6699.txt
│   │   ├── doc67.txt
│   │   ├── doc670.txt
│   │   ├── doc6700.txt
│   │   ├── doc6701.txt
│   │   ├── doc6702.txt
│   │   ├── doc6703.txt
│   │   ├── doc6704.txt
│   │   ├── doc6705.txt
│   │   ├── doc6706.txt
│   │   ├── doc6707.txt
│   │   ├── doc6708.txt
│   │   ├── doc6709.txt
│   │   ├── doc671.txt
│   │   ├── doc6710.txt
│   │   ├── doc6711.txt
│   │   ├── doc6712.txt
│   │   ├── doc6713.txt
│   │   ├── doc6714.txt
│   │   ├── doc6715.txt
│   │   ├── doc6716.txt
│   │   ├── doc6717.txt
│   │   ├── doc6718.txt
│   │   ├── doc6719.txt
│   │   ├── doc672.txt
│   │   ├── doc6720.txt
│   │   ├── doc6721.txt
│   │   ├── doc6722.txt
│   │   ├── doc6723.txt
│   │   ├── doc6724.txt
│   │   ├── doc6725.txt
│   │   ├── doc6726.txt
│   │   ├── doc6727.txt
│   │   ├── doc6728.txt
│   │   ├── doc6729.txt
│   │   ├── doc673.txt
│   │   ├── doc6730.txt
│   │   ├── doc6731.txt
│   │   ├── doc6732.txt
│   │   ├── doc6733.txt
│   │   ├── doc6734.txt
│   │   ├── doc6735.txt
│   │   ├── doc6736.txt
│   │   ├── doc6737.txt
│   │   ├── doc6738.txt
│   │   ├── doc6739.txt
│   │   ├── doc674.txt
│   │   ├── doc6740.txt
│   │   ├── doc6741.txt
│   │   ├── doc6742.txt
│   │   ├── doc6743.txt
│   │   ├── doc6744.txt
│   │   ├── doc6745.txt
│   │   ├── doc6746.txt
│   │   ├── doc6747.txt
│   │   ├── doc6748.txt
│   │   ├── doc6749.txt
│   │   ├── doc675.txt
│   │   ├── doc6750.txt
│   │   ├── doc6751.txt
│   │   ├── doc6752.txt
│   │   ├── doc6753.txt
│   │   ├── doc6754.txt
│   │   ├── doc6755.txt
│   │   ├── doc6756.txt
│   │   ├── doc6757.txt
│   │   ├── doc6758.txt
│   │   ├── doc6759.txt
│   │   ├── doc676.txt
│   │   ├── doc6760.txt
│   │   ├── doc6761.txt
│   │   ├── doc6762.txt
│   │   ├── doc6763.txt
│   │   ├── doc6764.txt
│   │   ├── doc6765.txt
│   │   ├── doc6766.txt
│   │   ├── doc6767.txt
│   │   ├── doc6768.txt
│   │   ├── doc6769.txt
│   │   ├── doc677.txt
│   │   ├── doc6770.txt
│   │   ├── doc6771.txt
│   │   ├── doc6772.txt
│   │   ├── doc6773.txt
│   │   ├── doc6774.txt
│   │   ├── doc6775.txt
│   │   ├── doc6776.txt
│   │   ├── doc6777.txt
│   │   ├── doc6778.txt
│   │   ├── doc6779.txt
│   │   ├── doc678.txt
│   │   ├── doc6780.txt
│   │   ├── doc6781.txt
│   │   ├── doc6782.txt
│   │   ├── doc6783.txt
│   │   ├── doc6784.txt
│   │   ├── doc6785.txt
│   │   ├── doc6786.txt
│   │   ├── doc6787.txt
│   │   ├── doc6788.txt
│   │   ├── doc6789.txt
│   │   ├── doc679.txt
│   │   ├── doc6790.txt
│   │   ├── doc6791.txt
│   │   ├── doc6792.txt
│   │   ├── doc6793.txt
│   │   ├── doc6794.txt
│   │   ├── doc6795.txt
│   │   ├── doc6796.txt
│   │   ├── doc6797.txt
│   │   ├── doc6798.txt
│   │   ├── doc6799.txt
│   │   ├── doc68.txt
│   │   ├── doc680.txt
│   │   ├── doc6800.txt
│   │   ├── doc6801.txt
│   │   ├── doc6802.txt
│   │   ├── doc6803.txt
│   │   ├── doc6804.txt
│   │   ├── doc6805.txt
│   │   ├── doc6806.txt
│   │   ├── doc6807.txt
│   │   ├── doc6808.txt
│   │   ├── doc6809.txt
│   │   ├── doc681.txt
│   │   ├── doc6810.txt
│   │   ├── doc6811.txt
│   │   ├── doc6812.txt
│   │   ├── doc6813.txt
│   │   ├── doc6814.txt
│   │   ├── doc6815.txt
│   │   ├── doc6816.txt
│   │   ├── doc6817.txt
│   │   ├── doc6818.txt
│   │   ├── doc6819.txt
│   │   ├── doc682.txt
│   │   ├── doc6820.txt
│   │   ├── doc6821.txt
│   │   ├── doc6822.txt
│   │   ├── doc6823.txt
│   │   ├── doc6824.txt
│   │   ├── doc6825.txt
│   │   ├── doc6826.txt
│   │   ├── doc6827.txt
│   │   ├── doc6828.txt
│   │   ├── doc6829.txt
│   │   ├── doc683.txt
│   │   ├── doc6830.txt
│   │   ├── doc6831.txt
│   │   ├── doc6832.txt
│   │   ├── doc6833.txt
│   │   ├── doc6834.txt
│   │   ├── doc6835.txt
│   │   ├── doc6836.txt
│   │   ├── doc6837.txt
│   │   ├── doc6838.txt
│   │   ├── doc6839.txt
│   │   ├── doc684.txt
│   │   ├── doc6840.txt
│   │   ├── doc6841.txt
│   │   ├── doc6842.txt
│   │   ├── doc6843.txt
│   │   ├── doc6844.txt
│   │   ├── doc6845.txt
│   │   ├── doc6846.txt
│   │   ├── doc6847.txt
│   │   ├── doc6848.txt
│   │   ├── doc6849.txt
│   │   ├── doc685.txt
│   │   ├── doc6850.txt
│   │   ├── doc6851.txt
│   │   ├── doc6852.txt
│   │   ├── doc6853.txt
│   │   ├── doc6854.txt
│   │   ├── doc6855.txt
│   │   ├── doc6856.txt
│   │   ├── doc6857.txt
│   │   ├── doc6858.txt
│   │   ├── doc6859.txt
│   │   ├── doc686.txt
│   │   ├── doc6860.txt
│   │   ├── doc6861.txt
│   │   ├── doc6862.txt
│   │   ├── doc6863.txt
│   │   ├── doc6864.txt
│   │   ├── doc6865.txt
│   │   ├── doc6866.txt
│   │   ├── doc6867.txt
│   │   ├── doc6868.txt
│   │   ├── doc6869.txt
│   │   ├── doc687.txt
│   │   ├── doc6870.txt
│   │   ├── doc6871.txt
│   │   ├── doc6872.txt
│   │   ├── doc6873.txt
│   │   ├── doc6874.txt
│   │   ├── doc6875.txt
│   │   ├── doc6876.txt
│   │   ├── doc6877.txt
│   │   ├── doc6878.txt
│   │   ├── doc6879.txt
│   │   ├── doc688.txt
│   │   ├── doc6880.txt
│   │   ├── doc6881.txt
│   │   ├── doc6882.txt
│   │   ├── doc6883.txt
│   │   ├── doc6884.txt
│   │   ├── doc6885.txt
│   │   ├── doc6886.txt
│   │   ├── doc6887.txt
│   │   ├── doc6888.txt
│   │   ├── doc6889.txt
│   │   ├── doc689.txt
│   │   ├── doc6890.txt
│   │   ├── doc6891.txt
│   │   ├── doc6892.txt
│   │   ├── doc6893.txt
│   │   ├── doc6894.txt
│   │   ├── doc6895.txt
│   │   ├── doc6896.txt
│   │   ├── doc6897.txt
│   │   ├── doc6898.txt
│   │   ├── doc6899.txt
│   │   ├── doc69.txt
│   │   ├── doc690.txt
│   │   ├── doc6900.txt
│   │   ├── doc6901.txt
│   │   ├── doc6902.txt
│   │   ├── doc6903.txt
│   │   ├── doc6904.txt
│   │   ├── doc6905.txt
│   │   ├── doc6906.txt
│   │   ├── doc6907.txt
│   │   ├── doc6908.txt
│   │   ├── doc6909.txt
│   │   ├── doc691.txt
│   │   ├── doc6910.txt
│   │   ├── doc6911.txt
│   │   ├── doc6912.txt
│   │   ├── doc6913.txt
│   │   ├── doc6914.txt
│   │   ├── doc6915.txt
│   │   ├── doc6916.txt
│   │   ├── doc6917.txt
│   │   ├── doc692.txt
│   │   ├── doc693.txt
│   │   ├── doc694.txt
│   │   ├── doc695.txt
│   │   ├── doc696.txt
│   │   ├── doc697.txt
│   │   ├── doc698.txt
│   │   ├── doc699.txt
│   │   ├── doc7.txt
│   │   ├── doc70.txt
│   │   ├── doc700.txt
│   │   ├── doc701.txt
│   │   ├── doc702.txt
│   │   ├── doc703.txt
│   │   ├── doc704.txt
│   │   ├── doc705.txt
│   │   ├── doc706.txt
│   │   ├── doc707.txt
│   │   ├── doc708.txt
│   │   ├── doc709.txt
│   │   ├── doc71.txt
│   │   ├── doc710.txt
│   │   ├── doc711.txt
│   │   ├── doc712.txt
│   │   ├── doc713.txt
│   │   ├── doc714.txt
│   │   ├── doc715.txt
│   │   ├── doc716.txt
│   │   ├── doc717.txt
│   │   ├── doc718.txt
│   │   ├── doc719.txt
│   │   ├── doc72.txt
│   │   ├── doc720.txt
│   │   ├── doc721.txt
│   │   ├── doc722.txt
│   │   ├── doc723.txt
│   │   ├── doc724.txt
│   │   ├── doc725.txt
│   │   ├── doc726.txt
│   │   ├── doc727.txt
│   │   ├── doc728.txt
│   │   ├── doc729.txt
│   │   ├── doc73.txt
│   │   ├── doc730.txt
│   │   ├── doc731.txt
│   │   ├── doc732.txt
│   │   ├── doc733.txt
│   │   ├── doc734.txt
│   │   ├── doc735.txt
│   │   ├── doc736.txt
│   │   ├── doc737.txt
│   │   ├── doc738.txt
│   │   ├── doc739.txt
│   │   ├── doc74.txt
│   │   ├── doc740.txt
│   │   ├── doc741.txt
│   │   ├── doc742.txt
│   │   ├── doc743.txt
│   │   ├── doc744.txt
│   │   ├── doc745.txt
│   │   ├── doc746.txt
│   │   ├── doc747.txt
│   │   ├── doc748.txt
│   │   ├── doc749.txt
│   │   ├── doc75.txt
│   │   ├── doc750.txt
│   │   ├── doc751.txt
│   │   ├── doc752.txt
│   │   ├── doc753.txt
│   │   ├── doc754.txt
│   │   ├── doc755.txt
│   │   ├── doc756.txt
│   │   ├── doc757.txt
│   │   ├── doc758.txt
│   │   ├── doc759.txt
│   │   ├── doc76.txt
│   │   ├── doc760.txt
│   │   ├── doc761.txt
│   │   ├── doc762.txt
│   │   ├── doc763.txt
│   │   ├── doc764.txt
│   │   ├── doc765.txt
│   │   ├── doc766.txt
│   │   ├── doc767.txt
│   │   ├── doc768.txt
│   │   ├── doc769.txt
│   │   ├── doc77.txt
│   │   ├── doc770.txt
│   │   ├── doc771.txt
│   │   ├── doc772.txt
│   │   ├── doc773.txt
│   │   ├── doc774.txt
│   │   ├── doc775.txt
│   │   ├── doc776.txt
│   │   ├── doc777.txt
│   │   ├── doc778.txt
│   │   ├── doc779.txt
│   │   ├── doc78.txt
│   │   ├── doc780.txt
│   │   ├── doc781.txt
│   │   ├── doc782.txt
│   │   ├── doc783.txt
│   │   ├── doc784.txt
│   │   ├── doc785.txt
│   │   ├── doc786.txt
│   │   ├── doc787.txt
│   │   ├── doc788.txt
│   │   ├── doc789.txt
│   │   ├── doc79.txt
│   │   ├── doc790.txt
│   │   ├── doc791.txt
│   │   ├── doc792.txt
│   │   ├── doc793.txt
│   │   ├── doc794.txt
│   │   ├── doc795.txt
│   │   ├── doc796.txt
│   │   ├── doc797.txt
│   │   ├── doc798.txt
│   │   ├── doc799.txt
│   │   ├── doc8.txt
│   │   ├── doc80.txt
│   │   ├── doc800.txt
│   │   ├── doc801.txt
│   │   ├── doc802.txt
│   │   ├── doc803.txt
│   │   ├── doc804.txt
│   │   ├── doc805.txt
│   │   ├── doc806.txt
│   │   ├── doc807.txt
│   │   ├── doc808.txt
│   │   ├── doc809.txt
│   │   ├── doc81.txt
│   │   ├── doc810.txt
│   │   ├── doc811.txt
│   │   ├── doc812.txt
│   │   ├── doc813.txt
│   │   ├── doc814.txt
│   │   ├── doc815.txt
│   │   ├── doc816.txt
│   │   ├── doc817.txt
│   │   ├── doc818.txt
│   │   ├── doc819.txt
│   │   ├── doc82.txt
│   │   ├── doc820.txt
│   │   ├── doc821.txt
│   │   ├── doc822.txt
│   │   ├── doc823.txt
│   │   ├── doc824.txt
│   │   ├── doc825.txt
│   │   ├── doc826.txt
│   │   ├── doc827.txt
│   │   ├── doc828.txt
│   │   ├── doc829.txt
│   │   ├── doc83.txt
│   │   ├── doc830.txt
│   │   ├── doc831.txt
│   │   ├── doc832.txt
│   │   ├── doc833.txt
│   │   ├── doc834.txt
│   │   ├── doc835.txt
│   │   ├── doc836.txt
│   │   ├── doc837.txt
│   │   ├── doc838.txt
│   │   ├── doc839.txt
│   │   ├── doc84.txt
│   │   ├── doc840.txt
│   │   ├── doc841.txt
│   │   ├── doc842.txt
│   │   ├── doc843.txt
│   │   ├── doc844.txt
│   │   ├── doc845.txt
│   │   ├── doc846.txt
│   │   ├── doc847.txt
│   │   ├── doc848.txt
│   │   ├── doc849.txt
│   │   ├── doc85.txt
│   │   ├── doc850.txt
│   │   ├── doc851.txt
│   │   ├── doc852.txt
│   │   ├── doc853.txt
│   │   ├── doc854.txt
│   │   ├── doc855.txt
│   │   ├── doc856.txt
│   │   ├── doc857.txt
│   │   ├── doc858.txt
│   │   ├── doc859.txt
│   │   ├── doc86.txt
│   │   ├── doc860.txt
│   │   ├── doc861.txt
│   │   ├── doc862.txt
│   │   ├── doc863.txt
│   │   ├── doc864.txt
│   │   ├── doc865.txt
│   │   ├── doc866.txt
│   │   ├── doc867.txt
│   │   ├── doc868.txt
│   │   ├── doc869.txt
│   │   ├── doc87.txt
│   │   ├── doc870.txt
│   │   ├── doc871.txt
│   │   ├── doc872.txt
│   │   ├── doc873.txt
│   │   ├── doc874.txt
│   │   ├── doc875.txt
│   │   ├── doc876.txt
│   │   ├── doc877.txt
│   │   ├── doc878.txt
│   │   ├── doc879.txt
│   │   ├── doc88.txt
│   │   ├── doc880.txt
│   │   ├── doc881.txt
│   │   ├── doc882.txt
│   │   ├── doc883.txt
│   │   ├── doc884.txt
│   │   ├── doc885.txt
│   │   ├── doc886.txt
│   │   ├── doc887.txt
│   │   ├── doc888.txt
│   │   ├── doc889.txt
│   │   ├── doc89.txt
│   │   ├── doc890.txt
│   │   ├── doc891.txt
│   │   ├── doc892.txt
│   │   ├── doc893.txt
│   │   ├── doc894.txt
│   │   ├── doc895.txt
│   │   ├── doc896.txt
│   │   ├── doc897.txt
│   │   ├── doc898.txt
│   │   ├── doc899.txt
│   │   ├── doc9.txt
│   │   ├── doc90.txt
│   │   ├── doc900.txt
│   │   ├── doc901.txt
│   │   ├── doc902.txt
│   │   ├── doc903.txt
│   │   ├── doc904.txt
│   │   ├── doc905.txt
│   │   ├── doc906.txt
│   │   ├── doc907.txt
│   │   ├── doc908.txt
│   │   ├── doc909.txt
│   │   ├── doc91.txt
│   │   ├── doc910.txt
│   │   ├── doc911.txt
│   │   ├── doc912.txt
│   │   ├── doc913.txt
│   │   ├── doc914.txt
│   │   ├── doc915.txt
│   │   ├── doc916.txt
│   │   ├── doc917.txt
│   │   ├── doc918.txt
│   │   ├── doc919.txt
│   │   ├── doc92.txt
│   │   ├── doc920.txt
│   │   ├── doc921.txt
│   │   ├── doc922.txt
│   │   ├── doc923.txt
│   │   ├── doc924.txt
│   │   ├── doc925.txt
│   │   ├── doc926.txt
│   │   ├── doc927.txt
│   │   ├── doc928.txt
│   │   ├── doc929.txt
│   │   ├── doc93.txt
│   │   ├── doc930.txt
│   │   ├── doc931.txt
│   │   ├── doc932.txt
│   │   ├── doc933.txt
│   │   ├── doc934.txt
│   │   ├── doc935.txt
│   │   ├── doc936.txt
│   │   ├── doc937.txt
│   │   ├── doc938.txt
│   │   ├── doc939.txt
│   │   ├── doc94.txt
│   │   ├── doc940.txt
│   │   ├── doc941.txt
│   │   ├── doc942.txt
│   │   ├── doc943.txt
│   │   ├── doc944.txt
│   │   ├── doc945.txt
│   │   ├── doc946.txt
│   │   ├── doc947.txt
│   │   ├── doc948.txt
│   │   ├── doc949.txt
│   │   ├── doc95.txt
│   │   ├── doc950.txt
│   │   ├── doc951.txt
│   │   ├── doc952.txt
│   │   ├── doc953.txt
│   │   ├── doc954.txt
│   │   ├── doc955.txt
│   │   ├── doc956.txt
│   │   ├── doc957.txt
│   │   ├── doc958.txt
│   │   ├── doc959.txt
│   │   ├── doc96.txt
│   │   ├── doc960.txt
│   │   ├── doc961.txt
│   │   ├── doc962.txt
│   │   ├── doc963.txt
│   │   ├── doc964.txt
│   │   ├── doc965.txt
│   │   ├── doc966.txt
│   │   ├── doc967.txt
│   │   ├── doc968.txt
│   │   ├── doc969.txt
│   │   ├── doc97.txt
│   │   ├── doc970.txt
│   │   ├── doc971.txt
│   │   ├── doc972.txt
│   │   ├── doc973.txt
│   │   ├── doc974.txt
│   │   ├── doc975.txt
│   │   ├── doc976.txt
│   │   ├── doc977.txt
│   │   ├── doc978.txt
│   │   ├── doc979.txt
│   │   ├── doc98.txt
│   │   ├── doc980.txt
│   │   ├── doc981.txt
│   │   ├── doc982.txt
│   │   ├── doc983.txt
│   │   ├── doc984.txt
│   │   ├── doc985.txt
│   │   ├── doc986.txt
│   │   ├── doc987.txt
│   │   ├── doc988.txt
│   │   ├── doc989.txt
│   │   ├── doc99.txt
│   │   ├── doc990.txt
│   │   ├── doc991.txt
│   │   ├── doc992.txt
│   │   ├── doc993.txt
│   │   ├── doc994.txt
│   │   ├── doc995.txt
│   │   ├── doc996.txt
│   │   ├── doc997.txt
│   │   ├── doc998.txt
│   │   └── doc999.txt
│   └── dictionary.txt
└── Week9/
    ├── DeepQLearning-Keras.ipynb
    ├── DeepQLearning.ipynb
    └── README.md
Download .txt
SYMBOL INDEX (957 symbols across 109 files)

FILE: Week10/qiskit-sdk-py-master/examples/python/qft.py
  function input_state (line 83) | def input_state(circ, q, n):
  function qft (line 90) | def qft(circ, q, n):

FILE: Week10/qiskit-sdk-py-master/examples/python/rippleadd.py
  function majority (line 75) | def majority(p, a, b, c):
  function unmajority (line 82) | def unmajority(p, a, b, c):

FILE: Week10/qiskit-sdk-py-master/qiskit/_classicalregister.py
  class ClassicalRegister (line 24) | class ClassicalRegister(Register):
    method qasm (line 27) | def qasm(self):
    method __str__ (line 31) | def __str__(self):
    method __len__ (line 35) | def __len__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/_compositegate.py
  class CompositeGate (line 25) | class CompositeGate(Gate):
    method __init__ (line 28) | def __init__(self, name, param, args, circuit=None):
    method has_register (line 40) | def has_register(self, register):
    method _modifiers (line 45) | def _modifiers(self, gate):
    method _attach (line 51) | def _attach(self, gate):
    method _check_qubit (line 56) | def _check_qubit(self, qubit):
    method _check_qreg (line 65) | def _check_qreg(self, register):
    method _check_creg (line 73) | def _check_creg(self, register):
    method _check_dups (line 81) | def _check_dups(self, qubits):
    method qasm (line 90) | def qasm(self):
    method inverse (line 94) | def inverse(self):
    method q_if (line 100) | def q_if(self, *qregs):
    method c_if (line 105) | def c_if(self, c, val):

FILE: Week10/qiskit-sdk-py-master/qiskit/_gate.py
  class Gate (line 26) | class Gate(Instruction):
    method __init__ (line 29) | def __init__(self, name, param, args, circuit=None):
    method inverse (line 43) | def inverse(self):
    method q_if (line 47) | def q_if(self, *qregs):

FILE: Week10/qiskit-sdk-py-master/qiskit/_instruction.py
  class Instruction (line 25) | class Instruction(object):
    method __init__ (line 28) | def __init__(self, name, param, arg, circuit=None):
    method check_circuit (line 45) | def check_circuit(self):
    method c_if (line 50) | def c_if(self, classical, val):
    method _modifiers (line 59) | def _modifiers(self, gate):
    method _qasmif (line 68) | def _qasmif(self, string):

FILE: Week10/qiskit-sdk-py-master/qiskit/_instructionset.py
  class InstructionSet (line 25) | class InstructionSet(object):
    method __init__ (line 28) | def __init__(self):
    method add (line 32) | def add(self, gate):
    method inverse (line 39) | def inverse(self):
    method q_if (line 45) | def q_if(self, *qregs):
    method c_if (line 51) | def c_if(self, c, val):

FILE: Week10/qiskit-sdk-py-master/qiskit/_measure.py
  class Measure (line 24) | class Measure(Instruction):
    method __init__ (line 27) | def __init__(self, qubit, bit, circuit=None):
    method qasm (line 31) | def qasm(self):
    method reapply (line 40) | def reapply(self, circuit):

FILE: Week10/qiskit-sdk-py-master/qiskit/_qiskiterror.py
  class QISKitError (line 23) | class QISKitError(Exception):
    method __init__ (line 26) | def __init__(self, *message):
    method __str__ (line 30) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/_quantumcircuit.py
  class QuantumCircuit (line 32) | class QuantumCircuit(object):
    method __init__ (line 38) | def __init__(self, *regs):
    method has_register (line 46) | def has_register(self, register):
    method get_qregs (line 62) | def get_qregs(self):
    method get_cregs (line 70) | def get_cregs(self):
    method combine (line 78) | def combine(self, rhs):
    method extend (line 93) | def extend(self, rhs):
    method __add__ (line 106) | def __add__(self, rhs):
    method __iadd__ (line 110) | def __iadd__(self, rhs):
    method __len__ (line 114) | def __len__(self):
    method __getitem__ (line 118) | def __getitem__(self, item):
    method _attach (line 122) | def _attach(self, gate):
    method add (line 127) | def add(self, *regs):
    method _check_qreg (line 138) | def _check_qreg(self, register):
    method _check_qubit (line 147) | def _check_qubit(self, qubit):
    method _check_creg (line 152) | def _check_creg(self, register):
    method _check_dups (line 161) | def _check_dups(self, qubits):
    method qasm (line 167) | def qasm(self):
    method measure (line 176) | def measure(self, qubit, cbit):
    method reset (line 190) | def reset(self, quantum_register):

FILE: Week10/qiskit-sdk-py-master/qiskit/_quantumprogram.py
  function convert (line 54) | def convert(name):
  class QuantumProgram (line 59) | class QuantumProgram(object):
    method __init__ (line 100) | def __init__(self, specs=None):
    method __init_specs (line 116) | def __init_specs(self, specs, verbose=False):
    method create_quantum_register (line 152) | def create_quantum_register(self, name, size, verbose=False):
    method create_quantum_registers (line 175) | def create_quantum_registers(self, register_array):
    method create_classical_register (line 199) | def create_classical_register(self, name, size, verbose=False):
    method create_classical_registers (line 221) | def create_classical_registers(self, registers_array):
    method create_circuit (line 244) | def create_circuit(self, name, qregisters=None, cregisters=None):
    method add_circuit (line 271) | def add_circuit(self, name, quantum_circuit):
    method load_qasm_file (line 286) | def load_qasm_file(self, qasm_file, name=None, verbose=False):
    method load_qasm_text (line 316) | def load_qasm_text(self, qasm_string, name=None,  verbose=False):
    method get_quantum_register (line 349) | def get_quantum_register(self, name):
    method get_classical_register (line 362) | def get_classical_register(self, name):
    method get_quantum_register_names (line 375) | def get_quantum_register_names(self):
    method get_classical_register_names (line 379) | def get_classical_register_names(self):
    method get_circuit (line 383) | def get_circuit(self, name):
    method get_circuit_names (line 395) | def get_circuit_names(self):
    method get_qasm (line 399) | def get_qasm(self, name):
    method get_qasms (line 411) | def get_qasms(self, list_circuit_name):
    method get_initial_circuit (line 425) | def get_initial_circuit(self):
    method set_api (line 433) | def set_api(self, token, url, verify=True):
    method get_api_config (line 451) | def get_api_config(self):
    method get_api (line 455) | def get_api(self):
    method save (line 459) | def save(self, file_name=None, beauty=False):
    method load (line 499) | def load(self, file_name=None):
    method available_backends (line 535) | def available_backends(self):
    method local_backends (line 539) | def local_backends(self):
    method online_backends (line 543) | def online_backends(self):
    method online_simulators (line 557) | def online_simulators(self):
    method online_devices (line 570) | def online_devices(self):
    method get_backend_status (line 583) | def get_backend_status(self, backend):
    method get_backend_configuration (line 601) | def get_backend_configuration(self, backend, list_format=False):
    method get_backend_calibration (line 644) | def get_backend_calibration(self, backend):
    method get_backend_parameters (line 672) | def get_backend_parameters(self, backend):
    method compile (line 704) | def compile(self, name_of_circuits, backend="local_qasm_simulator",
    method get_execution_list (line 861) | def get_execution_list(self, qobj, verbose=False):
    method get_compiled_configuration (line 888) | def get_compiled_configuration(self, qobj, name):
    method get_compiled_qasm (line 905) | def get_compiled_qasm(self, qobj, name):
    method _dag2json (line 920) | def _dag2json(self, dag_circuit):
    method _unroller_code (line 939) | def _unroller_code(self, dag_ciruit, basis_gates=None):
    method run (line 964) | def run(self, qobj, wait=5, timeout=60, silent=True):
    method _wait_for_job (line 1008) | def _wait_for_job(self, jobid, wait=5, timeout=60, silent=True):
    method _run_local_simulator (line 1058) | def _run_local_simulator(self, backend, jobs, silent=True):
    method execute (line 1085) | def execute(self, name_of_circuits, backend="local_qasm_simulator",
  class Result (line 1149) | class Result(object):
    method __init__ (line 1173) | def __init__(self, qobj_result, qobj):
    method __str__ (line 1177) | def __str__(self):
    method __iadd__ (line 1185) | def __iadd__(self, other):
    method __add__ (line 1203) | def __add__(self, other):
    method get_error (line 1218) | def get_error(self):
    method get_ran_qasm (line 1224) | def get_ran_qasm(self, name):
    method get_data (line 1241) | def get_data(self, name):
    method get_counts (line 1283) | def get_counts(self, name):
    method average_data (line 1301) | def average_data(self, name, observable):
  class ResultError (line 1325) | class ResultError(QISKitError):
    method __init__ (line 1338) | def __init__(self, error):

FILE: Week10/qiskit-sdk-py-master/qiskit/_quantumregister.py
  class QuantumRegister (line 25) | class QuantumRegister(Register):
    method qasm (line 28) | def qasm(self):
    method __str__ (line 32) | def __str__(self):
    method __len__ (line 36) | def __len__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/_register.py
  class Register (line 25) | class Register(object):
    method __init__ (line 28) | def __init__(self, name, size):
    method __str__ (line 38) | def __str__(self):
    method __len__ (line 42) | def __len__(self):
    method check_range (line 46) | def check_range(self, j):
    method __getitem__ (line 51) | def __getitem__(self, key):

FILE: Week10/qiskit-sdk-py-master/qiskit/_reset.py
  class Reset (line 24) | class Reset(Instruction):
    method __init__ (line 27) | def __init__(self, qubit, circ=None):
    method qasm (line 31) | def qasm(self):
    method reapply (line 36) | def reapply(self, circ):

FILE: Week10/qiskit-sdk-py-master/qiskit/dagcircuit/_dagcircuit.py
  class DAGCircuit (line 36) | class DAGCircuit:
    method __init__ (line 45) | def __init__(self):
    method get_qubits (line 87) | def get_qubits(self):
    method rename_register (line 91) | def rename_register(self, regname, newname):
    method remove_all_ops_named (line 146) | def remove_all_ops_named(self, opname):
    method deepcopy (line 152) | def deepcopy(self):
    method fs (line 156) | def fs(self, number):
    method add_qreg (line 161) | def add_qreg(self, name, size):
    method add_creg (line 169) | def add_creg(self, name, size):
    method _add_wire (line 177) | def _add_wire(self, name, isClassical=False):
    method add_basis_element (line 200) | def add_basis_element(self, name, number_qubits,
    method add_gate_data (line 224) | def add_gate_data(self, name, gatedata):
    method _check_basis_data (line 244) | def _check_basis_data(self, name, qargs, cargs, params):
    method _check_condition (line 280) | def _check_condition(self, name, condition):
    method _check_bits (line 290) | def _check_bits(self, args, amap, bval):
    method _bits_in_condition (line 307) | def _bits_in_condition(self, cond):
    method _add_op_node (line 318) | def _add_op_node(self, nname, nqargs, ncargs, nparams, ncondition):
    method apply_operation_back (line 338) | def apply_operation_back(self, name, qargs, cargs=[], params=[],
    method apply_operation_front (line 370) | def apply_operation_front(self, name, qargs, cargs=[], params=[],
    method _make_union_basis (line 402) | def _make_union_basis(self, input_circuit):
    method _make_union_gates (line 417) | def _make_union_gates(self, input_circuit):
    method _check_wiremap_registers (line 445) | def _check_wiremap_registers(self, wire_map, keyregs, valregs,
    method _check_wiremap_validity (line 493) | def _check_wiremap_validity(self, wire_map, keymap, valmap, input_circ...
    method _map_condition (line 517) | def _map_condition(self, wire_map, condition):
    method compose_back (line 534) | def compose_back(self, input_circuit, wire_map={}):
    method compose_front (line 592) | def compose_front(self, input_circuit, wire_map={}):
    method size (line 650) | def size(self):
    method depth (line 654) | def depth(self):
    method width (line 659) | def width(self):
    method num_cbits (line 663) | def num_cbits(self):
    method num_tensor_factors (line 667) | def num_tensor_factors(self):
    method _gate_string (line 671) | def _gate_string(self, name):
    method qasm (line 687) | def qasm(self, decls_only=False, add_swap=False,
    method _check_wires_list (line 791) | def _check_wires_list(self, wires, name, input_circuit):
    method _make_pred_succ_maps (line 814) | def _make_pred_succ_maps(self, n):
    method _full_pred_succ_maps (line 826) | def _full_pred_succ_maps(self, pred_map, succ_map, input_circuit,
    method substitute_circuit_all (line 857) | def substitute_circuit_all(self, name, input_circuit, wires=[]):
    method substitute_circuit_one (line 946) | def substitute_circuit_one(self, node, input_circuit, wires=[]):
    method get_named_nodes (line 1035) | def get_named_nodes(self, name):
    method _remove_op_node (line 1050) | def _remove_op_node(self, n):
    method remove_ancestors_of (line 1060) | def remove_ancestors_of(self, node):
    method remove_descendants_of (line 1070) | def remove_descendants_of(self, node):
    method remove_nonancestors_of (line 1078) | def remove_nonancestors_of(self, node):
    method remove_nondescendants_of (line 1087) | def remove_nondescendants_of(self, node):
    method layers (line 1096) | def layers(self):
    method serial_layers (line 1185) | def serial_layers(self):
    method collect_runs (line 1222) | def collect_runs(self, namelist):
    method count_ops (line 1258) | def count_ops(self):
    method property_summary (line 1275) | def property_summary(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/dagcircuit/_dagcircuiterror.py
  class DAGCircuitError (line 23) | class DAGCircuitError(QISKitError):
    method __init__ (line 26) | def __init__(self, *msg):
    method __str__ (line 30) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/_extensionerror.py
  class ExtensionError (line 23) | class ExtensionError(QISKitError):
    method __init__ (line 26) | def __init__(self, *message):
    method __str__ (line 30) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/barrier.py
  class Barrier (line 28) | class Barrier(Instruction):
    method __init__ (line 31) | def __init__(self, args, circ):
    method inverse (line 35) | def inverse(self):
    method qasm (line 39) | def qasm(self):
    method reapply (line 52) | def reapply(self, circ):
  function barrier (line 57) | def barrier(self, *tuples):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ccx.py
  class ToffoliGate (line 27) | class ToffoliGate(Gate):
    method __init__ (line 30) | def __init__(self, ctl1, ctl2, tgt, circ=None):
    method qasm (line 34) | def qasm(self):
    method inverse (line 46) | def inverse(self):
    method reapply (line 50) | def reapply(self, circ):
  function ccx (line 55) | def ccx(self, ctl1, ctl2, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ch.py
  class CHGate (line 28) | class CHGate(Gate):
    method __init__ (line 31) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 35) | def qasm(self):
    method inverse (line 42) | def inverse(self):
    method reapply (line 46) | def reapply(self, circ):
  function ch (line 51) | def ch(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/crz.py
  class CrzGate (line 28) | class CrzGate(Gate):
    method __init__ (line 31) | def __init__(self, theta, ctl, tgt, circ=None):
    method qasm (line 35) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 48) | def reapply(self, circ):
  function crz (line 53) | def crz(self, theta, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cswap.py
  class FredkinGate (line 27) | class FredkinGate(CompositeGate):
    method __init__ (line 30) | def __init__(self, ctl, tgt1, tgt2, circ=None):
    method reapply (line 38) | def reapply(self, circ):
  function cswap (line 43) | def cswap(self, ctl, tgt1, tgt2):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cu1.py
  class Cu1Gate (line 29) | class Cu1Gate(Gate):
    method __init__ (line 32) | def __init__(self, theta, ctl, tgt, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 44) | def inverse(self):
    method reapply (line 49) | def reapply(self, circ):
  function cu1 (line 54) | def cu1(self, theta, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cu3.py
  class Cu3Gate (line 29) | class Cu3Gate(Gate):
    method __init__ (line 32) | def __init__(self, theta, phi, lam, ctl, tgt, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 47) | def inverse(self):
    method reapply (line 55) | def reapply(self, circ):
  function cu3 (line 60) | def cu3(self, theta, phi, lam, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cx.py
  class CnotGate (line 29) | class CnotGate(Gate):
    method __init__ (line 32) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 47) | def reapply(self, circ):
  function cx (line 52) | def cx(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cxbase.py
  class CXBase (line 27) | class CXBase(Gate):
    method __init__ (line 30) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 34) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function cx_base (line 50) | def cx_base(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cy.py
  class CyGate (line 28) | class CyGate(Gate):
    method __init__ (line 31) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 35) | def qasm(self):
    method inverse (line 42) | def inverse(self):
    method reapply (line 46) | def reapply(self, circ):
  function cy (line 51) | def cy(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cz.py
  class CzGate (line 27) | class CzGate(Gate):
    method __init__ (line 30) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 34) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function cz (line 50) | def cz(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/gatestools.py
  function attach_gate (line 22) | def attach_gate(element, quantum_register, gate, gate_class):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/h.py
  class HGate (line 29) | class HGate(Gate):
    method __init__ (line 32) | def __init__(self, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function h (line 50) | def h(self, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/iden.py
  class IdGate (line 29) | class IdGate(Gate):
    method __init__ (line 32) | def __init__(self, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function iden (line 50) | def iden(self, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/rx.py
  class RXGate (line 29) | class RXGate(Gate):
    method __init__ (line 32) | def __init__(self, theta, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 51) | def reapply(self, circ):
  function rx (line 56) | def rx(self, theta, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ry.py
  class RYGate (line 29) | class RYGate(Gate):
    method __init__ (line 32) | def __init__(self, theta, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 51) | def reapply(self, circ):
  function ry (line 56) | def ry(self, theta, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/rz.py
  class RZGate (line 29) | class RZGate(Gate):
    method __init__ (line 32) | def __init__(self, phi, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 51) | def reapply(self, circ):
  function rz (line 56) | def rz(self, phi, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/s.py
  class SGate (line 30) | class SGate(CompositeGate):
    method __init__ (line 33) | def __init__(self, qubit, circ=None):
    method reapply (line 38) | def reapply(self, circ):
    method qasm (line 42) | def qasm(self):
  function s (line 52) | def s(self, q):
  function sdg (line 64) | def sdg(self, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/swap.py
  class SwapGate (line 27) | class SwapGate(Gate):
    method __init__ (line 30) | def __init__(self, ctl, tgt, circ=None):
    method qasm (line 34) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function swap (line 50) | def swap(self, ctl, tgt):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/t.py
  class TGate (line 30) | class TGate(CompositeGate):
    method __init__ (line 33) | def __init__(self, qubit, circ=None):
    method reapply (line 38) | def reapply(self, circ):
    method qasm (line 42) | def qasm(self):
  function t (line 52) | def t(self, q):
  function tdg (line 64) | def tdg(self, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u1.py
  class U1Gate (line 29) | class U1Gate(Gate):
    method __init__ (line 32) | def __init__(self, theta, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 43) | def inverse(self):
    method reapply (line 48) | def reapply(self, circ):
  function u1 (line 53) | def u1(self, theta, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u2.py
  class U2Gate (line 30) | class U2Gate(Gate):
    method __init__ (line 33) | def __init__(self, phi, lam, qubit, circ=None):
    method qasm (line 37) | def qasm(self):
    method inverse (line 46) | def inverse(self):
    method reapply (line 56) | def reapply(self, circ):
  function u2 (line 61) | def u2(self, phi, lam, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u3.py
  class U3Gate (line 29) | class U3Gate(Gate):
    method __init__ (line 32) | def __init__(self, theta, phi, lam, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 46) | def inverse(self):
    method reapply (line 57) | def reapply(self, circ):
  function u3 (line 63) | def u3(self, theta, phi, lam, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ubase.py
  class UBase (line 27) | class UBase(Gate):
    method __init__ (line 30) | def __init__(self, param, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 45) | def inverse(self):
    method reapply (line 56) | def reapply(self, circ):
  function u_base (line 61) | def u_base(self, tpl, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/x.py
  class XGate (line 29) | class XGate(Gate):
    method __init__ (line 32) | def __init__(self, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function x (line 50) | def x(self, q):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/y.py
  class YGate (line 29) | class YGate(Gate):
    method __init__ (line 32) | def __init__(self, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circuit):
  function y (line 50) | def y(self, quantum_register):

FILE: Week10/qiskit-sdk-py-master/qiskit/extensions/standard/z.py
  class ZGate (line 29) | class ZGate(Gate):
    method __init__ (line 32) | def __init__(self, qubit, circ=None):
    method qasm (line 36) | def qasm(self):
    method inverse (line 41) | def inverse(self):
    method reapply (line 45) | def reapply(self, circ):
  function z (line 50) | def z(self, quantum_register):

FILE: Week10/qiskit-sdk-py-master/qiskit/mapper/_compiling.py
  function euler_angles_1q (line 28) | def euler_angles_1q(unitary_matrix):
  function simplify_U (line 84) | def simplify_U(theta, phi, lam):
  function rz_array (line 126) | def rz_array(theta):
  function ry_array (line 135) | def ry_array(theta):
  function two_qubit_kak (line 146) | def two_qubit_kak(unitary_matrix):

FILE: Week10/qiskit-sdk-py-master/qiskit/mapper/_coupling.py
  function coupling_dict2list (line 31) | def coupling_dict2list(couplingdict):
  function coupling_list2dict (line 50) | def coupling_list2dict(couplinglist):
  class Coupling (line 71) | class Coupling:
    method __init__ (line 79) | def __init__(self, couplingdict=None):
    method size (line 106) | def size(self):
    method get_qubits (line 110) | def get_qubits(self):
    method get_edges (line 114) | def get_edges(self):
    method add_qubit (line 122) | def add_qubit(self, name):
    method add_edge (line 137) | def add_edge(self, s_name, d_name):
    method connected (line 150) | def connected(self):
    method compute_distance (line 158) | def compute_distance(self):
    method distance (line 174) | def distance(self, q1, q2):
    method __str__ (line 184) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/mapper/_couplingerror.py
  class CouplingError (line 23) | class CouplingError(QISKitError):
    method __init__ (line 26) | def __init__(self, *msg):
    method __str__ (line 30) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/mapper/_mappererror.py
  class MapperError (line 24) | class MapperError(QISKitError):
    method __init__ (line 27) | def __init__(self, *message):
    method __str__ (line 31) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/mapper/_mapping.py
  function layer_permutation (line 40) | def layer_permutation(layer_partition, layout, qubit_subset, coupling, t...
  function direction_mapper (line 212) | def direction_mapper(circuit_graph, coupling_graph, verbose=False):
  function update_qasm (line 264) | def update_qasm(i, first_layer, best_layout, best_d,
  function swap_mapper (line 316) | def swap_mapper(circuit_graph, coupling_graph,
  function test_trig_solution (line 481) | def test_trig_solution(theta, phi, lamb, xi, theta1, theta2):
  function yzy_to_zyz (line 506) | def yzy_to_zyz(xi, theta1, theta2, eps=1e-9):
  function compose_u3 (line 600) | def compose_u3(theta1, phi1, lambda1, theta2, phi2, lambda2):
  function cx_cancellation (line 617) | def cx_cancellation(circuit):
  function optimize_1q_gates (line 643) | def optimize_1q_gates(circuit):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_barrier.py
  class Barrier (line 24) | class Barrier(Node):
    method __init__ (line 30) | def __init__(self, children):
    method qasm (line 34) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_binaryop.py
  class BinaryOp (line 25) | class BinaryOp(Node):
    method __init__ (line 33) | def __init__(self, children):
    method qasm (line 37) | def qasm(self, prec=15):
    method latex (line 42) | def latex(self, prec=15, nested_scope=None):
    method real (line 48) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_cnot.py
  class Cnot (line 24) | class Cnot(Node):
    method __init__ (line 31) | def __init__(self, children):
    method qasm (line 35) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_creg.py
  class Creg (line 24) | class Creg(Node):
    method __init__ (line 30) | def __init__(self, children):
    method to_string (line 44) | def to_string(self, indent):
    method qasm (line 50) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_customunitary.py
  class CustomUnitary (line 24) | class CustomUnitary(Node):
    method __init__ (line 38) | def __init__(self, children):
    method qasm (line 50) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_expressionlist.py
  class ExpressionList (line 24) | class ExpressionList(Node):
    method __init__ (line 30) | def __init__(self, children):
    method size (line 34) | def size(self):
    method qasm (line 38) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_external.py
  class External (line 26) | class External(Node):
    method __init__ (line 33) | def __init__(self, children):
    method qasm (line 37) | def qasm(self, prec=15):
    method latex (line 42) | def latex(self, prec=15, nested_scope=None):
    method real (line 47) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_gate.py
  class Gate (line 24) | class Gate(Node):
    method __init__ (line 34) | def __init__(self, children):
    method n_args (line 52) | def n_args(self):
    method n_bits (line 58) | def n_bits(self):
    method qasm (line 62) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_gatebody.py
  class GateBody (line 24) | class GateBody(Node):
    method __init__ (line 31) | def __init__(self, children):
    method qasm (line 35) | def qasm(self, prec=15):
    method calls (line 42) | def calls(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_id.py
  class Id (line 25) | class Id(Node):
    method __init__ (line 32) | def __init__(self, id, line, file):
    method to_string (line 42) | def to_string(self, indent):
    method qasm (line 47) | def qasm(self, prec=15):
    method latex (line 51) | def latex(self, prec=15, nested_scope=None):
    method real (line 65) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_idlist.py
  class IdList (line 24) | class IdList(Node):
    method __init__ (line 30) | def __init__(self, children):
    method size (line 34) | def size(self):
    method qasm (line 38) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_if.py
  class If (line 24) | class If(Node):
    method __init__ (line 33) | def __init__(self, children):
    method qasm (line 37) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_indexedid.py
  class IndexedId (line 24) | class IndexedId(Node):
    method __init__ (line 31) | def __init__(self, children):
    method to_string (line 40) | def to_string(self, indent):
    method qasm (line 45) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_intnode.py
  class Int (line 24) | class Int(Node):
    method __init__ (line 30) | def __init__(self, id):
    method to_string (line 35) | def to_string(self, indent):
    method qasm (line 40) | def qasm(self, prec=15):
    method latex (line 44) | def latex(self, prec=15, nested_scope=None):
    method real (line 48) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_magic.py
  class Magic (line 24) | class Magic(Node):
    method __init__ (line 30) | def __init__(self, children):
    method qasm (line 34) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_measure.py
  class Measure (line 24) | class Measure(Node):
    method __init__ (line 31) | def __init__(self, children):
    method qasm (line 35) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_node.py
  class Node (line 23) | class Node(object):
    method __init__ (line 26) | def __init__(self, type, children=None, root=None):
    method is_expression (line 37) | def is_expression(self):
    method add_child (line 41) | def add_child(self, node):
    method to_string (line 45) | def to_string(self, indent):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_nodeexception.py
  class NodeException (line 23) | class NodeException(Exception):
    method __init__ (line 26) | def __init__(self, *msg):
    method __str__ (line 30) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_opaque.py
  class Opaque (line 24) | class Opaque(Node):
    method __init__ (line 33) | def __init__(self, children):
    method n_args (line 48) | def n_args(self):
    method n_bits (line 54) | def n_bits(self):
    method qasm (line 58) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_prefix.py
  class Prefix (line 25) | class Prefix(Node):
    method __init__ (line 32) | def __init__(self, children):
    method qasm (line 36) | def qasm(self, prec=15):
    method latex (line 40) | def latex(self, prec=15, nested_scope=None):
    method real (line 45) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_primarylist.py
  class PrimaryList (line 24) | class PrimaryList(Node):
    method __init__ (line 30) | def __init__(self, children):
    method size (line 34) | def size(self):
    method qasm (line 38) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_program.py
  class Program (line 24) | class Program(Node):
    method __init__ (line 30) | def __init__(self, children):
    method qasm (line 34) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_qreg.py
  class Qreg (line 24) | class Qreg(Node):
    method __init__ (line 30) | def __init__(self, children):
    method to_string (line 44) | def to_string(self, indent):
    method qasm (line 50) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_real.py
  class Real (line 25) | class Real(Node):
    method __init__ (line 31) | def __init__(self, id):
    method to_string (line 36) | def to_string(self, indent):
    method qasm (line 41) | def qasm(self, prec=15):
    method latex (line 46) | def latex(self, prec=15, nested_scope=None):
    method real (line 53) | def real(self, nested_scope=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_reset.py
  class Reset (line 24) | class Reset(Node):
    method __init__ (line 30) | def __init__(self, children):
    method qasm (line 34) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_universalunitary.py
  class UniversalUnitary (line 24) | class UniversalUnitary(Node):
    method __init__ (line 31) | def __init__(self, children):
    method qasm (line 35) | def qasm(self, prec=15):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_qasm.py
  class Qasm (line 25) | class Qasm(object):
    method __init__ (line 28) | def __init__(self, filename=None, data=None):
    method get_filename (line 38) | def get_filename(self):
    method print_tokens (line 42) | def print_tokens(self):
    method parse (line 50) | def parse(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmerror.py
  class QasmError (line 24) | class QasmError(QISKitError):
    method __init__ (line 27) | def __init__(self, *msg):
    method __str__ (line 31) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmlexer.py
  class QasmLexer (line 34) | class QasmLexer(object):
    method __mklexer__ (line 41) | def __mklexer__(self, filename):
    method __init__ (line 47) | def __init__(self, filename):
    method input (line 52) | def input(self, data):
    method token (line 57) | def token(self):
    method pop (line 62) | def pop(self):
    method push (line 68) | def push(self, filename):
    method t_REAL (line 101) | def t_REAL(self, t):
    method t_NNINTEGER (line 107) | def t_NNINTEGER(self, t):
    method t_QREG (line 112) | def t_QREG(self, t):
    method t_CREG (line 116) | def t_CREG(self, t):
    method t_GATE (line 120) | def t_GATE(self, t):
    method t_MEASURE (line 124) | def t_MEASURE(self, t):
    method t_IF (line 128) | def t_IF(self, t):
    method t_RESET (line 132) | def t_RESET(self, t):
    method t_ASSIGN (line 136) | def t_ASSIGN(self, t):
    method t_MATCHES (line 140) | def t_MATCHES(self, t):
    method t_BARRIER (line 144) | def t_BARRIER(self, t):
    method t_OPAQUE (line 148) | def t_OPAQUE(self, t):
    method t_STRING (line 152) | def t_STRING(self, t):
    method t_INCLUDE (line 156) | def t_INCLUDE(self, t):
    method t_MAGIC (line 192) | def t_MAGIC(self, t):
    method t_COMMENT (line 196) | def t_COMMENT(self, t):
    method t_CX (line 200) | def t_CX(self, t):
    method t_U (line 204) | def t_U(self, t):
    method t_ID (line 208) | def t_ID(self, t):
    method t_newline (line 218) | def t_newline(self, t):
    method t_eof (line 223) | def t_eof(self, t):
    method t_error (line 232) | def t_error(self, t):

FILE: Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmparser.py
  class QasmParser (line 28) | class QasmParser(object):
    method __init__ (line 31) | def __init__(self, filename):
    method update_symtab (line 46) | def update_symtab(self, obj):
    method verify_declared_bit (line 64) | def verify_declared_bit(self, obj):
    method verify_bit_list (line 80) | def verify_bit_list(self, obj):
    method verify_exp_list (line 88) | def verify_exp_list(self, obj):
    method verify_as_gate (line 110) | def verify_as_gate(self, obj, bitlist, arglist=None):
    method verify_reg (line 143) | def verify_reg(self, obj, object_type):
    method verify_reg_list (line 169) | def verify_reg_list(self, obj, object_type):
    method id_tuple_list (line 177) | def id_tuple_list(self, id_node):
    method verify_distinct (line 194) | def verify_distinct(self, list_of_nodes):
    method pop_scope (line 238) | def pop_scope(self):
    method push_scope (line 242) | def push_scope(self):
    method p_main (line 250) | def p_main(self, program):
    method p_program_0 (line 260) | def p_program_0(self, program):
    method p_program_1 (line 266) | def p_program_1(self, program):
    method p_statement (line 278) | def p_statement(self, program):
    method p_magic (line 293) | def p_magic(self, program):
    method p_magic_0 (line 299) | def p_magic_0(self, program):
    method p_id (line 310) | def p_id(self, program):
    method p_id_e (line 316) | def p_id_e(self, program):
    method p_indexed_id (line 326) | def p_indexed_id(self, program):
    method p_primary (line 344) | def p_primary(self, program):
    method p_id_list_0 (line 355) | def p_id_list_0(self, program):
    method p_id_list_1 (line 361) | def p_id_list_1(self, program):
    method p_gate_id_list_0 (line 372) | def p_gate_id_list_0(self, program):
    method p_gate_id_list_1 (line 379) | def p_gate_id_list_1(self, program):
    method p_bit_list_0 (line 391) | def p_bit_list_0(self, program):
    method p_bit_list_1 (line 399) | def p_bit_list_1(self, program):
    method p_primary_list_0 (line 412) | def p_primary_list_0(self, program):
    method p_primary_list_1 (line 418) | def p_primary_list_1(self, program):
    method p_decl (line 430) | def p_decl(self, program):
    method p_qreg_decl (line 447) | def p_qreg_decl(self, program):
    method p_qreg_decl_e (line 459) | def p_qreg_decl_e(self, program):
    method p_creg_decl (line 469) | def p_creg_decl(self, program):
    method p_creg_decl_e (line 481) | def p_creg_decl_e(self, program):
    method p_gate_decl_0 (line 498) | def p_gate_decl_0(self, program):
    method p_gate_decl_1 (line 509) | def p_gate_decl_1(self, program):
    method p_gate_decl_2 (line 520) | def p_gate_decl_2(self, program):
    method p_gate_scope (line 532) | def p_gate_scope(self, program):
    method p_gate_body_0 (line 548) | def p_gate_body_0(self, program):
    method p_gate_body_1 (line 557) | def p_gate_body_1(self, program):
    method p_gate_op_list_0 (line 570) | def p_gate_op_list_0(self, program):
    method p_gate_op_list_1 (line 576) | def p_gate_op_list_1(self, program):
    method p_unitary_op_0 (line 596) | def p_unitary_op_0(self, program):
    method p_unitary_op_1 (line 604) | def p_unitary_op_1(self, program):
    method p_unitary_op_2 (line 615) | def p_unitary_op_2(self, program):
    method p_unitary_op_3 (line 624) | def p_unitary_op_3(self, program):
    method p_unitary_op_4 (line 633) | def p_unitary_op_4(self, program):
    method p_gate_op_0 (line 654) | def p_gate_op_0(self, program):
    method p_gate_op_0e1 (line 662) | def p_gate_op_0e1(self, p):
    method p_gate_op_0e2 (line 669) | def p_gate_op_0e2(self, program):
    method p_gate_op_1 (line 675) | def p_gate_op_1(self, program):
    method p_gate_op_1e1 (line 684) | def p_gate_op_1e1(self, program):
    method p_gate_op_1e2 (line 692) | def p_gate_op_1e2(self, program):
    method p_gate_op_2 (line 700) | def p_gate_op_2(self, program):
    method p_gate_op_2e (line 712) | def p_gate_op_2e(self, program):
    method p_gate_op_3 (line 718) | def p_gate_op_3(self, program):
    method p_gate_op_4 (line 727) | def p_gate_op_4(self, program):
    method p_gate_op_4e0 (line 737) | def p_gate_op_4e0(self, program):
    method p_gate_op_4e1 (line 744) | def p_gate_op_4e1(self, program):
    method p_gate_op_5 (line 751) | def p_gate_op_5(self, program):
    method p_gate_op_5e (line 759) | def p_gate_op_5e(self, program):
    method p_opaque_0 (line 772) | def p_opaque_0(self, program):
    method p_opaque_1 (line 784) | def p_opaque_1(self, program):
    method p_opaque_2 (line 792) | def p_opaque_2(self, program):
    method p_opaque_1e (line 803) | def p_opaque_1e(self, program):
    method p_measure (line 812) | def p_measure(self, program):
    method p_measure_e (line 820) | def p_measure_e(self, program):
    method p_barrier (line 832) | def p_barrier(self, program):
    method p_reset (line 843) | def p_reset(self, program):
    method p_if (line 853) | def p_if(self, program):
    method p_quantum_op (line 890) | def p_quantum_op(self, program):
    method p_unary_0 (line 911) | def p_unary_0(self, program):
    method p_unary_1 (line 917) | def p_unary_1(self, program):
    method p_unary_2 (line 923) | def p_unary_2(self, program):
    method p_unary_3 (line 929) | def p_unary_3(self, program):
    method p_unary_4 (line 935) | def p_unary_4(self, program):
    method p_unary_6 (line 941) | def p_unary_6(self, program):
    method p_prefix_expression_0 (line 954) | def p_prefix_expression_0(self, program):
    method p_prefix_expression_1 (line 960) | def p_prefix_expression_1(self, program):
    method p_additive_expression_0 (line 967) | def p_additive_expression_0(self, program):
    method p_additive_expression_1 (line 973) | def p_additive_expression_1(self, program):
    method p_multiplicative_expression_0 (line 980) | def p_multiplicative_expression_0(self, program):
    method p_multiplicative_expression_1 (line 986) | def p_multiplicative_expression_1(self, program):
    method p_expression_0 (line 993) | def p_expression_0(self, program):
    method p_expression_1 (line 999) | def p_expression_1(self, program):
    method p_exp_list_0 (line 1009) | def p_exp_list_0(self, program):
    method p_exp_list_1 (line 1015) | def p_exp_list_1(self, program):
    method p_ignore (line 1022) | def p_ignore(self, program):
    method p_error (line 1029) | def p_error(self, program):
    method find_column (line 1039) | def find_column(self, input, token):
    method print_tokens (line 1053) | def print_tokens(self):
    method parse_debug (line 1069) | def parse_debug(self, val):
    method parse (line 1079) | def parse(self, data):
    method print_tree (line 1087) | def print_tree(self):
    method run (line 1094) | def run(self, data):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_localsimulator.py
  function local_backends (line 70) | def local_backends():
  class LocalSimulator (line 109) | class LocalSimulator:
    method __init__ (line 113) | def __init__(self, backend, job):
    method run (line 119) | def run(self, silent=False):
    method result (line 124) | def result(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_qasm_cpp_simulator.py
  class QasmCppSimulator (line 24) | class QasmCppSimulator:
    method __init__ (line 29) | def __init__(self, job):
    method run (line 76) | def run(self, silent=True):
  function parse_complex (line 118) | def parse_complex(output, key):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_qasmsimulator.py
  class QasmSimulator (line 128) | class QasmSimulator(object):
    method _index1 (line 132) | def _index1(b, i, k):
    method _index2 (line 152) | def _index2(b1, i1, b2, i2, k):
    method __init__ (line 170) | def __init__(self, job):
    method _add_qasm_single (line 190) | def _add_qasm_single(self, gate, qubit):
    method _add_qasm_cx (line 206) | def _add_qasm_cx(self, q0, q1):
    method _add_qasm_decision (line 223) | def _add_qasm_decision(self, qubit):
    method _add_qasm_measure (line 241) | def _add_qasm_measure(self, qubit, cbit):
    method _add_qasm_reset (line 258) | def _add_qasm_reset(self, qubit):
    method run (line 284) | def run(self, silent=True):
    method _format_result (line 350) | def _format_result(self, counts):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_simulatorerror.py
  class SimulatorError (line 26) | class SimulatorError(QISKitError):
    method __init__ (line 29) | def __init__(self, *message):
    method __str__ (line 33) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_simulatortools.py
  function index1 (line 34) | def index1(b, i, k):
  function index2 (line 54) | def index2(b1, i1, b2, i2, k):
  function enlarge_single_opt (line 73) | def enlarge_single_opt(opt, qubit, number_of_qubits):
  function enlarge_two_opt (line 90) | def enlarge_two_opt(opt, q0, q1, num):
  function single_gate_params (line 110) | def single_gate_params(gate, params=None):
  function single_gate_matrix (line 129) | def single_gate_matrix(gate, params=None):

FILE: Week10/qiskit-sdk-py-master/qiskit/simulators/_unitarysimulator.py
  class UnitarySimulator (line 107) | class UnitarySimulator(object):
    method __init__ (line 110) | def __init__(self, job):
    method _add_unitary_single (line 121) | def _add_unitary_single(self, gate, qubit):
    method _add_unitary_two (line 132) | def _add_unitary_two(self, gate, q0, q1):
    method run (line 143) | def run(self, silent=True):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_backenderror.py
  class BackendError (line 24) | class BackendError(QISKitError):
    method __init__ (line 27) | def __init__(self, *message):
    method __str__ (line 31) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_circuitbackend.py
  class CircuitBackend (line 32) | class CircuitBackend(UnrollerBackend):
    method __init__ (line 38) | def __init__(self, basis=None):
    method set_basis (line 54) | def set_basis(self, basis):
    method version (line 61) | def version(self, version):
    method new_qreg (line 68) | def new_qreg(self, name, size):
    method new_creg (line 78) | def new_creg(self, name, size):
    method define_gate (line 88) | def define_gate(self, name, gatedata):
    method _map_qubit (line 98) | def _map_qubit(self, qubit):
    method _map_bit (line 105) | def _map_bit(self, bit):
    method _map_creg (line 112) | def _map_creg(self, creg):
    method u (line 119) | def u(self, arg, qubit, nested_scope=None):
    method cx (line 137) | def cx(self, qubit0, qubit1):
    method measure (line 151) | def measure(self, qubit, bit):
    method barrier (line 164) | def barrier(self, qubitlists):
    method reset (line 177) | def reset(self, qubit):
    method set_condition (line 188) | def set_condition(self, creg, cval):
    method drop_condition (line 197) | def drop_condition(self):
    method start_gate (line 202) | def start_gate(self, name, args, qubits, nested_scope=None):
    method end_gate (line 278) | def end_gate(self, name, args, qubits, nested_scope=None):
    method get_output (line 291) | def get_output(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_dagbackend.py
  class DAGBackend (line 26) | class DAGBackend(UnrollerBackend):
    method __init__ (line 29) | def __init__(self, basis=None):
    method set_basis (line 46) | def set_basis(self, basis):
    method define_gate (line 50) | def define_gate(self, name, gatedata):
    method version (line 55) | def version(self, version):
    method new_qreg (line 62) | def new_qreg(self, name, size):
    method new_creg (line 70) | def new_creg(self, name, size):
    method u (line 78) | def u(self, arg, qubit, nested_scope=None):
    method cx (line 98) | def cx(self, qubit0, qubit1):
    method measure (line 115) | def measure(self, qubit, bit):
    method barrier (line 131) | def barrier(self, qubitlists):
    method reset (line 146) | def reset(self, qubit):
    method set_condition (line 160) | def set_condition(self, creg, cval):
    method drop_condition (line 169) | def drop_condition(self):
    method start_gate (line 174) | def start_gate(self, name, args, qubits, nested_scope=None):
    method end_gate (line 198) | def end_gate(self, name, args, qubits, nested_scope=None):
    method get_output (line 211) | def get_output(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_jsonbackend.py
  class JsonBackend (line 52) | class JsonBackend(UnrollerBackend):
    method __init__ (line 55) | def __init__(self, basis=None):
    method set_basis (line 82) | def set_basis(self, basis):
    method version (line 89) | def version(self, version):
    method new_qreg (line 96) | def new_qreg(self, name, size):
    method new_creg (line 111) | def new_creg(self, name, size):
    method define_gate (line 125) | def define_gate(self, name, gatedata):
    method u (line 133) | def u(self, arg, qubit, nested_scope=None):
    method _add_condition (line 157) | def _add_condition(self):
    method cx (line 178) | def cx(self, qubit0, qubit1):
    method measure (line 195) | def measure(self, qubit, cbit):
    method barrier (line 212) | def barrier(self, qubitlists):
    method reset (line 231) | def reset(self, qubit):
    method set_condition (line 245) | def set_condition(self, creg, cval):
    method drop_condition (line 254) | def drop_condition(self):
    method start_gate (line 259) | def start_gate(self, name, args, qubits, nested_scope=None):
    method end_gate (line 287) | def end_gate(self, name, args, qubits, nested_scope=None):
    method get_output (line 300) | def get_output(self):
    method _is_circuit_valid (line 307) | def _is_circuit_valid(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_printerbackend.py
  class PrinterBackend (line 25) | class PrinterBackend(UnrollerBackend):
    method __init__ (line 31) | def __init__(self, basis=None):
    method set_comments (line 49) | def set_comments(self, comments):
    method set_basis (line 53) | def set_basis(self, basis):
    method version (line 60) | def version(self, version):
    method new_qreg (line 67) | def new_qreg(self, name, size):
    method new_creg (line 76) | def new_creg(self, name, size):
    method _gate_string (line 84) | def _gate_string(self, name):
    method define_gate (line 100) | def define_gate(self, name, gatedata):
    method u (line 122) | def u(self, arg, qubit, nested_scope=None):
    method cx (line 141) | def cx(self, qubit0, qubit1):
    method measure (line 155) | def measure(self, qubit, bit):
    method barrier (line 168) | def barrier(self, qubitlists):
    method reset (line 184) | def reset(self, qubit):
    method set_condition (line 195) | def set_condition(self, creg, cval):
    method drop_condition (line 206) | def drop_condition(self):
    method start_gate (line 213) | def start_gate(self, name, args, qubits, nested_scope=None):
    method end_gate (line 244) | def end_gate(self, name, args, qubits, nested_scope=None):
    method get_output (line 263) | def get_output(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_unroller.py
  class Unroller (line 25) | class Unroller(object):
    method __init__ (line 28) | def __init__(self, ast, backend=None, precision=15, filename=None):
    method _process_bit_id (line 54) | def _process_bit_id(self, node):
    method _process_custom_unitary (line 85) | def _process_custom_unitary(self, node):
    method _process_gate (line 124) | def _process_gate(self, node, opaque=False):
    method _process_cnot (line 145) | def _process_cnot(self, node):
    method _process_measure (line 161) | def _process_measure(self, node):
    method _process_if (line 171) | def _process_if(self, node):
    method _process_children (line 179) | def _process_children(self, node):
    method _process_node (line 184) | def _process_node(self, node):
    method set_backend (line 272) | def set_backend(self, backend):
    method execute (line 276) | def execute(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_unrollerbackend.py
  class UnrollerBackend (line 24) | class UnrollerBackend(object):
    method __init__ (line 30) | def __init__(self, basis=None):
    method set_basis (line 39) | def set_basis(self, basis):
    method version (line 46) | def version(self, version):
    method new_qreg (line 53) | def new_qreg(self, name, size):
    method new_creg (line 61) | def new_creg(self, name, size):
    method define_gate (line 69) | def define_gate(self, name, gatedata):
    method u (line 77) | def u(self, arg, qubit, nested_scope=None):
    method cx (line 87) | def cx(self, qubit0, qubit1):
    method measure (line 95) | def measure(self, qubit, bit):
    method barrier (line 103) | def barrier(self, qubitlists):
    method reset (line 110) | def reset(self, qubit):
    method set_condition (line 117) | def set_condition(self, creg, cval):
    method drop_condition (line 125) | def drop_condition(self):
    method start_gate (line 129) | def start_gate(self, name, args, qubits, nested_scope=None):
    method end_gate (line 140) | def end_gate(self, name, args, qubits, nested_scope=None):
    method get_output (line 151) | def get_output(self):

FILE: Week10/qiskit-sdk-py-master/qiskit/unroll/_unrollererror.py
  class UnrollerError (line 24) | class UnrollerError(QISKitError):
    method __init__ (line 27) | def __init__(self, *message):
    method __str__ (line 31) | def __str__(self):

FILE: Week10/qiskit-sdk-py-master/test/python/__init__.py
  function load_tests (line 3) | def load_tests(loader, standard_tests, pattern):

FILE: Week10/qiskit-sdk-py-master/test/python/_random_qasm_generator.py
  class RandomQasmGenerator (line 12) | class RandomQasmGenerator():
    method __init__ (line 16) | def __init__(self, seed=None,
    method add_circuits (line 38) | def add_circuits(self, nCircuits, doMeasure=True):
    method get_circuit_names (line 81) | def get_circuit_names(self):
    method getProgram (line 84) | def getProgram(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_apps.py
  class TestQuantumOptimization (line 29) | class TestQuantumOptimization(unittest.TestCase):
    method setUpClass (line 33) | def setUpClass(cls):
    method test_trial_functions (line 41) | def test_trial_functions(self):
  class TestHamiltonian (line 65) | class TestHamiltonian(unittest.TestCase):
    method setUpClass (line 68) | def setUpClass(cls):
    method test_hamiltonian (line 75) | def test_hamiltonian(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_jsonoutput.py
  class TestJsonOutput (line 27) | class TestJsonOutput(unittest.TestCase):
    method setUpClass (line 34) | def setUpClass(cls):
    method setUp (line 41) | def setUp(self):
    method test_json_output (line 45) | def test_json_output(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_local_simulator.py
  class LocalSimulatorTest (line 16) | class LocalSimulatorTest(unittest.TestCase):
    method setUpClass (line 22) | def setUpClass(cls):
    method tearDownClass (line 30) | def tearDownClass(cls):
    method setUp (line 34) | def setUp(self):
    method tearDown (line 50) | def tearDown(self):
    method test_local_configuration_present (line 53) | def test_local_configuration_present(self):
    method test_local_configurations (line 56) | def test_local_configurations(self):
    method test_simulator_classes (line 67) | def test_simulator_classes(self):
    method test_local_backends (line 73) | def test_local_backends(self):
    method test_instantiation (line 78) | def test_instantiation(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_qasm_python_simulator.py
  class LocalQasmSimulatorTest (line 30) | class LocalQasmSimulatorTest(unittest.TestCase):
    method setUpClass (line 34) | def setUpClass(cls):
    method tearDownClass (line 43) | def tearDownClass(cls):
    method setUp (line 46) | def setUp(self):
    method tearDown (line 52) | def tearDown(self):
    method test_qasm_simulator_single_shot (line 55) | def test_qasm_simulator_single_shot(self):
    method test_qasm_simulator (line 69) | def test_qasm_simulator(self):
    method test_if_statement (line 85) | def test_if_statement(self):
    method test_teleport (line 135) | def test_teleport(self):
    method profile_qasm_simulator (line 183) | def profile_qasm_simulator(self):
    method profile_nqubit_speed_grow_depth (line 222) | def profile_nqubit_speed_grow_depth(self):
    method profile_nqubit_speed_constant_depth (line 296) | def profile_nqubit_speed_constant_depth(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_qi.py
  class TestQI (line 30) | class TestQI(unittest.TestCase):
    method setUpClass (line 34) | def setUpClass(cls):
    method test_partial_trace (line 41) | def test_partial_trace(self):
    method test_vectorize (line 68) | def test_vectorize(self):
    method test_devectorize (line 79) | def test_devectorize(self):
    method test_outer (line 90) | def test_outer(self):
    method test_state_fidelity (line 103) | def test_state_fidelity(self):
    method test_purity (line 119) | def test_purity(self):
    method test_concurrence (line 128) | def test_concurrence(self):
  class TestPauli (line 142) | class TestPauli(unittest.TestCase):
    method setUpClass (line 146) | def setUpClass(cls):
    method test_pauli (line 153) | def test_pauli(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_quantumprogram.py
  class TestQuantumProgram (line 73) | class TestQuantumProgram(unittest.TestCase):
    method test_create_program_with_specs (line 80) | def test_create_program_with_specs(self):
    method test_create_program (line 95) | def test_create_program(self):
    method test_config_scripts_file (line 107) | def test_config_scripts_file(self):
    method test_create_classical_register (line 120) | def test_create_classical_register(self):
    method test_create_quantum_register (line 134) | def test_create_quantum_register(self):
    method test_fail_create_quantum_register (line 148) | def test_fail_create_quantum_register(self):
    method test_fail_create_classical_register (line 166) | def test_fail_create_classical_register(self):
    method test_create_quantum_register_same (line 185) | def test_create_quantum_register_same(self):
    method test_create_classical_register_same (line 200) | def test_create_classical_register_same(self):
    method test_create_classical_registers (line 215) | def test_create_classical_registers(self):
    method test_create_quantum_registers (line 232) | def test_create_quantum_registers(self):
    method test_create_circuit (line 249) | def test_create_circuit(self):
    method test_create_several_circuits (line 265) | def test_create_several_circuits(self):
    method test_load_qasm_file (line 287) | def test_load_qasm_file(self):
    method test_fail_load_qasm_file (line 304) | def test_fail_load_qasm_file(self):
    method test_load_qasm_text (line 319) | def test_load_qasm_text(self):
    method test_get_register_and_circuit (line 343) | def test_get_register_and_circuit(self):
    method test_get_register_and_circuit_names (line 361) | def test_get_register_and_circuit_names(self):
    method test_get_qasm (line 385) | def test_get_qasm(self):
    method test_get_qasms (line 407) | def test_get_qasms(self):
    method test_get_qasm_all_gates (line 436) | def test_get_qasm_all_gates(self):
    method test_get_initial_circuit (line 468) | def test_get_initial_circuit(self):
    method test_save (line 480) | def test_save(self):
    method test_save_wrong (line 505) | def test_save_wrong(self):
    method test_load (line 512) | def test_load(self):
    method test_load_wrong (line 524) | def test_load_wrong(self):
    method test_contact_multiple_vertical_circuits (line 532) | def test_contact_multiple_vertical_circuits(self):
    method test_setup_api (line 539) | def test_setup_api(self):
    method test_available_backends_exist (line 549) | def test_available_backends_exist(self):
    method test_local_backends_exist (line 559) | def test_local_backends_exist(self):
    method test_online_backends_exist (line 569) | def test_online_backends_exist(self):
    method test_online_devices (line 581) | def test_online_devices(self):
    method test_online_simulators (line 593) | def test_online_simulators(self):
    method test_backend_status (line 605) | def test_backend_status(self):
    method test_backend_status_fail (line 614) | def test_backend_status_fail(self):
    method test_get_backend_configuration (line 622) | def test_get_backend_configuration(self):
    method test_get_backend_configuration_fail (line 632) | def test_get_backend_configuration_fail(self):
    method test_get_backend_calibration (line 641) | def test_get_backend_calibration(self):
    method test_get_backend_parameters (line 655) | def test_get_backend_parameters(self):
    method test_compile_program (line 673) | def test_compile_program(self):
    method test_get_compiled_configuration (line 693) | def test_get_compiled_configuration(self):
    method test_get_compiled_qasm (line 714) | def test_get_compiled_qasm(self):
    method test_get_execution_list (line 735) | def test_get_execution_list(self):
    method test_compile_coupling_map (line 756) | def test_compile_coupling_map(self):
    method test_run_program (line 791) | def test_run_program(self):
    method test_combine_results (line 820) | def test_combine_results(self):
    method test_local_qasm_simulator (line 843) | def test_local_qasm_simulator(self):
    method test_local_qasm_simulator_one_shot (line 876) | def test_local_qasm_simulator_one_shot(self):
    method test_local_unitary_simulator (line 910) | def test_local_unitary_simulator(self):
    method test_run_program_map (line 937) | def test_run_program_map(self):
    method test_execute_program_map (line 960) | def test_execute_program_map(self):
    method test_average_data (line 982) | def test_average_data(self):
    method test_execute_one_circuit_simulator_online (line 1009) | def test_execute_one_circuit_simulator_online(self):
    method test_execute_several_circuits_simulator_online (line 1024) | def test_execute_several_circuits_simulator_online(self):
    method test_execute_one_circuit_real_online (line 1042) | def test_execute_one_circuit_real_online(self):
    method test_add_circuit (line 1070) | def test_add_circuit(self):
    method test_example_multiple_compile (line 1095) | def test_example_multiple_compile(self):
    method test_example_swap_bits (line 1162) | def test_example_swap_bits(self):

FILE: Week10/qiskit-sdk-py-master/test/python/test_unitary_python_simulator.py
  class LocalUnitarySimulatorTest (line 29) | class LocalUnitarySimulatorTest(unittest.TestCase):
    method setUp (line 32) | def setUp(self):
    method tearDown (line 42) | def tearDown(self):
    method test_unitary_simulator (line 45) | def test_unitary_simulator(self):
    method profile_unitary_simulator (line 72) | def profile_unitary_simulator(self):

FILE: Week10/qiskit-sdk-py-master/tools/apps/fermion.py
  function parity_set (line 44) | def parity_set(j,n):
  function update_set (line 54) | def update_set(j,n):
  function flip_set (line 64) | def flip_set(j,n):
  function pauli_term_append (line 76) | def pauli_term_append(pauli_term,pauli_list,threshold):
  function fermionic_maps (line 115) | def fermionic_maps(h1,h2,map_type,out_file=None,threshold=0.000000000001):
  function two_qubit_reduction (line 336) | def two_qubit_reduction(ham_in,m,out_file=None,threshold=0.000000000001):

FILE: Week10/qiskit-sdk-py-master/tools/apps/optimization.py
  function SPSA_optimization (line 31) | def SPSA_optimization(obj_fun, initial_theta, SPSA_parameters, max_trial...
  function SPSA_calibration (line 79) | def SPSA_calibration(obj_fun, initial_theta, initial_c, target_update, s...
  function Measure_pauli_z (line 119) | def Measure_pauli_z(data, pauli):
  function Energy_Estimate (line 146) | def Energy_Estimate(data, pauli_list):
  function trial_circuit_ry (line 160) | def trial_circuit_ry(n, m, theta, entangler_map, meas_string = None, mea...
  function trial_circuit_computational (line 201) | def trial_circuit_computational(n, state, meas_string = None, measuremen...
  function trial_circuit_ryrz (line 231) | def trial_circuit_ryrz(n, m, theta, entangler_map, meas_string = None, m...
  function make_Hamiltonian (line 272) | def make_Hamiltonian(pauli_list):
  function Hamiltonian_from_file (line 284) | def Hamiltonian_from_file(file_name):

FILE: Week10/qiskit-sdk-py-master/tools/qcvv/fitters.py
  function exp_fit_fun (line 27) | def exp_fit_fun(x, a, tau, c):
  function osc_fit_fun (line 32) | def osc_fit_fun(x, a, tau, f, phi, c):
  function plot_coherence (line 37) | def plot_coherence(xdata, ydata, std_error, fit, fit_function, xunit, ex...
  function plot_rb_data (line 64) | def plot_rb_data(xdata, ydatas, yavg, fit, survival_prob):

FILE: Week10/qiskit-sdk-py-master/tools/qcvv/tomography.py
  function build_state_tomography_circuits (line 53) | def build_state_tomography_circuits(Q_program, name, qubits, qreg, creg,
  function build_process_tomography_circuits (line 85) | def build_process_tomography_circuits(Q_program, name, qubits, qreg, creg,
  function __tomo_dicts (line 133) | def __tomo_dicts(qubits, basis=None, states=False):
  function __add_meas_circuits (line 163) | def __add_meas_circuits(Q_program, name, qubits, qreg, creg):
  function __add_prep_gates (line 201) | def __add_prep_gates(circuit, qreg, qubit, op):
  function __add_prep_circuits (line 220) | def __add_prep_circuits(Q_program, name, qubits, qreg, creg):
  function __tomo_labels (line 257) | def __tomo_labels(name, qubits, basis=None, states=False):
  function state_tomography_circuit_names (line 274) | def state_tomography_circuit_names(name, qubits):
  function process_tomography_circuit_names (line 292) | def process_tomography_circuit_names(name, qubits):
  function __counts_keys (line 317) | def __counts_keys(n):
  function marginal_counts (line 330) | def marginal_counts(counts, meas_qubits):
  function __get_meas_basis_ops (line 395) | def __get_meas_basis_ops(tup, basis):
  function __meas_basis (line 405) | def __meas_basis(n, basis):
  function __get_prep_basis_op (line 413) | def __get_prep_basis_op(dic, basis):
  function __prep_basis (line 423) | def __prep_basis(n, basis):
  function state_tomography_data (line 432) | def state_tomography_data(Q_result, name, meas_qubits, basis=None):
  function process_tomography_data (line 468) | def process_tomography_data(Q_result, name, meas_qubits, basis=None):
  function __tomo_basis_matrix (line 517) | def __tomo_basis_matrix(meas_basis):
  function __tomo_linear_inv (line 531) | def __tomo_linear_inv(freqs, ops, weights=None, trace=None):
  function __leastsq_fit (line 572) | def __leastsq_fit(data, weights=None, trace=None, beta=None):
  function __wizard (line 617) | def __wizard(rho, epsilon=None):
  function __get_option (line 653) | def __get_option(opt, options):
  function fit_tomography_data (line 663) | def fit_tomography_data(data, method=None, options=None):

FILE: Week10/qiskit-sdk-py-master/tools/qi/pauli.py
  class Pauli (line 26) | class Pauli:
    method __init__ (line 47) | def __init__(self, v, w):
    method __str__ (line 53) | def __str__(self):
    method __mul__ (line 63) | def __mul__(self, other):
    method to_label (line 72) | def to_label(self):
    method to_matrix (line 86) | def to_matrix(self):
  function random_pauli (line 114) | def random_pauli(numberofqubits):
  function sgn_prod (line 122) | def sgn_prod(P1, P2):
  function inverse_pauli (line 150) | def inverse_pauli(other):
  function label_to_pauli (line 156) | def label_to_pauli(label):
  function pauli_group (line 178) | def pauli_group(numberofqubits, case=0):
  function pauli_singles (line 225) | def pauli_singles(jindex, numberofqubits):

FILE: Week10/qiskit-sdk-py-master/tools/qi/qi.py
  function qft (line 35) | def qft(circ, q, n):
  function partial_trace (line 48) | def partial_trace(state, sys, dims=None, reverse=True):
  function __trace_middle_dims (line 106) | def __trace_middle_dims(sys, dims, reverse=True):
  function __trace_middle (line 128) | def __trace_middle(op, dim1=1, dim2=1, dim3=1):
  function vectorize (line 147) | def vectorize(rho, method='col'):
  function devectorize (line 180) | def devectorize(vec, method='col'):
  function choi_to_rauli (line 217) | def choi_to_rauli(choi, order=1):
  function chop (line 253) | def chop(op, epsilon=1e-10):
  function outer (line 269) | def outer(v1, v2=None):
  function funm_svd (line 295) | def funm_svd(a, func):
  function state_fidelity (line 313) | def state_fidelity(state1, state2):
  function purity (line 347) | def purity(state):
  function concurrence (line 361) | def concurrence(state):
  function is_pos_def (line 387) | def is_pos_def(x):

FILE: Week10/qiskit-sdk-py-master/tools/visualization.py
  function plot_histogram (line 35) | def plot_histogram(data, number_to_keep=False):
  class Arrow3D (line 73) | class Arrow3D(FancyArrowPatch):
    method __init__ (line 76) | def __init__(self, xs, ys, zs, *args, **kwargs):
    method draw (line 81) | def draw(self, renderer):
  function plot_bloch_vector (line 89) | def plot_bloch_vector(bloch, title=""):
  function plot_state_city (line 154) | def plot_state_city(rho, title=""):
  function plot_state_paulivec (line 222) | def plot_state_paulivec(rho, title=""):
  function n_choose_k (line 258) | def n_choose_k(n, k):
  function lex_index (line 277) | def lex_index(n, k, lst):
  function bit_string_index (line 295) | def bit_string_index(s):
  function phase_to_color_wheel (line 304) | def phase_to_color_wheel(complex_number):
  function plot_state_qsphere (line 329) | def plot_state_qsphere(rho):
  function plot_state (line 434) | def plot_state(rho, method='city'):
Copy disabled (too large) Download .json
Condensed preview — 7102 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (15,397K chars).
[
  {
    "path": "README.md",
    "chars": 1354,
    "preview": "# The_Math_of_Intelligence\nThis is the Syllabus for Siraj Raval's new course \"The Math of Intelligence\"\n\nEach week has a"
  },
  {
    "path": "Week1/ADRvsRating.csv",
    "chars": 12069,
    "preview": "ADR,Rating\n85.0,117.0\n83.5,110.00000000000001\n78.2,102.0\n68.1,97.0\n66.3,86.0\n99.8,135.0\n78.2,120.0\n85.6,103.0\n66.6,100.0"
  },
  {
    "path": "Week1/README.md",
    "chars": 3480,
    "preview": "# CODING CHALLANGE WINNER!\n\n## Coding Challenge -- Due Date, Thursday June 22nd, 2017\n\nThis week's coding challenge is t"
  },
  {
    "path": "Week1/demo.ipynb",
    "chars": 662662,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# The Math of Intelligence - Week 1"
  },
  {
    "path": "Week10/.ipynb_checkpoints/QuantumComputing - Bell State Tomography-checkpoint.ipynb",
    "chars": 34487,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Quantum Computing\"\n   ]\n  },\n  {\n"
  },
  {
    "path": "Week10/QuantumComputing - Bell State Tomography.ipynb",
    "chars": 34487,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Quantum Computing\"\n   ]\n  },\n  {\n"
  },
  {
    "path": "Week10/README.md",
    "chars": 2826,
    "preview": "# CODING CHALLANGE WINNER!\n\n## Coding Challenge\n\nThis week's coding challenge is to implement a **Quantum Computing Algo"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/.github/ISSUE_TEMPLATE.md",
    "chars": 1171,
    "preview": "<!--- Provide a general summary of the issue in the Title above -->\n\n## Expected Behavior\n<!--- If you're describing a b"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/.github/PULL_REQUEST_TEMPLATE.md",
    "chars": 1388,
    "preview": "<!--- Provide a general summary of your changes in the Title above -->\n\n## Description\n<!--- Describe your changes in de"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/.gitignore",
    "chars": 1439,
    "preview": "# SDK config file\nQconfig.py\n\n# ply outputs\nqiskit/qasm/parser.out\nqiskit/qasm/parsetab.py\n\n# editor files\n.vscode/\n\n#st"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/.pylintrc",
    "chars": 13743,
    "preview": "[MASTER]\n\n# Specify a configuration file.\n#rcfile=\n\n# Python code to execute, usually for sys.path manipulation such as\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/.travis.yml",
    "chars": 858,
    "preview": "# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/CODEOWNERS",
    "chars": 390,
    "preview": "# Where component owners are known, add them here.\n\nqiskit/core/* @ewinston @awcross1 @pacomf @jaygambetta @ismaelfaro\nq"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/CONTRIBUTING.rst",
    "chars": 3031,
    "preview": "Contributing\n============\n\n**We appreciate all kinds of help, so thank you!** \n\nYou can contribute in many ways to this "
  },
  {
    "path": "Week10/qiskit-sdk-py-master/LICENSE",
    "chars": 11357,
    "preview": "                                 Apache License\n                           Version 2.0, January 2004\n                   "
  },
  {
    "path": "Week10/qiskit-sdk-py-master/Makefile",
    "chars": 1552,
    "preview": "# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/README.rst",
    "chars": 8789,
    "preview": "Quantum Information Software Kit (QISKit)\n=========================================\n\n|Build Status|\n\nPython software dev"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/doc/Makefile",
    "chars": 611,
    "preview": "# Minimal makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHI"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/doc/conf.py",
    "chars": 5495,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n#\n# QISKit documentation build configuration file, created by\n# sphinx-qu"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/doc/contributing.rst",
    "chars": 33,
    "preview": ".. include:: ../CONTRIBUTING.rst\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/doc/index.rst",
    "chars": 2244,
    "preview": ".. QISKit documentation master file, created by\n   sphinx-quickstart on Tue Jul 25 18:13:28 2017.\n   You can adapt this "
  },
  {
    "path": "Week10/qiskit-sdk-py-master/doc/make.bat",
    "chars": 768,
    "preview": "@ECHO OFF\n\npushd %~dp0\n\nREM Command file for Sphinx documentation\n\nif \"%SPHINXBUILD%\" == \"\" (\n\tset SPHINXBUILD=python -m"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/jupyter/quantum_state_tomography_bell_states.ipynb",
    "chars": 374358,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outp"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/python/ghz.py",
    "chars": 3470,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/python/qft.py",
    "chars": 4078,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/python/rippleadd.py",
    "chars": 4073,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/python/teleport.py",
    "chars": 3340,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/qasm/entangled_registers.qasm",
    "chars": 338,
    "preview": "// A simple 8 qubit example entangling two 4 qubit registers\nOPENQASM 2.0;\ninclude \"qelib1.inc\";\n\nqreg a[4];\nqreg b[4];\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/examples/qasm/plaquette_check.qasm",
    "chars": 278,
    "preview": "// plaquette check\nOPENQASM 2.0;\ninclude \"qelib1.inc\";\n\nqreg q[5];\ncreg c[5];\n\nx q[1];\nx q[4];\nbarrier q;\n\ncx q[0], q[2]"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/__init__.py",
    "chars": 482,
    "preview": "from ._classicalregister import ClassicalRegister\nfrom ._quantumregister import QuantumRegister\nfrom ._quantumcircuit im"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_classicalregister.py",
    "chars": 1239,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_compositegate.py",
    "chars": 3579,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_gate.py",
    "chars": 1714,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_instruction.py",
    "chars": 2708,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_instructionset.py",
    "chars": 1765,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_measure.py",
    "chars": 1616,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_qiskiterror.py",
    "chars": 1054,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_quantumcircuit.py",
    "chars": 7018,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_quantumprogram.py",
    "chars": 51080,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_quantumregister.py",
    "chars": 1275,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_register.py",
    "chars": 1884,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/_reset.py",
    "chars": 1291,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/dagcircuit/__init__.py",
    "chars": 36,
    "preview": "from ._dagcircuit import DAGCircuit\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/dagcircuit/_dagcircuit.py",
    "chars": 58207,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/dagcircuit/_dagcircuiterror.py",
    "chars": 1088,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/_extensionerror.py",
    "chars": 1095,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/__init__.py",
    "chars": 530,
    "preview": "from .barrier import barrier\nfrom .ccx import ccx\nfrom .cswap import cswap\nfrom .cx import cx\nfrom .cxbase import cx_bas"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/barrier.py",
    "chars": 2775,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ccx.py",
    "chars": 2234,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ch.py",
    "chars": 2260,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/crz.py",
    "chars": 2416,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cswap.py",
    "chars": 1753,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cu1.py",
    "chars": 2417,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cu3.py",
    "chars": 2764,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cx.py",
    "chars": 2275,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cxbase.py",
    "chars": 1857,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cy.py",
    "chars": 2255,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/cz.py",
    "chars": 2258,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/gatestools.py",
    "chars": 1118,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/h.py",
    "chars": 1832,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/header.py",
    "chars": 989,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/iden.py",
    "chars": 1863,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/rx.py",
    "chars": 2090,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ry.py",
    "chars": 2090,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/rz.py",
    "chars": 2072,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/s.py",
    "chars": 2175,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/swap.py",
    "chars": 1822,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/t.py",
    "chars": 2162,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u1.py",
    "chars": 2067,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u2.py",
    "chars": 2331,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/u3.py",
    "chars": 2485,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/ubase.py",
    "chars": 2126,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/x.py",
    "chars": 1845,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/y.py",
    "chars": 1994,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/extensions/standard/z.py",
    "chars": 1980,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/__init__.py",
    "chars": 253,
    "preview": "from ._coupling import Coupling, coupling_dict2list, coupling_list2dict\nfrom ._mapping import swap_mapper, direction_map"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/_compiling.py",
    "chars": 15102,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/_coupling.py",
    "chars": 6557,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/_couplingerror.py",
    "chars": 1088,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/_mappererror.py",
    "chars": 1085,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/mapper/_mapping.py",
    "chars": 34239,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/__init__.py",
    "chars": 58,
    "preview": "from ._qasm import Qasm\nfrom ._qasmerror import QasmError\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/__init__.py",
    "chars": 756,
    "preview": "from ._barrier import Barrier\nfrom ._binaryop import BinaryOp\nfrom ._cnot import Cnot\nfrom ._creg import Creg\nfrom ._cus"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_barrier.py",
    "chars": 1171,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_binaryop.py",
    "chars": 2279,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_cnot.py",
    "chars": 1274,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_creg.py",
    "chars": 1662,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_customunitary.py",
    "chars": 1837,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_expressionlist.py",
    "chars": 1335,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_external.py",
    "chars": 2147,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_gate.py",
    "chars": 2313,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_gatebody.py",
    "chars": 1570,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_id.py",
    "chars": 2779,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_idlist.py",
    "chars": 1290,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_if.py",
    "chars": 1380,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_indexedid.py",
    "chars": 1498,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_intnode.py",
    "chars": 1562,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_magic.py",
    "chars": 1223,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_measure.py",
    "chars": 1292,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_node.py",
    "chars": 2162,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_nodeexception.py",
    "chars": 1054,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_opaque.py",
    "chars": 2145,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_prefix.py",
    "chars": 1864,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_primarylist.py",
    "chars": 1353,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_program.py",
    "chars": 1226,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_qreg.py",
    "chars": 1662,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_real.py",
    "chars": 1715,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_reset.py",
    "chars": 1172,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_node/_universalunitary.py",
    "chars": 1277,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_qasm.py",
    "chars": 1923,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmerror.py",
    "chars": 1079,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmlexer.py",
    "chars": 5943,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/_qasmparser.py",
    "chars": 39622,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/qasm/libs/qelib1.inc",
    "chars": 2174,
    "preview": "// Quantum Experience (QE) Standard Header\n// file: qelib1.inc\n\n// --- QE Hardware primitives ---\n\n// 3-parameter 2-puls"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/__init__.py",
    "chars": 90,
    "preview": "# just one import. _localsimulator takes care of the rest.\nfrom ._localsimulator import *\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_localsimulator.py",
    "chars": 4719,
    "preview": "\"\"\"Interface to local simulators.\n\nThis module is the interface to all the local simulators in this directory.\nIt handle"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_qasm_cpp_simulator.py",
    "chars": 5514,
    "preview": "\"\"\"Interface to a fast C++ QASM simulator.\n\nAuthors: Erick Winston <ewinston@us.ibm.com>\n         Christopher J. Wood <c"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_qasmsimulator.py",
    "chars": 13009,
    "preview": "# pylint: disable=line-too-long\n# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# License"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_simulatorerror.py",
    "chars": 1102,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_simulatortools.py",
    "chars": 4331,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/simulators/_unitarysimulator.py",
    "chars": 6935,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/__init__.py",
    "chars": 280,
    "preview": "from ._unroller import Unroller\nfrom ._dagbackend import DAGBackend\nfrom ._printerbackend import PrinterBackend\nfrom ._u"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_backenderror.py",
    "chars": 1094,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_circuitbackend.py",
    "chars": 11723,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_dagbackend.py",
    "chars": 7240,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_jsonbackend.py",
    "chars": 11156,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_printerbackend.py",
    "chars": 9617,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_unroller.py",
    "chars": 10974,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_unrollerbackend.py",
    "chars": 5160,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/qiskit/unroll/_unrollererror.py",
    "chars": 1077,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/requires-dev.txt",
    "chars": 14,
    "preview": "pylint\nsphinx\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/requires.txt",
    "chars": 73,
    "preview": "IBMQuantumExperience\nrequests\nnetworkx\nply\nnumpy\nscipy\nmatplotlib\nsphinx\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/H2Equilibrium.txt",
    "chars": 116,
    "preview": "ZZ\n0.011279956224107712\nII\n-1.0523760606256514\nZI\n0.39793570529466216\nIZ\n0.39793570529466227\nXX\n0.18093133934472627\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/__init__.py",
    "chars": 574,
    "preview": "import os\n\ndef load_tests(loader, standard_tests, pattern):\n    \"\"\"\n    test suite for unittest discovery\n    \"\"\"\n    th"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/_random_qasm_generator.py",
    "chars": 3276,
    "preview": "import random\nimport string\nimport numpy\n\ntry:\n    import qiskit\nexcept ImportError as ierr:\n    sys.path.append(os.path"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/qasm/example.qasm",
    "chars": 133,
    "preview": "OPENQASM 2.0;\ninclude \"qelib1.inc\";\nqreg q[3];\nqreg r[3];\nh q;\ncx q, r;\ncreg c[3];\ncreg d[3];\nbarrier q;\nmeasure q->c;\nm"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/qiskit",
    "chars": 12,
    "preview": "../../qiskit"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_apps.py",
    "chars": 4042,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_jsonoutput.py",
    "chars": 2080,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_load.json",
    "chars": 413,
    "preview": "{\n    \"circuitName\": {\n        \"qasm\": \"OPENQASM 2.0;\\ninclude \\\"qelib1.inc\\\";\\nqreg qname[3];\\ncreg cname[3];\\nu3(0.300"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_local_simulator.py",
    "chars": 2820,
    "preview": "#!/usr/bin/env python\nimport unittest\nimport time\nimport os\nimport sys\nimport io\nimport logging\nimport random\nimport qis"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_qasm_python_simulator.py",
    "chars": 15978,
    "preview": "#!/usr/bin/env python\nimport unittest\nimport time\nimport numpy as np\nimport os\nimport sys\nimport cProfile\nimport pstats\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_qi.py",
    "chars": 7470,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_quantumprogram.py",
    "chars": 46811,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_save.json",
    "chars": 413,
    "preview": "{\n    \"circuitName\": {\n        \"qasm\": \"OPENQASM 2.0;\\ninclude \\\"qelib1.inc\\\";\\nqreg qname[3];\\ncreg cname[3];\\nu3(0.300"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/test/python/test_unitary_python_simulator.py",
    "chars": 4124,
    "preview": "#!/usr/bin/env python\nimport unittest\nimport time\nimport numpy as np\nimport os\nimport sys\nimport cProfile\nimport pstats\n"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/apps/fermion.py",
    "chars": 13460,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/apps/optimization.py",
    "chars": 10203,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/qcvv/fitters.py",
    "chars": 2644,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/qcvv/tomography.py",
    "chars": 24610,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/qi/pauli.py",
    "chars": 8153,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/qi/qi.py",
    "chars": 11661,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week10/qiskit-sdk-py-master/tools/visualization.py",
    "chars": 16730,
    "preview": "# -*- coding: utf-8 -*-\n\n# Copyright 2017 IBM RESEARCH. All Rights Reserved.\n#\n# Licensed under the Apache License, Vers"
  },
  {
    "path": "Week2/README.md",
    "chars": 513,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement **Newton's Method for op"
  },
  {
    "path": "Week2/newtons_method_optimization.ipynb",
    "chars": 39222,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 2nd Order Optimization \\n\",\n    \""
  },
  {
    "path": "Week2/newtons_method_root_finding.ipynb",
    "chars": 3185,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 2nd Order Optimization \\n\",\n    \""
  },
  {
    "path": "Week3/LinearRegression-L1-Regularization.ipynb",
    "chars": 19456,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear Regression\\n\",\n    \"\\n\",\n "
  },
  {
    "path": "Week3/LinearRegression-L2-Regularization.ipynb",
    "chars": 18257,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear Regression\\n\",\n    \"\\n\",\n "
  },
  {
    "path": "Week3/LinearRegression.ipynb",
    "chars": 18905,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear Regression\\n\",\n    \"\\n\",\n "
  },
  {
    "path": "Week3/README.md",
    "chars": 517,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement **Linear Regression with"
  },
  {
    "path": "Week3/blood_fat.csv",
    "chars": 1094,
    "preview": "age,weight,blood_fat\n0.9193548387096776,0.65,0.6407407407407408\n0.7419354838709677,0.0,0.03333333333333344\n0.61290322580"
  },
  {
    "path": "Week4/README.md",
    "chars": 659,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement **a Self Organizing Map "
  },
  {
    "path": "Week4/SOM-Word2Vec.ipynb",
    "chars": 214277,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Word2Vec with TensorFlow\\n\",\n    "
  },
  {
    "path": "Week4/SelfOrganizingMap.ipynb",
    "chars": 396963,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Self Organizing Map\\n\",\n    \"\\n\","
  },
  {
    "path": "Week4/som_got_embedding_lookup.txt",
    "chars": 3139866,
    "preview": "Meera -0.0921205 0.104701 -0.0419364 -0.00653504 0.100802 -0.0262559 -0.0128953 0.0558371 -0.0127022 -0.0767204 -0.08971"
  },
  {
    "path": "Week5/PCA.ipynb",
    "chars": 308163,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Principal Component Analysis - PC"
  },
  {
    "path": "Week5/README.md",
    "chars": 607,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement **Principal Component An"
  },
  {
    "path": "Week5/som_got_embedding_lookup.txt",
    "chars": 3139866,
    "preview": "Meera -0.0921205 0.104701 -0.0419364 -0.00653504 0.100802 -0.0262559 -0.0128953 0.0558371 -0.0127022 -0.0767204 -0.08971"
  },
  {
    "path": "Week6/NaiveBayesClassifierTextCorpus.ipynb",
    "chars": 11313,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Naïve Bayes Classifier\\n\",\n    \"\\"
  },
  {
    "path": "Week6/README.md",
    "chars": 531,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement a **Naïve Bayes Classifi"
  },
  {
    "path": "Week6/data_reviews.csv",
    "chars": 447311,
    "preview": "Sentiment,Review\n1,The Da Vinci Code book is just awesome \n1,this was the first clive cussler i ve ever read  but even b"
  },
  {
    "path": "Week7/Hyperparameter_Optimization.ipynb",
    "chars": 8123,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Hyperparamter Optimization\\n\",\n  "
  },
  {
    "path": "Week7/README.md",
    "chars": 544,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to use a **Bayesian Optimization Meth"
  },
  {
    "path": "Week7/test.csv",
    "chars": 137371,
    "preview": "0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,class\n-1.8162603060647615,-1.7676159973651584,-1.376925945615786,-1"
  },
  {
    "path": "Week7/train.csv",
    "chars": 3968531,
    "preview": "0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,class\n0.3931782450855532,-0.9312433050843484,0.6326757273110162,0.8"
  },
  {
    "path": "Week8/.ipynb_checkpoints/LDA-Copy1-checkpoint.ipynb",
    "chars": 52047,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# LDA\"\n   ]\n  },\n  {\n   \"cell_type\""
  },
  {
    "path": "Week8/LDA.ipynb",
    "chars": 52047,
    "preview": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# LDA\"\n   ]\n  },\n  {\n   \"cell_type\""
  },
  {
    "path": "Week8/README.md",
    "chars": 523,
    "preview": "## Coding Challenge -- Not submitted to challenge\n\nThis week's coding challenge is to implement **Latent Dirichlet Alloc"
  },
  {
    "path": "Week8/data/doc0.txt",
    "chars": 40,
    "preview": "The Da Vinci Code book is just awesome \n"
  },
  {
    "path": "Week8/data/doc1.txt",
    "chars": 125,
    "preview": "this was the first clive cussler i ve ever read  but even books like Relic  and Da Vinci code were more plausible than t"
  },
  {
    "path": "Week8/data/doc10.txt",
    "chars": 69,
    "preview": "The Da Vinci Code is one of the most beautiful movies ive ever seen \n"
  },
  {
    "path": "Week8/data/doc100.txt",
    "chars": 37,
    "preview": "i loved da vinci code recently      \n"
  },
  {
    "path": "Week8/data/doc1000.txt",
    "chars": 140,
    "preview": "And I love the way our three generation Mission Impossible team can infiltrate these events a half hour before the doors"
  },
  {
    "path": "Week8/data/doc1001.txt",
    "chars": 36,
    "preview": "MISSION IMPOSSIBLE WAS AWESOME     \n"
  },
  {
    "path": "Week8/data/doc1002.txt",
    "chars": 113,
    "preview": "Finally feel up to making the long ass drive out to the Haunt tonight    and Mission Impossible III was good    \n"
  },
  {
    "path": "Week8/data/doc1003.txt",
    "chars": 113,
    "preview": "Finally feel up to making the long ass drive out to the Haunt tonight    and Mission Impossible III was good    \n"
  },
  {
    "path": "Week8/data/doc1004.txt",
    "chars": 56,
    "preview": "Mission Impossible is going to be so awesome this year \n"
  },
  {
    "path": "Week8/data/doc1005.txt",
    "chars": 37,
    "preview": "i love your mission impossible move \n"
  },
  {
    "path": "Week8/data/doc1006.txt",
    "chars": 46,
    "preview": "hell yea i love the mission impossible thing \n"
  },
  {
    "path": "Week8/data/doc1007.txt",
    "chars": 27,
    "preview": "i miss mission impossible \n"
  },
  {
    "path": "Week8/data/doc1008.txt",
    "chars": 60,
    "preview": "I have to say the   Mission Impossible   thing was AWESOME \n"
  },
  {
    "path": "Week8/data/doc1009.txt",
    "chars": 52,
    "preview": "MISSION IMPOSSIBLE WAS SO WICKED AWESOME           \n"
  },
  {
    "path": "Week8/data/doc101.txt",
    "chars": 25,
    "preview": "Love the Da Vinci Code  \n"
  },
  {
    "path": "Week8/data/doc1010.txt",
    "chars": 91,
    "preview": "I still love MISSION IMPOSSIBLE even if it did make me fall and get      in   gym class   \n"
  },
  {
    "path": "Week8/data/doc1011.txt",
    "chars": 52,
    "preview": "Mission Impossible is an awesome movie  watch it   \n"
  },
  {
    "path": "Week8/data/doc1012.txt",
    "chars": 131,
    "preview": "By the way  Mission Impossible is an awesome movie if you re looking for a suspenseful movie that s ALL action and littl"
  },
  {
    "path": "Week8/data/doc1013.txt",
    "chars": 93,
    "preview": "i love mission impossible  it s like the only action movie i like  plus tom cruise is in it \n"
  },
  {
    "path": "Week8/data/doc1014.txt",
    "chars": 43,
    "preview": "Because I fucking love Mission Impossible \n"
  }
]

// ... and 6902 more files (download for full content)

About this extraction

This page contains the full source code of the alberduris/The_Math_of_Intelligence GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 7102 files (14.2 MB), approximately 4.0M tokens, and a symbol index with 957 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!