-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquotes.json
1790 lines (1790 loc) · 86.4 KB
/
quotes.json
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
[
{
"id": 1,
"character": "Michael Scott",
"quote": "Would I rather be feared or loved? Easy. Both. I want people to be afraid of how much they love me.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 2,
"character": "Michael Scott",
"quote": "Wikipedia is the best thing ever. Anyone in the world can write anything they want about any subject. So you know you are getting the best possible information.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 3,
"character": "Michael Scott",
"quote": "Guess what, I have flaws. What are they? Oh, I don’t know. I sing in the shower. Sometimes I spend too much time volunteering. Occasionally I’ll hit somebody with my car. So sue me.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 4,
"character": "Michael Scott",
"quote": "If I had a gun with two bullets and I was in a room with Hitler, Bin Laden, and Toby, I would shoot Toby twice.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 5,
"character": "Michael Scott",
"quote": "I saved a life. My own. Am I a hero?… I really can’t say, but yes!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 6,
"character": "Michael Scott",
"quote": "No, I’m not going to tell them about the downsizing. If a patient has cancer, you don’t tell them.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 7,
"character": "Michael Scott",
"quote": "An office is not for dying. An office is a place for living life to the fullest, to the max, to… an office is a place where dreams come true.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 8,
"character": "Michael Scott",
"quote": "Do I need to be liked? Absolutely not. I like to be liked. I enjoy being liked. I have to be liked, but it’s not like this compulsive need to be liked, like my need to be praised.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 9,
"character": "Michael Scott",
"quote": "Sometimes I’ll start a sentence, and I don’t even know where it’s going. I just hope I find it along the way.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 10,
"character": "Michael Scott",
"quote": "Do I have a special someone? Well, yeah, of course. A bunch of ’em. My employees.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 11,
"character": "Michael Scott",
"quote": "They say on your deathbed you never wish you spent more time at the office — but I will.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 12,
"character": "Michael Scott",
"quote": "Make friends first, make sales second, make love third. In no particular order.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 13,
"character": "Michael Scott",
"quote": "I love inside jokes. I hope to be a part of one someday.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 14,
"character": "Michael Scott",
"quote": "I’m an early bird and a night owl. So I’m wise and have worms.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 15,
"character": "Michael Scott",
"quote": "Well, it’s love at first sight. Actually, it was… no, it was when I heard her voice. It was love at first see with my ears.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 16,
"character": "Michael Scott",
"quote": "The most sacred thing I do is care and provide for my workers, my family. I give them money. I give them food. Not directly, but through the money.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 17,
"character": "Michael Scott",
"quote": "I wanna be married and have 100 kids so I can have 100 friends and no one can say ‘no’ to being my friend.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 18,
"character": "Michael Scott",
"quote": "I feel like all my kids grew up and then they married each other. It’s every parent’s dream.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 19,
"character": "Michael Scott",
"quote": "You know what they say ‘Fool me once, strike one, but fool me twice… strike three.’",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 20,
"character": "Michael Scott",
"quote": "I know it’s illegal in Pennsylvania, but it’s for charity, and I consider myself a great philanderer.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 21,
"character": "Michael Scott",
"quote": "Two queens at casino night. I am gonna drop a deuce on everybody.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 22,
"character": "Michael Scott",
"quote": "I don’t understand. We have a day honoring Martin Luther King, but he didn’t even work here.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 23,
"character": "Michael Scott",
"quote": "I’m not superstitious but I am a little stitious.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 24,
"character": "Michael Scott",
"quote": "Now, you may look around and see two groups here. White-collar, blue-collar. But I don’t see it that way. And you know why not? Because I am collar-blind.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 25,
"character": "Michael Scott",
"quote": "And I’m optimistic because every day I get a little more desperate.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 26,
"character": "Michael Scott",
"quote": "I am Beyonce, always.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 27,
"character": "Michael Scott",
"quote": "It’s not like booze ever killed anyone.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 28,
"character": "Michael Scott",
"quote": "And I knew exactly what to do. But in a much more real sense, I had no idea what to do.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 29,
"character": "Michael Scott",
"quote": "The worst thing about prison was the dementors.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 30,
"character": "Michael Scott",
"quote": "There’s no such thing as an appropriate joke. That’s why it’s called a joke.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 31,
"character": "Michael Scott",
"quote": "Society teaches us that having feelings and crying is bad and wrong. Well, that’s baloney, because grief isn’t wrong. There’s such a thing as good grief. Just ask Charlie Brown.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 32,
"character": "Michael Scott",
"quote": "I say dance, they say ‘How high?'",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 33,
"character": "Michael Scott",
"quote": "Tell him to call me ASAP as possible.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 34,
"character": "Michael Scott",
"quote": "Presents are the best way to show how much you care. It’s a tangible thing you can point at and say, ‘Hey man, I love you. This many dollars worth.’",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 35,
"character": "Michael Scott",
"quote": "Dwight, you ignorant slut.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 36,
"character": "Michael Scott",
"quote": "I want you to rub butter on my foot… Pam, please? I have Country Crock.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 37,
"character": "Michael Scott",
"quote": "There is no greater feeling than when two people who are perfect for each other overcome all obstacles and find true love.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 38,
"character": "Michael Scott",
"quote": "I would say I kind of have an unfair advantage because I watch reality dating shows like a hawk, and I learn. I absorb information from the strategies of the winners and the losers. Actually, I probably learn more from the losers.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 39,
"character": "Michael Scott",
"quote": "About 40 times a year, Michael gets sick but has no symptoms. Dwight is always gravely concerned.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 40,
"character": "Michael Scott",
"quote": "There were these huge bins of clothes and everybody was rifling through them like crazy. And I grabbed one and it fit! So, I don’t think that this is totally just a woman’s suit. At the very least it’s bisexual.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 41,
"character": "Michael Scott",
"quote": "Any man who says he totally understands women is a fool. Because they are un-understandable.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 42,
"character": "Michael Scott",
"quote": "When the son of the deposed king of Nigeria emails you directly, asking for help, you help! His father ran the freaking country! OK?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 43,
"character": "Michael Scott",
"quote": "I had a great summer. I got West Nile virus, lost a ton of weight. Then I went back to the lake. And I stepped on a piece of glass in the parking lot, which hurt. That got infected. Even though I peed on it.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 44,
"character": "Michael Scott",
"quote": "Friends joke with one another. ‘Hey, you’re poor.’ ‘Hey, your mama’s dead.’ That’s what friends do.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 45,
"character": "Michael Scott",
"quote": "I am running away from my responsibilities. And it feels good.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 46,
"character": "Michael Scott",
"quote": "Toby is in HR, which technically means he works for corporate. So he’s not really a part of our family. Also, he’s divorced, so he’s not really a part of his family.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 47,
"character": "Michael Scott",
"quote": "Saw Inception. Or at least I dreamt I did.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 48,
"character": "Michael Scott",
"quote": "Jan is cold. If she was sitting across from you on a train and she wasn’t moving, you might think she was dead.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 49,
"character": "Michael Scott",
"quote": "Number eight. Learn how to take off a woman’s bra: You just twist your hand until something breaks.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 50,
"character": "Michael Scott",
"quote": "I don’t come up with this stuff, I just forward it along. You wouldn’t arrest the guy who was just passing drugs from one guy to another.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 51,
"character": "Michael Scott",
"quote": "I love my employees even though I hit one of you with my car.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 52,
"character": "Michael Scott",
"quote": "I would not miss it for the world. But if something else came up, I would definitely not go.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 53,
"character": "Michael Scott",
"quote": "This is our receptionist, Pam. If you think she’s cute now, you should have seen her a couple years ago.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 54,
"character": "Michael Scott",
"quote": "Like right here is my favorite New York pizza joint. And I’m going to go get me a New York slice.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 55,
"character": "Michael Scott",
"quote": "Sometimes you have to take a break from being the kind of boss that’s always trying to teach people things. Sometimes you just have to be the boss of dancing.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 56,
"character": "Michael Scott",
"quote": "I would say I kind of have an unfair advantage because I watch reality dating shows like a hawk, and I learn. I absorb information from the strategies of the winners and the losers. Actually, I probably learn more from the losers.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 57,
"character": "Michael Scott",
"quote": "Nobody likes beets, Dwight! Why don’t you grow something that everybody does like? You should grow candy.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 58,
"character": "Michael Scott",
"quote": "It takes you thirty seconds to brush your teeth? Wow, that’s ten times as long as it takes me.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 59,
"character": "Michael Scott",
"quote": "I took her to the hospital. And the doctors tried to save her life, they did the best they could. And she is going to be OK.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 60,
"character": "Michael Scott",
"quote": "Yes, it is true. I, Michael Scott, am signing up with an online dating service. Thousands of people have done it, and I am going to do it. I need a username. And I have a great one. Little Kid Lover. That way people will know exactly where my priorities are at.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 61,
"character": "Michael Scott",
"quote": "People will never be replaced by machines. In the end, life and business are about human connections. And computers are about trying to murder you in a lake. And to me the choice is easy.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 62,
"character": "Michael Scott",
"quote": "Hi, I’m Date Mike. Nice to meet me. How do you like your eggs in the morning?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 63,
"character": "Michael Scott",
"quote": "I’ve got to make sure that YouTube comes down to tape this.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 64,
"character": "Michael Scott",
"quote": "OK, too many different words from coming at me from too many different sentences.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 65,
"character": "Michael Scott",
"quote": "The people that you work with are, when you get down to it, your very best friends.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 66,
"character": "Michael Scott",
"quote": "Webster’s Dictionary defines wedding as ‘the fusing of two metals with a hot torch.'",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 67,
"character": "Michael Scott",
"quote": "Granted, maybe this was not the best idea, but at least we care enough about our employees that we are willing to fight for them.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 68,
"character": "Michael Scott",
"quote": "I guess the attitude that I’ve tried to create here is that I’m a friend first and a boss second and probably an entertainer third.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 69,
"character": "Michael Scott",
"quote": "Pizza: the great equalizer.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 70,
"character": "Michael Scott",
"quote": "Reverse psychology is an awesome tool. I don’t know if you guys know about it, but, basically, you make someone think the opposite of what you believe. And that tricks them into doing something stupid. Works like a charm.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 71,
"character": "Michael Scott",
"quote": "I am Michael, and I am part English, Irish, German, and Scottish… sort of a virtual United Nations.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 72,
"character": "Michael Scott",
"quote": "If you don’t like it, Stanley, you can go to the back of the bus, or the front of the bus, or drive the bus.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 73,
"character": "Michael Scott",
"quote": "If you break that girl’s heart, I will kill you. That’s just a figure of speech. But seriously, if you break that girl’s heart, I will literally kill you and your entire family.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 74,
"character": "Michael Scott",
"quote": "My mind is going a mile an hour.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 75,
"character": "Michael Scott",
"quote": "It’s a pimple, Phyllis. Avril Lavigne gets them all the time, and she rocks harder than anyone alive.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 76,
"character": "Michael Scott",
"quote": "Is there something besides ‘Mexican’ you prefer to be called? Something less offensive?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 77,
"character": "Michael Scott",
"quote": "It just seems awfully mean. But sometimes, the ends justify the mean.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 78,
"character": "Michael Scott",
"quote": "No, Rose, they are not breathing. And they have no arms or legs… Where are they? You know what? If we come across somebody with no arms or legs, do we bother resuscitating them? I mean, what quality of life do we have there?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 79,
"character": "Michael Scott",
"quote": "Abraham Lincoln once said that, ‘If you’re a racist, I will attack you with the North.’ And those are the principles that I carry with me in the workplace.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 80,
"character": "Michael Scott",
"quote": "They say that your wedding day goes by in such a flash that you’re lucky if you even get a piece of your own cake. I say that’s crazy. I say let them eat cake. Margaret Thatcher said that about marriage. Smart broad.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 81,
"character": "Michael Scott",
"quote": "Here it is, heart of New York City, Times Square… named for the good times you have when you’re in it.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 82,
"character": "Michael Scott",
"quote": "Two weeks ago, I was in the worst relationship of my life. She treated me poorly, we didn’t connect, I was miserable. Now, I am in the best relationship of my life, with the same woman. Love is a mystery.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 83,
"character": "Michael Scott",
"quote": "You will not die! Stanley! Stanley! Barack is President! You are black, Stanley!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 84,
"character": "Michael Scott",
"quote": "I want today to be a beautiful memory that the staff and I share after I have passed on to New York. And if Toby is a part of it, then it’ll suck.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 85,
"character": "Michael Scott",
"quote": "I think Angela might be gay. Could Oscar and Angela be having a gay affair? Maybe! Is that what this is about?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 86,
"character": "Michael Scott",
"quote": "That was offensive and lame. So double offensive. This is an environment of welcoming and you should just get the hell out of here.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 87,
"character": "Michael Scott",
"quote": "Oh, this is gonna feel so good getting this thing off my chest… that’s what she said.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 88,
"character": "Michael Scott",
"quote": "Well, well, well, how the turntables.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 89,
"character": "Michael Scott",
"quote": "We’re all homos. Homo… Sapiens.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 90,
"character": "Michael Scott",
"quote": "You cheated on me? When I specifically asked you not to?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 91,
"character": "Michael Scott",
"quote": "I don’t want any special treatment, Pam. I just want you to treat me like you would some family member who’s undergone some sort of serious physical trauma. I don’t think that’s too much to ask?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 92,
"character": "Michael Scott",
"quote": "I enjoy having breakfast in bed. I like waking up to the smell of bacon, sue me. And since I don’t have a butler, I do it myself. So, most nights before I go to bed, I will lay six strips of bacon out on my George Foreman Grill. Then I go to sleep. When I wake up, I plug in the grill, I go back to sleep again. Then I wake up to the smell of crackling bacon.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 93,
"character": "Michael Scott",
"quote": "Hate to see you leave, but love to watch you go. ‘Cause of your butt.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 94,
"character": "Michael Scott",
"quote": "Well, happy birthday, Jesus. Sorry that your party’s so lame.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 95,
"character": "Michael Scott",
"quote": "It’s a good thing Russia doesn’t exist anymore.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 96,
"character": "Michael Scott",
"quote": "Do you think that doing alcohol is cool?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 97,
"character": "Michael Scott",
"quote": "I hate so much about the things you choose to be.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 98,
"character": "Michael Scott",
"quote": "That’s what she said!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 99,
"character": "Michael Scott",
"quote": "It’s never too early for ice cream.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 100,
"character": "Michael Scott",
"quote": "When I discovered YouTube, I didn’t work for five days.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 101,
"character": "Michael Scott",
"quote": "Occasionally, I’ll hit someone with my car. So sue me.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 102,
"character": "Michael Scott",
"quote": "I saved a life — my own.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 103,
"character": "Michael Scott",
"quote": "That has sort of an oaky afterbirth.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 104,
"character": "Michael Scott",
"quote": "I learned a while back that if I do not text 911, people do not return my calls. Um, but now people always return my calls because they think that something horrible has happened.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 105,
"character": "Michael Scott",
"quote": "I have cause. It’s beCAUSE I hate him.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 106,
"character": "Michael Scott",
"quote": "I live by one rule: No office romances, no way. Very messy, inappropriate… no. But, I live by another rule: Just do it… Nike.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 107,
"character": "Michael Scott",
"quote": "I’m not a millionaire. I thought I would be by the time I was 30, but I wasn’t even close. Then I thought maybe by 40, but by 40, I had less money than I did when I was 30.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 108,
"character": "Michael Scott",
"quote": "I’m not usually the butt of the joke. I’m usually the face of the joke.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 109,
"character": "Michael Scott",
"quote": "The rules of shotgun are very simple and very clear. The first person to shout ‘shotgun’ when you’re within sight of the car gets the front seat. That’s how the game’s played. There are no exceptions for someone with a concussion.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 110,
"character": "Michael Scott",
"quote": "You are as creepy as a real serial killer. For real.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 111,
"character": "Michael Scott",
"quote": "You all took a life here today. You did. The life of the party.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 112,
"character": "Michael Scott",
"quote": "I fell in love with these kids. And I didn’t want to see them fall victim to the system. So I made ’em a promise. I told them if they graduated from high school, I would pay for their college education. I have made some empty promises in my life but, hands down, that was the most generous.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 113,
"character": "Michael Scott",
"quote": "Last, and possibly least, you didn’t think we’d forget, ‘That’s what she said!’",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 114,
"character": "Michael Scott",
"quote": "My philosophy is, basically this. And this is something that I live by. And I always have. And I always will. Don’t, ever, for any reason, do anything, to anyone, for any reason, ever, no matter what, no matter where, or who you are with, or, or where you are going, or, or where you’ve been. Ever. For any reason. Whatsoever.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 115,
"character": "Michael Scott",
"quote": "Dwight, you ignorant slut!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 116,
"character": "Michael Scott",
"quote": "If I had a gun with two bullets and I was in a room with Hitler, Bin Laden, and Toby, I would shoot Toby twice.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 117,
"character": "Michael Scott",
"quote": "Nobody should have to go to work thinking, ‘Oh, this is the place that I might die today.’ That’s what a hospital is for. An office is for not dying. An office is a place to live life to the fullest. To the max. To… an office is a place where dreams come true.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 118,
"character": "Michael Scott",
"quote": "You miss 100 percent of the shots you don’t take. Wayne Gretzky.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 119,
"character": "Michael Scott",
"quote": "I… declare…. bankruptcy!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 120,
"character": "Michael Scott",
"quote": "It is St. Patrick’s Day. And here in Scranton, that is a huge deal. It is the closest that the Irish will ever get to Christmas.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 121,
"character": "Michael Scott",
"quote": "It’s Britney, bitch.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 122,
"character": "Michael Scott",
"quote": "You don’t know me, you’ve just seen my penis.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 123,
"character": "Michael Scott",
"quote": "I’m sinking a few, you know. Swish, swish, swish. Nothing but net. And their jaws just dropped to the floor. African-Americans!",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 124,
"character": "Michael Scott",
"quote": "When I was five, I imagined that there was such a thing as a unicorn. And this was before I had even heard of one, or seen one. I just drew a picture, of a horse, that could fly over rainbows, and had a huge spike in its head. I was five! Five years old. Couldn’t even talk yet.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 125,
"character": "Michael Scott",
"quote": "Jim and I are great friends. We hang out a ton, mostly at work.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 126,
"character": "Michael Scott",
"quote": "As it turns out, you can’t just check someone into rehab against their will. They have to do it voluntarily. They have to hit rock bottom. So, I think I know what I need to do at this point. I need to find ways to push Meredith to the bottom. Um. I think I can do it.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 127,
"character": "Michael Scott",
"quote": "They always say that it’s a mistake to hire your friends. And they are right. So, I hired my best friends. And this is what I get!?",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 128,
"character": "Michael Scott",
"quote": "The only time I set the bar low is for limbo.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 129,
"character": "Michael Scott",
"quote": "Don’t ever, for any reason, do anything to anyone, for any reason, ever, no matter what.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 130,
"character": "Michael Scott",
"quote": "It takes an advanced sense of humor. I don’t expect everyone to understand.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 131,
"character": "Michael Scott",
"quote": "I’m not gonna cry over it. I did that in the car on the way home.",
"character_avatar_url": "https://miro.medium.com/v2/resize:fit:500/1*xDIevNE7HEMiJQVTYg0qDQ.png"
},
{
"id": 132,
"character": "Dwight Schrute",
"quote": "Before I do anything I ask myself, ‘Would an idiot do that?’ And if the answer is yes, I do not do that thing.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 133,
"character": "Dwight Schrute",
"quote": "Who is Justice Beaver?",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 134,
"character": "Dwight Schrute",
"quote": "It’s a real shame because studies have shown that more information gets passed through water cooler gossip than through official memos. Which puts me at a disadvantage because I bring my own water to work.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 135,
"character": "Dwight Schrute",
"quote": "Jim told me you could buy gaydar online.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 136,
"character": "Dwight Schrute",
"quote": "I never thought I’d say this, but I think I ate too much bone marrow.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 137,
"character": "Dwight Schrute",
"quote": "PowerPoints are the peacocks of the business world; all show, no meat.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 138,
"character": "Dwight Schrute",
"quote": "Would I ever leave this company? Look, I’m all about loyalty. In fact, I feel like part of what I’m being paid for here is my loyalty. But if there were somewhere else that valued loyalty more highly… I’m going wherever they value loyalty the most.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 139,
"character": "Dwight Schrute",
"quote": "I love catching people in the act. That’s why I always whip open doors.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 140,
"character": "Dwight Schrute",
"quote": "The Civil War history industry has conveniently forgotten about the battle of Schrute Farms. Whatever. I’m over it. It’s just grossly irresponsible.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 141,
"character": "Dwight Schrute",
"quote": "Bread is the paper of the food industry. You write your sandwich on it.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 142,
"character": "Dwight Schrute",
"quote": "It’s better to be hurt by someone you know accidentally, than by a stranger on purpose.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 143,
"character": "Dwight Schrute",
"quote": "In the end, the greatest snowball isn’t a snowball at all. It’s fear. Merry Christmas.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 144,
"character": "Dwight Schrute",
"quote": "How would I describe myself? Three words: hardworking, alpha male, jackhammer, merciless, insatiable.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 145,
"character": "Dwight Schrute",
"quote": "I wish I could menstruate. If I could menstruate, I wouldn’t have to deal with idiotic calendars anymore. I’d just be able to count down from my previous cycle. Plus, I’d be more in tune with the moon and the tides.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 146,
"character": "Dwight Schrute",
"quote": "People underestimate the power of nostalgia. Nostalgia is truly one of the greatest human weaknesses, second only to the neck.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 147,
"character": "Dwight Schrute",
"quote": "Why are all these people here? There’s too many people on this earth. We need a new plague.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 148,
"character": "Dwight Schrute",
"quote": "When someone smiles at me, all I see is a chimpanzee begging for its life.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 149,
"character": "Dwight Schrute",
"quote": "Yes. I have decided to shun Andy Bernard for the next three years. Which I’m looking forward to. It’s an Amish technique.It’s like slapping someone with sile",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 150,
"character": "Dwight Schrute",
"quote": "I don’t have a lot of experience with vampires, but I have hunted werewolves. I shot one once, but by the time I got to it, it had turned back into my neighbor’s dog.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 151,
"character": "Dwight Schrute",
"quote": "You better learn your rules. If you don’t, you’ll be eaten in your sleep.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 152,
"character": "Dwight Schrute",
"quote": "Nothing stresses me out. Except having to seek the approval of my inferiors.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 153,
"character": "Dwight Schrute",
"quote": "Michael is like Mozart, and I’m like Butch Cassidy. You mess with Mozart and you’re gonna get a bullet in your head, courtesy of Butch Cassidy.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 154,
"character": "Dwight Schrute",
"quote": "My perfect Valentine’s day? I’m at home, three cell phones in front of me, fielding desperate calls from people who want to buy one of the fifty restaurant reservations I made over six months ago.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 155,
"character": "Dwight Schrute",
"quote": "I’m gonna intimidate him, OK? Watch this… So anyways, she said that is the biggest penis I have ever seen, and I said I know! That’s why I brought you to the penis museum, where tickets are a thousand dollars.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 156,
"character": "Dwight Schrute",
"quote": "Everyone, follow me to the shelter. We’ve got enough food for 14 days. After that, we have a difficult conversation.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 157,
"character": "Dwight Schrute",
"quote": "I always wondered how they picked the person to die. I’d be good at picking the person.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 158,
"character": "Dwight Schrute",
"quote": "When my mother was pregnant with me, they did an ultrasound and found she was having twins. When they did another ultrasound a few weeks later, they discovered that I had adsorbed the other fetus. Do I regret this? No, I believe his tissue has made me stronger. I now have the strength of a grown man and a little baby.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 159,
"character": "Dwight Schrute",
"quote": "And I will travel to New Zealand. And walk the Lord of the Rings trail to Mordor.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 160,
"character": "Dwight Schrute",
"quote": "When I die, I want to be frozen. And if they have to freeze me in pieces, so be it. I will wake up stronger than ever, because I will have used that time to figure out exactly why I died. And what moves I could have used to defend myself better now that I know what hold he had me in.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 161,
"character": "Dwight Schrute",
"quote": "In an ideal world, I would have all 10 fingers on my left hand so my right hand could just be a fist for punching.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 162,
"character": "Dwight Schrute",
"quote": "I am better than you have ever been or ever will be.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 163,
"character": "Dwight Schrute",
"quote": "I am faster than 80 percent of all snakes.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 164,
"character": "Dwight Schrute",
"quote": "Always the Padawan, never the Jedi.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 165,
"character": "Dwight Schrute",
"quote": "There are three things you never turn your back on: bears, men you have wronged, and a dominant male turkey during mating season.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 166,
"character": "Dwight Schrute",
"quote": "All you need is love? False. The four basic human necessities are air, water, food, and shelter.",
"character_avatar_url": "https://i.redd.it/hrieyrl117891.jpg"
},
{
"id": 167,
"character": "Dwight Schrute",