-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy path.gitleaksignore
More file actions
1295 lines (1295 loc) · 250 KB
/
.gitleaksignore
File metadata and controls
1295 lines (1295 loc) · 250 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##############################################################
# Ingnored known/false positive leaks in commit history.
##############################################################
01b469b97c649779d6bd91b40f2dce9fb7ddc6ad:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/bitcoinassistant.py:generic-api-key:34
0cb6028fd68466d851f2f808d66c34dd4ed6e0fa:tutorial_pymc/notebooks/book.2018.Martin.Bayesian_Analysis_with_Python.2e/book.Chap3.ipynb:rule1187:4436
148d06d10c91cc4e38fcb003bede5cf86ab0930a:DATA605/Spring2025/projects/TutorTask153_Spring2025_Implementing_Real-time_Bitcoin_DataAnalysis_with_Kubernetes/application.ipynb:rule589:28
17a1ad658d75d195081bcc244851fd632730ba65:tutorial_langchain/src/build_a_chatbot_for_documentation.py:openai-api-key:61
2715c06046d08fd43a1ae52fdf2e8e9a8f6510e0:DATA605/Spring2025/projects/TutorTask123_btc_trade_huey_pipeline/.env:generic-api-key:3
2715c06046d08fd43a1ae52fdf2e8e9a8f6510e0:DATA605/Spring2025/projects/TutorTask123_btc_trade_huey_pipeline/.env:rule741:1
2715c06046d08fd43a1ae52fdf2e8e9a8f6510e0:DATA605/Spring2025/projects/TutorTask123_btc_trade_huey_pipeline/.env:rule743:1
2715c06046d08fd43a1ae52fdf2e8e9a8f6510e0:DATA605/Spring2025/projects/TutorTask123_btc_trade_huey_pipeline/.env:slack-webhook-url:1
29ce0b22c453549ee4ee8f837e42edc3e2156faf:DATA605/Spring2025/projects/TutorTask225_Spring2025_Analyzing_Bitcoin_Time_Series_with_SageMath/bitcoin-timeseries/notebooks/03_eda.ipynb:rule481:21
2bf4e551f5db65c990a2944418824d36dc46e436:DATA605/Spring2025/projects/TutorTask225_Spring2025_Analyzing_Bitcoin_Time_Series_with_SageMath/bitcoin-timeseries/notebooks/03_eda.ipynb:rule481:21
2c7bf881da9de0765a3817d428e20e719e9f2881:tutorial_langchain/tutorial_langchain.py:openai-api-key:19
2f0ec173b32f63bb3008a4e210f4390e4bc60ea8:DATA605/Spring2025/projects/TutorTask122_Spring2025_Scalable_Real-Time_Bitcoin_Analytics_with_Falcon/app/Falcon_functions.py:generic-api-key:38
2f0ec173b32f63bb3008a4e210f4390e4bc60ea8:DATA605/Spring2025/projects/TutorTask122_Spring2025_Scalable_Real-Time_Bitcoin_Analytics_with_Falcon/app/Falcon_functions.py:generic-api-key:60
307eebd983843588c4286f456ffb3be5b52e713b:DATA605/Spring2025/projects/TutorTask251_Spring2025_Real_Time_Bitcoin_Price_Analysis_using_Docker_SDK_for_Python/README.md:generic-api-key:61
307eebd983843588c4286f456ffb3be5b52e713b:DATA605/Spring2025/projects/TutorTask251_Spring2025_Real_Time_Bitcoin_Price_Analysis_using_Docker_SDK_for_Python/grafana-provisioning/datasources/datasource.yaml.old:generic-api-key:11
307eebd983843588c4286f456ffb3be5b52e713b:DATA605/Spring2025/projects/TutorTask251_Spring2025_Real_Time_Bitcoin_Price_Analysis_using_Docker_SDK_for_Python/grafana-provisioning/datasources/datasource.yaml:generic-api-key:11
31242235675626acf1de586d10778e712cd1b81d:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/websocket_btc_ingestion/lambda_build_websocket/websocket/tests/test_url.py:rule589:432
31242235675626acf1de586d10778e712cd1b81d:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/websocket_btc_ingestion/lambda_build_websocket/websocket/tests/test_url.py:rule589:435
31242235675626acf1de586d10778e712cd1b81d:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/websocket_btc_ingestion/lambda_build_websocket/websocket/tests/test_websocket.py:generic-api-key:116
31242235675626acf1de586d10778e712cd1b81d:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/websocket_btc_ingestion/lambda_build_websocket/websocket/tests/test_websocket.py:generic-api-key:480
37bf83c3e14fe9b6075f1e7ae9863ea76303a37f:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/bitcoinassistant.py:generic-api-key:34
37df65cb0ed6d1b9a4993da7d9ec31de63b510bc:DATA605/Spring2025/projects/TutorTask156_Spring2025_Real_time_bitcoin_data_processing_using_Amazon_RDS/.env:rule12:2
37df65cb0ed6d1b9a4993da7d9ec31de63b510bc:DATA605/Spring2025/projects/TutorTask156_Spring2025_Real_time_bitcoin_data_processing_using_Amazon_RDS/README.md:rule12:180
37df65cb0ed6d1b9a4993da7d9ec31de63b510bc:DATA605/Spring2025/projects/TutorTask156_Spring2025_Real_time_bitcoin_data_processing_using_Amazon_RDS/bitcoin_rds.API.ipynb:rule12:276
37df65cb0ed6d1b9a4993da7d9ec31de63b510bc:DATA605/Spring2025/projects/TutorTask156_Spring2025_Real_time_bitcoin_data_processing_using_Amazon_RDS/bitcoin_rds.example.ipynb:rule12:77
37df65cb0ed6d1b9a4993da7d9ec31de63b510bc:DATA605/Spring2025/projects/TutorTask156_Spring2025_Real_time_bitcoin_data_processing_using_Amazon_RDS/docker_data605_style/docker_start_all.sh:rule12:21
38d5f0253c927d7ac5238cf17324dfb50d879a21:DATA605/Spring2025/projects/TutorTask172_Spring2025_Ingest_and_Analyze_Bitcoin_Prices_Using_Apache_Flink/tutorial_template/docker_data605_style/.env:generic-api-key:2
391f0b1f7feeedb2e23e97b8622944e46d387d62:tutorial_prophet/src/tutorial_prophet.ipynb:rule733:1992
43cf3272c4029f7f400cd8d20c13902ae6174232:DATA605/Spring2025/projects/TutorTask225_Spring2025_Analyzing_Bitcoin_Time_Series_with_SageMath/bitcoin-timeseries/.Trash-1000/files/03_eda.ipynb:rule481:21
45c54e2f6e9a9c3a2866bbbf1837f3fdb4ce0981:DATA605/Spring2025/projects/TutorTask268_Spring2025__Analyze_Real-Time_Bitcoin_Data_with_Azure_SDK_for_Python/docker_instructions.md:generic-api-key:71
45c54e2f6e9a9c3a2866bbbf1837f3fdb4ce0981:DATA605/Spring2025/projects/TutorTask268_Spring2025__Analyze_Real-Time_Bitcoin_Data_with_Azure_SDK_for_Python/docker_instructions.md:generic-api-key:72
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/altdata_notebooks/CoinMarketCap.py:generic-api-key:43
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue24_Team5_Implement_sandbox_for_Alpha_Vantage/api/mongo_db.py:rule589:17
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue24_Team5_Implement_sandbox_for_Alpha_Vantage/docker-compose.yml:rule589:62
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/.env:generic-api-key:8
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/.env:rule589:18
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/scripts/app.py:generic-api-key:17
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/scripts/bitquery_to_Postgress.py:rule589:191
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/scripts/get_data.py:generic-api-key:53
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue25_Team6_Implement_sandbox_for_Bitquery_and_Uniswap/scripts/test.py:rule589:38
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue27_Team8_Implement_sandbox_for_Yahoo_Finance/app/Latest_Data.py:rule589:58
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue27_Team8_Implement_sandbox_for_Yahoo_Finance/app/docker-compose.yaml:rule589:61
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue28_Team9_Implement_sandbox_for_Kaiko/download_kaiko.py:generic-api-key:30
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue28_Team9_Implement_sandbox_for_Kaiko/read_kaiko.py:generic-api-key:12
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue29_Team10_Implement_sandbox_for_coingecko/.env:generic-api-key:8
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/Issue29_Team10_Implement_sandbox_for_coingecko/Dockerfile:rule589:14
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/SorrIssue14_Team1_Implement_sandbox_for_Google_Trends/airflow/.env:generic-api-key:24
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/SorrIssue14_Team1_Implement_sandbox_for_Google_Trends/airflow/.env:generic-api-key:7
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2023/ml_projects/SorrIssue14_Team1_Implement_sandbox_for_Google_Trends/devops/.env:generic-api-key:1
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/SorrTask799_Analytics_Dashboard_with_Redis/inventory.csv:rule797:140413
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/SorrTask799_Analytics_Dashboard_with_Redis/inventory.csv:rule797:140414
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/SorrTask799_Analytics_Dashboard_with_Redis/inventory.csv:rule797:140415
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/SorrTask799_Analytics_Dashboard_with_Redis/inventory.csv:rule797:140416
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/SorrTask799_Analytics_Dashboard_with_Redis/inventory.csv:rule797:140417
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/README.md:rule182:123
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/README.md:rule182:229
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/docker-compose.yml:rule182:30
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule182:22
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule182:26
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1266
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1279
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1332
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1345
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1346
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1397
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1398
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1496
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1497
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1542
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Data_Streaming_Platform_with_Apache_Kafka/kafka_tutorial.ipynb:rule589:1543
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_ORM_Integration_with_Data_Mining/Readme.md:generic-api-key:145
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Simple_Task_List_With_Redis/README.md:generic-api-key:73
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:DATA605/Spring2024/Spring2024_Streaming_Word_Count_with_Apache_Spark_Streaming/README.md:generic-api-key:62
4bf748c15eaf17c81c4ea56c122787a62adc4f4d:sorrentum/devops/docker-compose.yml:rule589:60
4c99b3cfc974c2bee10c0842025036113f6c4ff7:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/.env:generic-api-key:2
4c99b3cfc974c2bee10c0842025036113f6c4ff7:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/api.py:generic-api-key:31
4c99b3cfc974c2bee10c0842025036113f6c4ff7:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/data_processor.py:generic-api-key:22
4e1032d54e1c3e92fcfe7edf5f9b42616fdd7212:DATA605/Spring2025/projects/TutorTask153_Spring2025_Implementing_Real-time_Bitcoin_DataAnalysis_with_Kubernetes/src/db_manager.py:rule589:12
506e115f51d022b2aa8c2b58ea88743ca28ab687:tutorial_pymc/notebooks/book.2018.Martin.Bayesian_Analysis_with_Python.2e/book.Chap3.ipynb:rule1187:4436
645a240f332e510d39ae743972b2c42fff8db8bd:tutorial_langchain/src/build_a_chatbot_for_documentation.py:openai-api-key:61
66c6a62f4079dabb1509fd0fb06eb09ce36f4ce7:DATA605/Spring2025/projects/TutorTask251_Spring2025_Real_Time_Bitcoin_Price_Analysis_using_Docker_SDK_for_Python/main.py:rule1076:15
6b47be8dbe1123d610365eeb0460c61e146ab5f1:tutorial_prophet/src/Prophet.ipynb:rule733:2006
6e3ccb29b05aa5c9c9fc4c66805a10b40bea9193:tutorial_pymc/notebooks/book.2018.Martin.Bayesian_Analysis_with_Python.2e/book.Chap3.ipynb:rule1187:4436
6e8f7083fffb3e0cb654bdf04857d60218323612:DATA605/Spring2025/projects/TutorTask122_Spring2025_Scalable_Real-Time_Bitcoin_Analytics_with_Falcon/app/Falcon_functions.py:generic-api-key:38
6e8f7083fffb3e0cb654bdf04857d60218323612:DATA605/Spring2025/projects/TutorTask122_Spring2025_Scalable_Real-Time_Bitcoin_Analytics_with_Falcon/app/Falcon_functions.py:generic-api-key:60
6ef026f5709ee336d7680a7aa6e9833de889fbf9:DATA605/Spring2025/projects/TutorTask113_Spring2025_Analyzing_Bitcoin_Trends_Using_Statsmodels/Stastmodels.API.ipynb:rule1187:84
6ef026f5709ee336d7680a7aa6e9833de889fbf9:DATA605/Spring2025/projects/TutorTask113_Spring2025_Analyzing_Bitcoin_Trends_Using_Statsmodels/Statsmodels.example.ipynb:rule1187:189
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.env:generic-api-key:1
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule174:1217
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule174:617
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule174:681
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule541:1641
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule541:1753
7025c4785f2b99ebfb265cd2c36f8e790be2035a:DATA605/Spring2025/projects/backup_TutorTask138/.ipynb_checkpoints/bitcoin.example-checkpoint.ipynb:rule541:489
71e0ed95273f7e0d7d3622e36130c6378e676cc9:DATA605/Spring2025/projects/TutorTask112_Spring_2025_Real_Time_Bitcoin_News_Analysis_&_Q&A_System_with_Haystack/docker_data605_style/.ipynb_checkpoints/config-checkpoint.py:generic-api-key:1
71e0ed95273f7e0d7d3622e36130c6378e676cc9:DATA605/Spring2025/projects/TutorTask112_Spring_2025_Real_Time_Bitcoin_News_Analysis_&_Q&A_System_with_Haystack/docker_data605_style/config.py:generic-api-key:1
7700f5df96014e392b1a3540af8e2281058f70d1:DATA605/Spring2025/projects/TutorTask165_Spring2025_Real-Time_Bitcoin_Price_Trend_Analysis_using_AWS_OpenSearch/ingest/scrape_bitcoin_news.py:generic-api-key:27
7e39e0fc4f6e834ee6779501362a3c6d4f2130bc:DATA605/Spring2025/projects/TutorTask244_Spring2025_Modeling_Bitcoin_Transaction_Networks_with_Py2neo/tutorial_template/docker_data605_style/docker-compose.yml:generic-api-key:8
89b973e7d5515eff9a9c78f0c06acc11bc3fc925:DATA605/Spring2025/projects/TutorTask165_Spring2025_Real-Time_Bitcoin_Price_Trend_Analysis_using_AWS_OpenSearch/scripts/phase3_scrape_crypto_news.py:generic-api-key:4
969ce8668bae068e91d1fe272bfd9f5599adafa1:tutorial_prophet/src/Prophet.ipynb:rule733:2006
9b313dfeaa45714e24b51ddb384445b0f049c22d:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/bitcoinassistant.py:generic-api-key:34
9b313dfeaa45714e24b51ddb384445b0f049c22d:DATA605/Spring2025/projects/TutorTask225_Spring2025_Analyzing_Bitcoin_Time_Series_with_SageMath/bitcoin-timeseries/notebooks/03_eda.ipynb:rule481:21
9b313dfeaa45714e24b51ddb384445b0f049c22d:DATA605/Spring2025/projects/TutorTask244_Spring2025_Modeling_Bitcoin_Transaction_Networks_with_Py2neo/tutorial_template/docker_data605_style/docker-compose.yml:generic-api-key:8
a0be17d2aa8deb6f4673682c57150bb5b73465be:DATA605/Spring2025/Spring2025/projects/TutorTask91_Spring2025_Time_Series_Forecasting_Bitcoin/bitcoin.example.ipynb:rule1187:102
a0be17d2aa8deb6f4673682c57150bb5b73465be:DATA605/Spring2025/Spring2025/projects/TutorTask91_Spring2025_Time_Series_Forecasting_Bitcoin/bitcoin.example.ipynb:rule1187:92
a43072e1600ee1fce988695be7a87273f8fdb20d:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/api.py:generic-api-key:31
a43072e1600ee1fce988695be7a87273f8fdb20d:DATA605/Spring2025/projects/TutorTask143_Spring2025_Custom_Bitcoin_Chatbot_with_Ollama_Python/data_processor.py:generic-api-key:22
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/.ipynb_checkpoints/fetch_weather_hourly-checkpoint.py:generic-api-key:7
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/.ipynb_checkpoints/run_data_logger-checkpoint.py:generic-api-key:9
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/.ipynb_checkpoints/weather_dashboard_streamlit-checkpoint.py:generic-api-key:15
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/fetch_weather_hourly.py:generic-api-key:7
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/run_data_logger.py:generic-api-key:9
aa29e168a3b5e40d69de5c59e98946466eb815fb:DATA605/Spring2025/projects/TutorTask177_Spring2025_Real-Time_Weather_Data_Analysis_with_MetPy/weather_dashboard_streamlit.py:generic-api-key:15
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/boto3/examples/cloudfront.rst:rule2:25
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/boto3/examples/cloudfront.rst:rule4:25
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/boto3/examples/cloudfront.rst:rule83:25
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/appconfig/2019-10-09/examples-1.json:rule3:512
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/appconfig/2019-10-09/examples-1.json:rule3:594
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/appconfig/2019-10-09/examples-1.json:rule3:609
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/application-autoscaling/2016-02-06/examples-1.json:rule3:124
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/application-autoscaling/2016-02-06/examples-1.json:rule3:129
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/application-autoscaling/2016-02-06/examples-1.json:rule3:179
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/application-autoscaling/2016-02-06/examples-1.json:rule3:183
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/application-autoscaling/2016-02-06/examples-1.json:rule3:187
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:generic-api-key:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:generic-api-key:1495
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1046
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1136
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1192
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1231
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1397
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1427
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1431
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:1435
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:158
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:28
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:387
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:512
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:67
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:724
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:776
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:800
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:898
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:903
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:931
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:943
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/autoscaling/2011-01-01/examples-1.json:rule3:969
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:103
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:131
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:161
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:240
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:264
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:321
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:351
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:355
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:390
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:415
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:485
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:529
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:570
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:58
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:610
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:650
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:675
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/batch/2016-08-10/examples-1.json:rule3:696
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/cloud9/2017-09-23/examples-1.json:rule3:215
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/cloud9/2017-09-23/examples-1.json:rule3:226
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/codebuild/2016-10-06/examples-1.json:rule3:142
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/codebuild/2016-10-06/examples-1.json:rule3:15
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1013
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1036
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1139
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1140
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1143
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1167
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1220
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:1225
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:133
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:152
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:171
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:190
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:272
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:383
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:388
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:39
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:407
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:428
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:434
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:473
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:494
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:515
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:536
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:537
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:559
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:577
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:595
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:622
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:63
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:641
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:836
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:843
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:848
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:868
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:87
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:892
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:9
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:900
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:93
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:941
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:965
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/devicefarm/2015-06-23/examples-1.json:rule3:989
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule12:287
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule12:42
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule12:60
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1000
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1001
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1005
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1008
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1025
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1030
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1031
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1035
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1038
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:105
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1055
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:1056
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:110
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:195
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:198
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:206
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:211
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:212
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:216
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:219
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:236
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:256
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:257
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:277
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:281
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:285
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:306
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:313
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:318
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:39
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:390
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:395
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:396
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:400
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:403
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:501
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:503
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:54
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:58
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:856
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:868
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:873
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:972
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dms/2016-01-01/examples-1.json:rule3:994
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:161
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:164
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:184
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:189
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:194
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:54
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:75
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/dynamodbstreams/2012-08-10/examples-1.json:rule3:78
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2-instance-connect/2018-04-02/examples-1.json:rule369:10
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2-instance-connect/2018-04-02/examples-1.json:rule369:21
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-04-01/examples-1.json:generic-api-key:2050
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-04-01/examples-1.json:generic-api-key:3223
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-09-15/examples-1.json:generic-api-key:2058
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-09-15/examples-1.json:generic-api-key:3234
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/examples-1.json:generic-api-key:2801
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/examples-1.json:generic-api-key:4278
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/examples-1.json:rule4:172
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/examples-1.json:rule4:1933
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/examples-1.json:rule4:3751
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ec2/2016-11-15/paginators-1.json:generic-api-key:441
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecr/2015-09-21/examples-1.json:rule3:138
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecr/2015-09-21/examples-1.json:rule3:143
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecr/2015-09-21/examples-1.json:rule3:76
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecr/2015-09-21/examples-1.json:rule3:99
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:109
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:12
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:123
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:141
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:144
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:211
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:310
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:40
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:404
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:418
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:435
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:438
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:54
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:64
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:703
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:77
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:80
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:838
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:839
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ecs/2014-11-13/examples-1.json:rule3:859
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/eks/2017-11-01/examples-1.json:generic-api-key:9
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/eks/2017-11-01/examples-1.json:rule3:116
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/eks/2017-11-01/examples-1.json:rule3:61
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elasticache/2015-02-02/examples-1.json:rule3:3068
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elasticache/2015-02-02/examples-1.json:rule3:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:103
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1046
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1094
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1101
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1115
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1135
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1146
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1153
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1180
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1216
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1238
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1265
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1289
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1298
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1312
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1330
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:1354
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:147
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:199
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:229
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:241
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:249
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:263
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:300
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:321
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:337
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:353
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:369
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:37
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:385
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:407
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:41
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:415
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:419
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:420
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:440
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:481
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:50
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:500
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:529
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:537
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:54
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:55
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:551
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:678
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:684
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:712
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:749
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:762
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:769
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:790
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:8
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:80
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:829
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:84
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:867
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:871
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:878
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:882
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:883
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:906
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:918
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:922
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:923
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:950
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:99
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/elbv2/2015-12-01/examples-1.json:rule3:994
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:generic-api-key:170
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:generic-api-key:95
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:128
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:131
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:192
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:195
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:23
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:27
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:276
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:30
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:304
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:310
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:342
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:362
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:380
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:407
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:410
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:75
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/fsx/2018-03-01/examples-1.json:rule3:97
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:208
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:231
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:304
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:327
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:353
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:374
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:421
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:458
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:460
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:471
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:500
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:507
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:514
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:552
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:632
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:717
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/glacier/2012-06-01/examples-1.json:rule3:742
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:130
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:1403
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:280
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:305
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:847
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:870
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule2:876
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule312:1526
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:130
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:1403
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:198
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:280
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:305
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:738
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:814
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:847
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:870
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:876
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule4:945
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule622:1526
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule672:1526
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:130
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:1403
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:280
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:305
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:847
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:870
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/iam/2010-05-08/examples-1.json:rule83:876
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1017
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1038
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1061
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1064
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1080
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:109
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1097
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1098
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1115
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1116
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1132
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:1134
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:125
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:14
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:141
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:158
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:165
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:166
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:182
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:244
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:251
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:275
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:282
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:284
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:288
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:331
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:339
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:359
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:36
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:360
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:387
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:39
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:395
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:421
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:431
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:451
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:55
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:59
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:616
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:625
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:69
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:792
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:798
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:799
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:821
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:840
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:846
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:847
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:866
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:878
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:879
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:898
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:904
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:905
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:928
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:929
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:93
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:930
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:931
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:948
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/inspector/2016-02-16/examples-1.json:rule3:973
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:1612
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:1631
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:1651
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:28
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:315
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:324
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:435
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:496
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:70
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:generic-api-key:718
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:10
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1004
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1029
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1037
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1084
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1089
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1094
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1099
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1109
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1114
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1119
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1149
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1162
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1174
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1187
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1242
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1246
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:125
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1250
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1254
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1258
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1262
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1266
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1331
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1382
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1383
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1405
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1411
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1427
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1432
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1464
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1502
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1528
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:162
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1695
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:1727
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:201
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:238
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:255
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:284
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:321
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:361
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:396
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:399
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:523
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:559
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:595
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:600
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:616
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:621
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:625
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:629
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:651
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:656
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:772
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:797
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:819
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:823
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:850
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:854
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:884
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:909
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/kms/2014-11-01/examples-1.json:rule3:92
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1018
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:102
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1054
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1057
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:107
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1079
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1082
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1134
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1135
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1167
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1170
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1229
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1308
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1327
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1356
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1389
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:141
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1418
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1453
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1483
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1491
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:1496
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:15
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:164
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:167
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:216
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:217
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:353
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:380
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:381
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:39
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:422
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:425
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:489
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:492
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:526
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:531
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:565
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:566
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:584
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:59
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:597
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:598
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:619
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:750
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:762
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:790
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:791
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:81
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:818
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:824
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:852
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:870
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:920
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:929
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:960
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:963
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:989
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/lambda/2015-03-31/examples-1.json:rule3:997
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/polly/2016-06-10/examples-1.json:rule3:105
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/polly/2016-06-10/examples-1.json:rule3:78
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:1121
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:1288
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:1624
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:1736
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:1840
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:28
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:426
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/rds/2014-10-31/examples-1.json:rule3:52
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/s3/2006-03-01/examples-1.json:generic-api-key:1178
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/s3/2006-03-01/examples-1.json:rule3:1380
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:10
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:167
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:188
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:215
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:256
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:267
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:297
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:319
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:33
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:343
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:360
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:368
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:387
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:456
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:471
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:475
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:517
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:537
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:54
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:558
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:75
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:96
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/secretsmanager/2017-10-17/examples-1.json:rule3:98
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:325
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:384
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:399
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:414
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:489
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:519
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:572
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:600
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/servicediscovery/2017-03-14/examples-1.json:rule3:86
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ses/2010-12-01/examples-1.json:rule3:835
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/snowball/2016-06-30/examples-1.json:rule3:189
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/snowball/2016-06-30/examples-1.json:rule3:229
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/snowball/2016-06-30/examples-1.json:rule3:58
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/snowball/2016-06-30/examples-1.json:rule3:94
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:112
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:130
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:133
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:135
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:152
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:155
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:158
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:159
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:177
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:181
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:190
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:201
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:212
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:230
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:234
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:24
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:243
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:254
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:265
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:285
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:289
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:290
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:307
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:310
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:323
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:329
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:330
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:354
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:360
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:366
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:372
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:392
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:393
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:398
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:399
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:404
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:405
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:410
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:411
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:427
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:432
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:438
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:444
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:461
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:466
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:468
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:469
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:48
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:486
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:491
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:492
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:493
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:509
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:529
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:544
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:558
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:566
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:576
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:584
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:596
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:60
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:610
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:630
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:647
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:655
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:666
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:677
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:68
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:698
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:84
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:9
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/ssm-contacts/2021-05-03/examples-1.json:rule3:98
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:generic-api-key:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1002
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1006
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1028
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1031
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1034
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1054
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1059
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1063
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1065
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:107
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1071
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1073
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1094
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:110
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1101
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1117
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1120
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1136
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1137
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1140
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1156
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1157
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1160
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1176
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1180
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1196
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1199
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1215
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1218
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1236
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1239
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1258
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:126
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1262
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:127
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1278
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1283
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:130
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1300
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1303
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1320
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1325
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1344
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1347
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1364
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:1367
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:146
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:147
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:150
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:16
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:167
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:174
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:175
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:192
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:196
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:213
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:217
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:235
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:242
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:243
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:260
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:265
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:282
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:289
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:290
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:291
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:309
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:312
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:329
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:333
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:349
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:352
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:36
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:368
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:371
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:387
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:388
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:39
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:391
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:407
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:410
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:426
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:429
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:445
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:450
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:466
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:478
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:495
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:501
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:511
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:530
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:538
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:55
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:556
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:559
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:587
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:591
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:610
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:617
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:634
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:64
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:641
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:651
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:673
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:674
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:682
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:689
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:710
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:715
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:719
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:740
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:744
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:745
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:752
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:758
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:779
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:786
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:802
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:809
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:827
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:835
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:84
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:843
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:845
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:855
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:857
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:867
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:869
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:87
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:890
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:897
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:915
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:918
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:940
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:943
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:962
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/storagegateway/2013-06-30/examples-1.json:rule3:984
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:154
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:172
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:222
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule2:36
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule3:134
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:154
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:172
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:222
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule4:36
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:154
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:172
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:222
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/sts/2011-06-15/examples-1.json:rule83:36
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:1003
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:11
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:136
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:144
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:177
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:181
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:210
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:213
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:229
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:233
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:249
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:269
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:273
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:289
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:293
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:309
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:313
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:329
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:333
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:37
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:384
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:400
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:42
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:70
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:74
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:797
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:814
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:830
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:843
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:859
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:873
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:889
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:906
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:922
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:937
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:953
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:972
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf-regional/2016-11-28/examples-1.json:generic-api-key:988
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:1003
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:104
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:108
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:11
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:136
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:144
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:177
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:181
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:210
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:213
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:229
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:233
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:249
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:253
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:269
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:273
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:289
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:293
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:309
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:313
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:329
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:333
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:37
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:384
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:400
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:42
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:7
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:70
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:74
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:797
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:814
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:830
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:843
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:859
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:873
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:889
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:906
adc8b455bf10ba160bebc4af689989c9743be504:DATA605/Spring2025/projects/TutorTask65_Spring2025_Real_Time_Bitcoin_Price_Processing_with_Amazon_Lambda/aws_lambda_package/botocore/data/waf/2015-08-24/examples-1.json:generic-api-key:922