forked from Moutix/gign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile
8662 lines (8660 loc) · 931 KB
/
profile
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
Thread ID: 18420520
Fiber ID: 62543060
Total Time: 80.96414873500001
Sort by: total_time
%total %self total self wait child calls Name
--------------------------------------------------------------------------------
100.00% 0.00% 80.964 0.000 0.000 80.964 1 Object#irb_binding
80.964 0.000 0.000 80.964 1/1 SteamService#update!
--------------------------------------------------------------------------------
80.964 0.000 0.000 80.964 1/1 Object#irb_binding
100.00% 0.00% 80.964 0.000 0.000 80.964 1 SteamService#update!
80.964 0.000 0.000 80.964 1/1 ActiveRecord::Transactions::ClassMethods#transaction
--------------------------------------------------------------------------------
80.964 0.000 0.000 80.964 1/1 SteamService#update!
100.00% 0.00% 80.964 0.000 0.000 80.964 1 ActiveRecord::Transactions::ClassMethods#transaction
80.963 0.000 0.000 80.963 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#transaction
0.001 0.000 0.000 0.001 1/40186 ActiveRecord::ConnectionHandling#connection
--------------------------------------------------------------------------------
80.963 0.000 0.000 80.963 1/1 ActiveRecord::Transactions::ClassMethods#transaction
100.00% 0.00% 80.963 0.000 0.000 80.963 1 ActiveRecord::ConnectionAdapters::DatabaseStatements#transaction
80.963 0.000 0.000 80.963 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#within_new_transaction
0.000 0.000 0.000 0.000 1/17 Hash#assert_valid_keys
0.000 0.000 0.000 0.000 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#current_transaction
0.000 0.000 0.000 0.000 1/1 ActiveRecord::ConnectionAdapters::ClosedTransaction#joinable?
--------------------------------------------------------------------------------
80.963 0.000 0.000 80.963 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#transaction
100.00% 0.00% 80.963 0.000 0.000 80.963 1 ActiveRecord::ConnectionAdapters::DatabaseStatements#within_new_transaction
80.959 0.000 0.000 80.959 1/1175558 Array#each
0.004 0.000 0.000 0.004 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#begin_transaction
0.000 0.000 0.000 0.000 1/16799 Hash#values
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 1/1175558 ActiveRecord::ConnectionAdapters::OpenTransaction#commit_records
0.000 0.000 0.000 0.000 257/1175558 <Class::Dir>#tmpdir
0.000 0.000 0.000 0.000 519/1175558 GameStats#achievements
0.000 0.000 0.000 0.000 103058/1175558 Enumerable#any?
0.000 0.000 0.000 0.000 70705/1175558 MultiXml::Parsers::Rexml#merge_texts!
0.000 0.000 0.000 0.000 1760/1175558 Enumerable#inject
0.000 0.000 0.000 0.000 11/1175558 ActiveSupport::Dependencies#search_for_file
0.000 0.000 0.000 0.000 6/1175558 ActiveSupport::Dependencies#autoloadable_module?
0.000 0.000 0.000 0.000 5/1175558 ActiveRecord::Delegation::DelegateCache#initialize_relation_delegate_cache
0.000 0.000 0.000 0.000 15/1175558 ActiveSupport::Concern#append_features
0.000 0.000 0.000 0.000 1868/1175558 Enumerable#flat_map
0.000 0.000 0.000 0.000 37/1175558 ActiveSupport::Inflector#apply_inflections
0.000 0.000 0.000 0.000 16/1175558 <Class::ActiveRecord::Associations::Builder::Association>#define_callbacks
0.000 0.000 0.000 0.000 46/1175558 ActiveSupport::Callbacks::ClassMethods#__update_callbacks
0.000 0.000 0.000 0.000 27/1175558 ActiveSupport::Callbacks::CallbackChain#append
0.000 0.000 0.000 0.000 19/1175558 ActiveSupport::Callbacks::CallbackChain#prepend
0.000 0.000 0.000 0.000 8/1175558 <Class::ActiveRecord::Associations::Builder::CollectionAssociation>#define_callbacks
0.000 0.000 0.000 0.000 32/1175558 Class#class_attribute
0.000 0.000 0.000 0.000 7/1175558 ActiveSupport::Dependencies::WatchStack#new_constants
0.000 0.000 0.000 0.000 490/1175558 Array#each
0.000 0.000 0.000 0.000 7/1175558 ActiveSupport::Dependencies::WatchStack#pop_modules
0.000 0.000 0.000 0.000 59772/1175558 Enumerable#detect
0.000 0.000 0.000 0.000 207606/1175558 Enumerable#find
0.000 0.000 0.000 0.000 42368/1175558 Enumerable#grep
0.000 0.000 0.000 0.000 16063/1175558 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement
0.000 0.000 0.000 0.000 34296/1175558 Enumerable#each_with_index
0.000 0.000 0.000 0.000 16068/1175558 ActiveRecord::Result#each
0.000 0.000 0.000 0.000 14610/1175558 <Class::REXML::XPath>#each
0.000 0.000 0.000 0.000 8/1175558 ActiveRecord::ModelSchema::ClassMethods#decorate_columns
0.000 0.000 0.000 0.000 4/1175558 ActiveModel::AttributeMethods::ClassMethods#define_attribute_methods
0.000 0.000 0.000 0.000 28/1175558 ActiveModel::AttributeMethods::ClassMethods#define_attribute_method
0.000 0.000 0.000 0.000 15600/1175558 ActiveRecord::Relation#exec_queries
0.000 0.000 0.000 0.000 6/1175558 Module#delegate
0.000 0.000 0.000 0.000 1/1175558 ActiveRecord::Inheritance::ClassMethods#compute_type
0.000 0.000 0.000 0.000 5729/1175558 ActiveRecord::Relation::Merger#merge
0.000 0.000 0.000 0.000 3/1175558 Enumerable#each_entry
0.000 0.000 0.000 0.000 926/1175558 <Class::ActiveRecord::Associations::JoinDependency>#walk_tree
0.000 0.000 0.000 0.000 926/1175558 ActiveRecord::Associations::JoinDependency#initialize
0.000 0.000 0.000 0.000 926/1175558 Hash#except!
0.000 0.000 0.000 0.000 463/1175558 ActiveRecord::Associations::JoinDependency::JoinPart#each
0.000 0.000 0.000 0.000 463/1175558 Enumerable#none?
0.000 0.000 0.000 0.000 463/1175558 Enumerable#group_by
0.000 0.000 0.000 0.000 463/1175558 Enumerable#partition
0.000 0.000 0.000 0.000 463/1175558 ActiveRecord::QueryMethods#build_joins
0.000 0.000 0.000 0.000 1/1175558 ActiveRecord::ConnectionAdapters::Quoting#type_cast
0.000 0.000 0.000 0.000 614/1175558 Net::HTTP#initialize
0.000 0.000 0.000 0.000 344448/1175558 Kernel#tap
0.000 0.000 0.000 0.000 172350/1175558 REXML::Parent#each
0.000 0.000 0.000 0.000 13830/1175558 REXML::Parsers::BaseParser#pull_event
0.000 0.000 0.000 0.000 14610/1175558 REXML::XPathParser#expr
0.000 0.000 0.000 0.000 4/1175558 Enumerable#find_all
0.000 0.000 0.000 0.000 465/1175558 SQLite3::Statement#bind_params
0.001 0.000 0.000 0.001 16543/1175558 ActiveSupport::Notifications::Fanout#start
0.002 0.000 0.000 0.002 16543/1175558 ActiveSupport::Notifications::Fanout#finish
80.959 0.000 0.000 80.959 1/1175558 ActiveRecord::ConnectionAdapters::DatabaseStatements#within_new_transaction
100.00% 0.00% 80.962 0.000 0.000 80.961 1175558 *Array#each
77.514 0.001 0.000 77.514 14/276 GameStats#achievements
28.461 0.071 0.000 28.389 12967/12967 SteamService#find_achievement
5.156 0.195 0.000 4.961 16063/16063 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectCore
4.323 0.054 0.000 4.269 33086/33086 ActiveSupport::Notifications::Fanout::Subscribers::Evented#finish
2.022 0.001 0.000 2.021 27/619 SteamId#game_stats
1.398 0.088 0.000 1.310 15600/15600 ActiveRecord::Persistence::ClassMethods#instantiate
0.788 0.055 0.000 0.733 33086/33086 ActiveSupport::Notifications::Fanout::Subscribers::Evented#start
0.372 0.372 0.000 0.000 802176/2276965 Kernel#kind_of?
0.302 0.006 0.000 0.296 1707/19159 ActiveRecord::SpawnMethods#merge
0.298 0.008 0.000 0.289 1707/2170 ActiveRecord::Relation#scoping
0.237 0.117 0.000 0.120 59304/122948 ActiveModel::AttributeMethods::ClassMethods#attribute_alias?
0.203 0.203 0.000 0.000 431867/1369049 Module#===
0.198 0.000 0.000 0.198 27/463 SteamService#find_game
0.118 0.013 0.000 0.104 12991/1189144 Class#new
0.103 0.073 0.000 0.030 59767/60230 ActiveRecord::Core::ClassMethods#===
0.058 0.000 0.000 0.058 27/463 SteamService#find_stat
0.058 0.018 0.000 0.040 14610/14610 REXML::Parent#to_a
0.050 0.050 0.000 0.000 66794/133588 REXML::CData#value
0.041 0.004 0.000 0.037 926/16989 ActiveRecord::QueryMethods#where
0.034 0.000 0.000 0.033 26/463 ActiveRecord::Persistence#update_columns
0.033 0.033 0.000 0.000 80109/391567 NilClass#nil?
0.023 0.000 0.000 0.023 28/56 ActiveModel::AttributeMethods::ClassMethods#define_attribute_method
0.019 0.003 0.000 0.016 926/926 ActiveRecord::Associations::AssociationScope#bind
0.016 0.001 0.000 0.015 463/463 ActiveRecord::AttributeMethods#[]
0.011 0.011 0.000 0.000 14610/99671 REXML::Element#node_type
0.009 0.009 0.000 0.000 15073/887498 Symbol#==
0.009 0.009 0.000 0.000 14741/256384 Hash#has_key?
0.008 0.000 0.000 0.008 2/2 ActiveSupport::Dependencies#constantize
0.008 0.002 0.000 0.006 196/196 ActiveModel::AttributeMethods::ClassMethods#define_proxy_call
0.008 0.000 0.000 0.008 16/16 <Module::ActiveRecord::AutosaveAssociation::AssociationBuilderExtension>#build
0.008 0.000 0.000 0.008 54/1873 Module#const_get
0.007 0.007 0.000 0.000 6754/59335 Kernel#instance_variable_set
0.006 0.006 0.000 0.000 257/257 <Class::File>#stat
0.006 0.001 0.000 0.004 926/60693 Arel::Predications#eq
0.006 0.002 0.000 0.003 463/463 ActiveRecord::Associations::JoinDependency#walk
0.005 0.001 0.000 0.004 252/252 ActiveRecord::AttributeMethods::ClassMethods#instance_method_already_implemented?
0.004 0.000 0.000 0.004 32/64 <Class::ActiveRecord::Associations::Builder::CollectionAssociation>#define_callback
0.004 0.004 0.000 0.000 257/267 <Class::File>#expand_path
0.004 0.001 0.000 0.003 252/255 ActiveRecord::DynamicMatchers#respond_to?
0.003 0.003 0.000 0.000 3911/7822 REXML::Text#value
0.003 0.001 0.000 0.002 926/78926 Arel::Table#[]
0.003 0.001 0.000 0.001 463/463 ActiveRecord::Associations::JoinDependency::JoinBase#match?
0.003 0.003 0.000 0.000 926/926 SQLite3::Statement#bind_param
0.002 0.001 0.000 0.001 463/26932 ActiveRecord::Inheritance::ClassMethods#base_class
0.002 0.000 0.000 0.002 28/28 ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods#define_method_attribute=
0.001 0.000 0.000 0.001 46/92 ActiveSupport::Callbacks::ClassMethods#set_callbacks
0.001 0.000 0.000 0.001 28/28 ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#define_method_attribute
0.001 0.001 0.000 0.000 257/257 File::Stat#writable?
0.001 0.001 0.000 0.000 2315/4162 Hash#delete
0.001 0.001 0.000 0.000 1309/1314 String#sub!
0.001 0.000 0.000 0.001 52/926 #<Module:0x00000005b91b80>#__temp__160707f59646
0.001 0.000 0.000 0.001 12/240 Tempfile::Remover#call
0.001 0.001 0.000 0.000 463/1389 ActiveRecord::Reflection::MacroReflection#==
0.001 0.001 0.000 0.000 9/26459 Module#to_s
0.001 0.000 0.000 0.000 252/252 ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher#method_name
0.001 0.001 0.000 0.000 257/257 File::Stat#directory?
0.001 0.001 0.000 0.000 12/16538 Array#-
0.001 0.001 0.000 0.000 13/290 Module#module_eval
0.001 0.001 0.000 0.000 463/115849 Array#shift
0.001 0.001 0.000 0.000 1122/276658 String#to_s
0.001 0.000 0.000 0.001 46/388169 Kernel#dup
0.001 0.001 0.000 0.000 217/474 <Class::File>#join
0.001 0.001 0.000 0.000 463/463 ActiveRecord::Reflection::AssociationReflection#foreign_key
0.001 0.001 0.000 0.000 96/97 Kernel#define_singleton_method
0.001 0.001 0.000 0.000 257/257 File::Stat#world_writable?
0.001 0.000 0.000 0.001 27/27 ActiveSupport::Callbacks::CallbackChain#append
0.001 0.001 0.000 0.000 257/257 File::Stat#sticky?
0.001 0.001 0.000 0.000 939/1241309 Kernel#nil?
0.001 0.001 0.000 0.000 463/463 ActiveRecord::Reflection::AssociationReflection#active_record_primary_key
0.001 0.001 0.000 0.000 926/21474 Array#blank?
0.001 0.000 0.000 0.000 69/247 Module#define_method
0.001 0.001 0.000 0.000 504/341454 String#=~
0.000 0.000 0.000 0.000 27/27 ActiveSupport::Callbacks::CallbackChain#append_one
0.000 0.000 0.000 0.000 483/56834 Module#name
0.000 0.000 0.000 0.000 19/19 ActiveSupport::Callbacks::CallbackChain#prepend
0.000 0.000 0.000 0.000 510/510 <Class::ActiveRecord::DynamicMatchers::Method>#pattern
0.000 0.000 0.000 0.000 19/19 ActiveSupport::Callbacks::CallbackChain#prepend_one
0.000 0.000 0.000 0.000 121/121 <Class::File>#file?
0.000 0.000 0.000 0.000 470/93718 Array#last
0.000 0.000 0.000 0.000 26/463 SteamId#total_playtime
0.000 0.000 0.000 0.000 463/39135 Array#first
0.000 0.000 0.000 0.000 96/96 <Class::File>#directory?
0.000 0.000 0.000 0.000 32/32 Module#attr_writer
0.000 0.000 0.000 0.000 463/820653 Kernel#class
0.000 0.000 0.000 0.000 26/463 SteamId#recent_playtime
0.000 0.000 0.000 0.000 32/137 Module#remove_possible_method
0.000 0.000 0.000 0.000 46/184 ActiveSupport::Callbacks::ClassMethods#get_callbacks
0.000 0.000 0.000 0.000 7/14 Module#local_constants
0.000 0.000 0.000 0.000 196/508 ActiveModel::AttributeMethods::ClassMethods#generated_attribute_methods
0.000 0.000 0.000 0.000 7/25 ActiveSupport::Dependencies#qualified_const_defined?
0.000 0.000 0.000 0.000 88/129 Module#const_defined?
0.000 0.000 0.000 0.000 15/74579 String#gsub
0.000 0.000 0.000 0.000 18/77681 Array#join
0.000 0.000 0.000 0.000 19/21 Symbol#=~
0.000 0.000 0.000 0.000 9/137843 Array#concat
0.000 0.000 0.000 0.000 7/27 ActiveSupport::Inflector#constantize
0.000 0.000 0.000 0.000 55/217764 Symbol#to_s
0.000 0.000 0.000 0.000 22/32 Set#add
0.000 0.000 0.000 0.000 15/30 Module#const_set
0.000 0.000 0.000 0.000 27/3595 Integer#to_i
0.000 0.000 0.000 0.000 16/16 <Module::ActiveRecord::AutosaveAssociation::AssociationBuilderExtension>#valid_options
0.000 0.000 0.000 0.000 5/120291 Kernel#respond_to?
0.000 0.000 0.000 0.000 5/153772 ThreadSafe::Cache#[]
0.000 0.000 0.000 0.000 15/881730 Kernel#hash
0.000 0.000 0.000 0.000 28/168336 Hash#key?
0.000 0.000 0.000 0.000 7/188331 Array#pop
0.000 0.000 0.000 0.000 7/397443 Kernel#is_a?
0.000 0.000 0.000 0.000 1/1 Module#ancestors
0.000 0.000 0.000 0.000 28/15632 ActiveRecord::ModelSchema::ClassMethods#decorate_columns
0.000 0.000 0.000 0.000 85061/85333 MultiXml::Parsers::Rexml#merge_element!
0.000 0.000 0.000 0.000 490/1175558 Array#each
0.000 0.000 0.000 0.000 1/102247 Enumerable#inject
0.000 0.000 0.000 0.000 33833/315693 Arel::Visitors::Visitor#visit
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 258/276 GameStats#achievements
0.000 0.000 0.000 0.000 4/276 BasicObject#method_missing
77.514 0.001 0.000 77.514 14/276 Array#each
95.74% 0.00% 77.514 0.001 0.000 77.514 276 *GameStats#achievements
46.542 0.010 0.000 46.532 436/619 SteamId#game_stats
2.131 0.003 0.000 2.128 436/463 SteamService#find_game
0.712 0.002 0.000 0.710 436/463 SteamService#find_stat
0.574 0.005 0.000 0.570 437/463 ActiveRecord::Persistence#update_columns
0.021 0.003 0.000 0.018 874/926 #<Module:0x00000005b91b80>#__temp__160707f59646
0.020 0.010 0.000 0.009 266/1344 Array#reject
0.005 0.001 0.000 0.004 437/463 SteamId#total_playtime
0.004 0.001 0.000 0.003 437/463 SteamId#recent_playtime
0.002 0.000 0.000 0.001 4/4 BasicObject#method_missing
0.001 0.000 0.000 0.001 1/1 ActiveRecord::ConnectionAdapters::DatabaseStatements#commit_transaction
0.001 0.000 0.000 0.001 4/1129 BindingOfCaller::BindingExtensions#callers
0.001 0.001 0.000 0.000 272/1189144 Class#new
0.001 0.000 0.000 0.001 2/239244 Hash#each
0.000 0.000 0.000 0.000 436/3595 Integer#to_i
0.000 0.000 0.000 0.000 272/549 GameStats#public?
0.000 0.000 0.000 0.000 456/391567 NilClass#nil?
0.000 0.000 0.000 0.000 253/1241309 Kernel#nil?
0.000 0.000 0.000 0.000 184/1369049 Module#===
0.000 0.000 0.000 0.000 4/2258 Method#call
0.000 0.000 0.000 0.000 8/2258 Thread#[]=
0.000 0.000 0.000 0.000 12/331418 <Class::Thread>#current
0.000 0.000 0.000 0.000 4/229992 Thread#[]
0.000 0.000 0.000 0.000 4/2258 UnboundMethod#bind
0.000 0.000 0.000 0.000 4/1129 Kernel#binding
0.000 0.000 0.000 0.000 4/975605 String#[]
0.000 0.000 0.000 0.000 4/2258 Array#drop
0.000 0.000 0.000 0.000 519/1175558 Array#each
0.000 0.000 0.000 0.000 258/276 GameStats#achievements
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 2/1189144 Array#[]
0.000 0.000 0.000 0.000 1/1189144 ActiveRecord::ConnectionAdapters::Transaction#initialize
0.000 0.000 0.000 0.000 35/1189144 XMLData#parse
0.000 0.000 0.000 0.000 35/1189144 Kernel#raise
0.000 0.000 0.000 0.000 257/1189144 Tempfile#initialize
0.000 0.000 0.000 0.000 257/1189144 OpenURI::Buffer#<<
0.000 0.000 0.000 0.000 5/1189144 Mutex_m#mu_initialize
0.000 0.000 0.000 0.000 463/1189144 Arel::UpdateManager#initialize
0.000 0.000 0.000 0.000 15/1189144 Module#class_eval
0.000 0.000 0.000 0.000 14610/1189144 REXML::XPathParser#initialize
0.000 0.000 0.000 0.000 14610/1189144 <Class::REXML::XPath>#each
0.000 0.000 0.000 0.000 86244/1189144 REXML::Elements#add
0.000 0.000 0.000 0.000 172523/1189144 REXML::Parsers::BaseParser#pull_event
0.000 0.000 0.000 0.000 172146/1189144 REXML::Parsers::TreeParser#parse
0.000 0.000 0.000 0.000 307/1189144 <Class::REXML::SourceFactory>#create_from
0.000 0.000 0.000 0.000 307/1189144 REXML::Parsers::TreeParser#initialize
0.000 0.000 0.000 0.000 307/1189144 REXML::Document#build
0.000 0.000 0.000 0.000 172526/1189144 Set#initialize
0.000 0.000 0.000 0.000 307/1189144 MultiXml::Parsers::Rexml#parse
0.000 0.000 0.000 0.000 307/1189144 Net::HTTPResponse::Inflater#inflate_adapter
0.000 0.000 0.000 0.000 16526/1189144 Arel::SelectManager#initialize
0.000 0.000 0.000 0.000 16526/1189144 Class#new
0.000 0.000 0.000 0.000 16526/1189144 Arel::Nodes::SelectCore#initialize
0.000 0.000 0.000 0.000 307/1189144 Net::HTTPResponse::Inflater#initialize
0.000 0.000 0.000 0.000 307/1189144 Net::HTTPResponse#inflater
0.000 0.000 0.000 0.000 614/1189144 Net::HTTPResponse#procdest
0.000 0.000 0.000 0.000 614/1189144 <Class::Net::HTTPResponse>#read_new
0.000 0.000 0.000 0.000 614/1189144 Net::HTTP#start
0.000 0.000 0.000 0.000 614/1189144 Net::HTTP#connect
0.000 0.000 0.000 0.000 614/1189144 <Class::Net::HTTP>#new
0.000 0.000 0.000 0.000 614/1189144 OpenURI::Buffer#initialize
0.000 0.000 0.000 0.000 1/1189144 <Class::ActiveRecord::Base>#after_destroy
0.000 0.000 0.000 0.000 614/1189144 Kernel#catch
0.000 0.000 0.000 0.000 614/1189144 URI::Parser#parse
0.000 0.000 0.000 0.000 1/1189144 ActiveRecord::Associations::Association#association_scope
0.000 0.000 0.000 0.000 2778/1189144 <Class::ActiveRecord::Associations::AliasTracker>#empty
0.000 0.000 0.000 0.000 463/1189144 ActiveRecord::Associations::AliasTracker#aliased_table_for
0.000 0.000 0.000 0.000 926/1189144 ActiveRecord::Associations::JoinDependency#initialize
0.000 0.000 0.000 0.000 173102/1189144 REXML::Element#initialize
0.000 0.000 0.000 0.000 2/1189144 ActiveRecord::QueryMethods#where!
0.000 0.000 0.000 0.000 5/1189144 ActiveRecord::Core::ClassMethods#generated_association_methods
0.000 0.000 0.000 0.000 18/1189144 ActiveRecord::AutosaveAssociation::ClassMethods#add_autosave_association_callbacks
0.000 0.000 0.000 0.000 4/1189144 ActiveModel::AttributeMethods::ClassMethods#attribute_method_matchers_cache
0.000 0.000 0.000 0.000 10/1189144 ActiveRecord::Core::ClassMethods#arel_table
0.000 0.000 0.000 0.000 3/1189144 Enumerable#to_set
0.000 0.000 0.000 0.000 46/1189144 ActiveSupport::Callbacks::CallbackChain#initialize_copy
0.001 0.000 0.000 0.000 1129/1189144 RubyVM::DebugInspector#frame_binding
0.001 0.000 0.000 0.001 46/1189144 <Class::ActiveSupport::Callbacks::Callback>#build
0.001 0.000 0.000 0.001 5/1189144 ActiveRecord::AttributeMethods::ClassMethods#initialize_generated_modules
0.001 0.000 0.000 0.001 16/1189144 <Class::ActiveRecord::Associations::Builder::Association>#create_builder
0.001 0.000 0.000 0.001 14743/1189144 Hash#each
0.001 0.001 0.000 0.000 272/1189144 GameStats#achievements
0.002 0.001 0.000 0.001 3704/1189144 ActiveRecord::ConnectionAdapters::AbstractAdapter#substitute_at
0.002 0.000 0.000 0.002 16/1189144 <Module::ActiveRecord::Reflection>#create
0.003 0.001 0.000 0.001 499/1189144 Array#map
0.004 0.000 0.000 0.004 1/1189144 ActiveRecord::ConnectionAdapters::ClosedTransaction#begin
0.004 0.001 0.000 0.003 2778/1189144 Array#map!
0.007 0.001 0.000 0.006 463/1189144 ActiveRecord::Relation#update_all
0.010 0.003 0.000 0.007 1707/1189144 Arel::OrderPredications#asc
0.020 0.001 0.000 0.019 463/1189144 ActiveRecord::Associations#association
0.027 0.006 0.000 0.021 5729/1189144 ActiveRecord::SpawnMethods#merge!
0.028 0.020 0.000 0.009 15600/1189144 ActiveRecord::Relation#exec_queries
0.035 0.001 0.000 0.035 463/1189144 ActiveRecord::QueryMethods#build_joins
0.039 0.021 0.000 0.018 16526/1189144 <Module::Arel>#sql
0.040 0.001 0.000 0.039 463/1189144 ActiveRecord::FinderMethods#construct_join_dependency
0.080 0.033 0.000 0.048 16541/1189144 ActiveSupport::Notifications::Instrumenter#instrument
0.092 0.025 0.000 0.066 16526/1189144 ActiveRecord::QueryMethods#collapse_wheres
0.111 0.042 0.000 0.069 32126/1189144 Arel::SelectManager#take
0.118 0.013 0.000 0.104 12991/1189144 Array#each
0.181 0.026 0.000 0.155 16543/1189144 ActiveSupport::Subscriber#start
0.247 0.075 0.000 0.172 60693/1189144 Arel::Predications#eq
0.396 0.042 0.000 0.354 32162/1189144 SQLite3::Statement#get_metadata
0.581 0.028 0.000 0.552 16526/1189144 ActiveRecord::QueryMethods#build_arel
0.603 0.056 0.000 0.547 36298/1189144 ActiveRecord::Delegation::ClassMethods#create
1.187 0.036 0.000 1.151 16081/1189144 SQLite3::Database#prepare
48.478 0.001 0.000 48.477 307/1189144 <Class::GameStats>#create_game_stats
64.59% 0.54% 52.298 0.435 0.000 51.863 1189144 *Class#new
45.329 0.006 0.000 45.323 302/307 GameStats#initialize
31.605 0.008 0.000 31.597 307/307 REXML::Document#initialize
2.566 0.444 0.000 2.122 86244/86551 REXML::Element#initialize
2.454 0.909 0.000 1.545 104940/171734 REXML::Text#initialize
1.545 0.000 0.000 1.545 1/1 TF2Stats#initialize
1.151 1.151 0.000 0.000 16081/16081 SQLite3::Statement#initialize
1.044 0.093 0.000 0.951 66794/66794 REXML::CData#initialize
0.766 0.369 0.000 0.398 172526/172526 Set#initialize
0.581 0.000 0.000 0.581 1/1 L4D2Stats#initialize
0.552 0.078 0.000 0.475 16526/16526 Arel::SelectManager#initialize
0.509 0.000 0.000 0.509 1/1 DefenseGridStats#initialize
0.448 0.003 0.000 0.445 463/463 ActiveRecord::Associations::CollectionProxy#initialize
0.355 0.215 0.000 0.140 32434/32434 Array#initialize
0.336 0.000 0.000 0.336 1/1 L4DStats#initialize
0.210 0.108 0.000 0.103 16526/16526 Arel::Nodes::SelectCore#initialize
0.183 0.154 0.000 0.029 63471/79997 Arel::Nodes::Binary#initialize
0.182 0.068 0.000 0.115 14741/14741 REXML::Attribute#initialize
0.177 0.000 0.000 0.177 1/1 Portal2Stats#initialize
0.155 0.076 0.000 0.079 16543/16543 ActiveSupport::Notifications::Event#initialize
0.152 0.008 0.000 0.144 257/257 Tempfile#initialize
0.139 0.139 0.000 0.000 86551/86551 REXML::Attributes#initialize
0.130 0.130 0.000 0.000 173915/173915 Hash#initialize
0.122 0.006 0.000 0.116 614/614 Net::HTTPRequest#initialize
0.105 0.086 0.000 0.019 12969/12969 GameAchievement#initialize
0.104 0.002 0.000 0.101 307/307 REXML::Parsers::TreeParser#initialize
0.101 0.101 0.000 0.000 34909/36298 ActiveRecord::Relation#initialize
0.100 0.002 0.000 0.098 307/307 REXML::Parsers::BaseParser#initialize
0.084 0.075 0.000 0.008 16526/16526 Arel::Nodes::SelectStatement#initialize
0.083 0.008 0.000 0.075 307/821 REXML::IOSource#initialize
0.076 0.061 0.000 0.015 33833/33833 Arel::Nodes::Unary#initialize
0.075 0.075 0.000 0.000 86551/86551 REXML::Elements#initialize
0.074 0.009 0.000 0.065 926/926 ActiveRecord::Associations::JoinDependency#initialize
0.071 0.003 0.000 0.068 614/614 URI::HTTP#initialize
0.070 0.027 0.000 0.043 16526/16526 Arel::Nodes::JoinSource#initialize
0.066 0.051 0.000 0.015 16526/16526 Arel::Nodes::And#initialize
0.062 0.032 0.000 0.030 14610/14610 REXML::XPathParser#initialize
0.048 0.048 0.000 0.000 16541/16541 ActiveRecord::Result#initialize
0.040 0.020 0.000 0.020 614/614 Net::HTTP#initialize
0.028 0.015 0.000 0.014 5729/5729 ActiveRecord::Relation::Merger#initialize
0.025 0.006 0.000 0.019 272/272 REXML::XMLDecl#initialize
0.024 0.024 0.000 0.000 30213/194235 BasicObject#initialize
0.022 0.017 0.000 0.006 614/614 Net::HTTPResponse#initialize
0.021 0.021 0.000 0.000 20693/20693 String#initialize
0.019 0.002 0.000 0.016 463/463 ActiveRecord::Associations::Association#initialize
0.011 0.003 0.000 0.008 307/307 Net::HTTPResponse::Inflater#initialize
0.010 0.004 0.000 0.006 614/614 OpenURI::Buffer#initialize
0.006 0.006 0.000 0.000 614/614 Net::BufferedIO#initialize
0.006 0.003 0.000 0.003 926/926 ActiveRecord::AssociationRelation#initialize
0.006 0.002 0.000 0.004 463/463 Arel::UpdateManager#initialize
0.005 0.005 0.000 0.000 307/307 Zlib::Inflate#initialize
0.004 0.003 0.000 0.001 614/614 StringIO#initialize
0.004 0.003 0.000 0.001 473/473 Arel::Table#initialize
0.004 0.000 0.000 0.004 1/1 ActiveRecord::ConnectionAdapters::RealTransaction#initialize
0.004 0.004 0.000 0.000 1166/2258 Exception#initialize
0.004 0.004 0.000 0.000 921/921 Net::ReadAdapter#initialize
0.003 0.001 0.000 0.002 35/35 REXML::DocType#initialize
0.002 0.002 0.000 0.000 1389/1389 ActiveRecord::Associations::AliasTracker#initialize
0.002 0.000 0.000 0.002 13/16 ActiveRecord::Reflection::AssociationReflection#initialize
0.002 0.002 0.000 0.000 926/926 ActiveRecord::Associations::JoinDependency::JoinPart#initialize
0.002 0.002 0.000 0.000 257/257 Tempfile::Remover#initialize
0.002 0.002 0.000 0.000 463/463 Arel::Nodes::UpdateStatement#initialize
0.001 0.000 0.000 0.001 36/36 ActiveRecord::ConnectionAdapters::Column#initialize
0.001 0.000 0.000 0.001 10/10 Module#initialize
0.001 0.000 0.000 0.001 9/240 Tempfile::Remover#call
0.001 0.000 0.000 0.000 46/46 ActiveSupport::Callbacks::Callback#initialize
0.001 0.000 0.000 0.001 15/15 Class#initialize
0.000 0.000 0.000 0.000 8/8 ActiveRecord::Associations::Builder::CollectionAssociation#initialize
0.000 0.000 0.000 0.000 3/3 ActiveRecord::Reflection::ThroughReflection#initialize
0.000 0.000 0.000 0.000 8/16 ActiveRecord::Associations::Builder::Association#initialize
0.000 0.000 0.000 0.000 70/70 REXML::Comment#initialize
0.000 0.000 0.000 0.000 35/35 REXML::ParseException#initialize
0.000 0.000 0.000 0.000 35/191 SteamCondenserError#initialize
0.000 0.000 0.000 0.000 4/4 ThreadSafe::Cache#initialize
0.000 0.000 0.000 0.000 66/66 Mutex#initialize
0.000 0.000 0.000 0.000 19/19 ActiveSupport::Callbacks::Conditionals::Value#initialize
0.000 0.000 0.000 0.000 1/1 ActiveRecord::ConnectionAdapters::TransactionState#initialize
0.000 0.000 0.000 0.000 9/9 ActiveRecord::AttributeMethods::TimeZoneConversion::Type#initialize
0.000 0.000 0.000 0.000 16526/1189144 Class#new
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 156/619 SteamId#game_stats
2.022 0.001 0.000 2.021 27/619 Array#each
46.542 0.010 0.000 46.532 436/619 GameStats#achievements
59.98% 0.01% 48.564 0.011 0.000 48.553 619 *SteamId#game_stats
48.493 0.001 0.000 48.492 307/307 <Class::GameStats>#create_game_stats
0.050 0.001 0.000 0.049 156/1129 BindingOfCaller::BindingExtensions#callers
0.004 0.002 0.000 0.002 463/1389 SteamId#find_game
0.002 0.000 0.000 0.001 156/333 Kernel#raise
0.001 0.001 0.000 0.000 463/463 SteamGame#has_stats?
0.000 0.000 0.000 0.000 156/1129 Kernel#binding
0.000 0.000 0.000 0.000 156/2258 Method#call
0.000 0.000 0.000 0.000 312/2258 Thread#[]=
0.000 0.000 0.000 0.000 468/331418 <Class::Thread>#current
0.000 0.000 0.000 0.000 156/229992 Thread#[]
0.000 0.000 0.000 0.000 156/2258 UnboundMethod#bind
0.000 0.000 0.000 0.000 156/38744 Exception#backtrace
0.000 0.000 0.000 0.000 156/2258 Array#drop
0.000 0.000 0.000 0.000 156/619 SteamId#game_stats
--------------------------------------------------------------------------------
48.493 0.001 0.000 48.492 307/307 SteamId#game_stats
59.89% 0.00% 48.493 0.001 0.000 48.492 307 <Class::GameStats>#create_game_stats
48.478 0.001 0.000 48.477 307/1189144 Class#new
0.014 0.000 0.000 0.014 5/941 ActiveSupport::Dependencies::Loadable#require
--------------------------------------------------------------------------------
0.177 0.000 0.000 0.177 1/307 Portal2Stats#initialize
0.509 0.000 0.000 0.509 1/307 DefenseGridStats#initialize
0.917 0.000 0.000 0.917 2/307 AbstractL4DStats#initialize
1.545 0.000 0.000 1.545 1/307 TF2Stats#initialize
45.329 0.006 0.000 45.323 302/307 Class#new
59.87% 0.01% 48.477 0.006 0.000 48.471 307 GameStats#initialize
48.425 0.005 0.000 48.420 307/342 XMLData#parse
0.022 0.003 0.000 0.019 272/272 Cacheable::ClassMethods#new
0.018 0.002 0.000 0.017 272/272 <Class::SteamGame>#new
0.002 0.002 0.000 0.000 307/307 <Class::GameStats>#base_url
0.002 0.001 0.000 0.001 272/545 String#match
0.001 0.001 0.000 0.000 272/15521 String#to_i
0.000 0.000 0.000 0.000 272/549 GameStats#public?
0.000 0.000 0.000 0.000 272/877306 MatchData#[]
0.000 0.000 0.000 0.000 272/391567 NilClass#nil?
0.000 0.000 0.000 0.000 307/820653 Kernel#class
0.000 0.000 0.000 0.000 272/1241309 Kernel#nil?
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 35/342 XMLData#parse
48.425 0.005 0.000 48.420 307/342 GameStats#initialize
59.81% 0.01% 48.425 0.005 0.000 48.420 342 *XMLData#parse
43.616 0.011 0.000 43.605 307/821 <Module::MultiXml>#parse
4.792 0.004 0.000 4.787 307/307 Kernel#open
0.010 0.000 0.000 0.010 35/1129 BindingOfCaller::BindingExtensions#callers
0.000 0.000 0.000 0.000 272/16799 Hash#values
0.000 0.000 0.000 0.000 272/39135 Array#first
0.000 0.000 0.000 0.000 35/333 Kernel#raise
0.000 0.000 0.000 0.000 35/105 Exception#message
0.000 0.000 0.000 0.000 35/2258 Method#call
0.000 0.000 0.000 0.000 105/331418 <Class::Thread>#current
0.000 0.000 0.000 0.000 35/1129 Kernel#binding
0.000 0.000 0.000 0.000 35/2258 UnboundMethod#bind
0.000 0.000 0.000 0.000 70/2258 Thread#[]=
0.000 0.000 0.000 0.000 35/1369049 Module#===
0.000 0.000 0.000 0.000 35/229992 Thread#[]
0.000 0.000 0.000 0.000 35/38744 Exception#backtrace
0.000 0.000 0.000 0.000 35/2258 Array#drop
0.000 0.000 0.000 0.000 35/1189144 Class#new
0.000 0.000 0.000 0.000 35/342 XMLData#parse
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 514/821 <Module::MultiXml>#parse
43.616 0.011 0.000 43.605 307/821 XMLData#parse
53.87% 0.01% 43.616 0.011 0.000 43.605 821 *<Module::MultiXml>#parse
39.371 0.003 0.000 39.368 307/307 MultiXml::Parsers::Rexml#parse
2.017 0.000 0.000 2.017 35/105 Exception#message
1.191 0.001 0.000 1.190 272/169620 <Module::MultiXml>#undasherize_keys
0.972 0.004 0.000 0.968 272/98915 <Module::MultiXml>#typecast_xml_value
0.021 0.000 0.000 0.021 35/333 Kernel#raise
0.008 0.002 0.000 0.006 514/2313 #<Module:0x00000003cb7598>#respond_to?
0.006 0.006 0.000 0.000 257/257 IO#getc
0.006 0.002 0.000 0.004 307/323 Hash#merge
0.002 0.002 0.000 0.000 514/479155 #<Class:0x00000003eda1b8>#__getobj__
0.001 0.001 0.000 0.000 342/342 <Module::MultiXml>#parser
0.001 0.001 0.000 0.000 307/1241309 Kernel#nil?
0.001 0.001 0.000 0.000 257/257 IO#ungetc
0.001 0.001 0.000 0.000 100/120291 Kernel#respond_to?
0.000 0.000 0.000 0.000 50/50 StringIO#ungetc
0.000 0.000 0.000 0.000 50/50 StringIO#getc
0.000 0.000 0.000 0.000 35/35 MultiXml::Parsers::Rexml#parse_error
0.000 0.000 0.000 0.000 70/38744 Exception#backtrace
0.000 0.000 0.000 0.000 70/1369049 Module#===
0.000 0.000 0.000 0.000 514/821 <Module::MultiXml>#parse
--------------------------------------------------------------------------------
39.371 0.003 0.000 39.368 307/307 <Module::MultiXml>#parse
48.63% 0.00% 39.371 0.003 0.000 39.368 307 MultiXml::Parsers::Rexml#parse
7.754 0.001 0.000 7.753 272/85333 MultiXml::Parsers::Rexml#merge_element!
0.007 0.001 0.000 0.006 544/816 REXML::Document#root
0.000 0.000 0.000 0.000 307/1189144 Class#new
--------------------------------------------------------------------------------
31.605 0.008 0.000 31.597 307/307 Class#new
39.04% 0.01% 31.605 0.008 0.000 31.597 307 REXML::Document#initialize
31.568 0.003 0.000 31.566 307/307 REXML::Document#build
0.028 0.009 0.000 0.019 307/86551 REXML::Element#initialize
0.001 0.001 0.000 0.000 257/257 #<Module:0x00000003cb7598>#kind_of?
0.000 0.000 0.000 0.000 257/228730 #<Module:0x00000003cb7598>#nil?
0.000 0.000 0.000 0.000 50/2276965 Kernel#kind_of?
0.000 0.000 0.000 0.000 50/1241309 Kernel#nil?
--------------------------------------------------------------------------------
31.568 0.003 0.000 31.566 307/307 REXML::Document#initialize
38.99% 0.00% 31.568 0.003 0.000 31.566 307 REXML::Document#build
31.460 1.324 0.000 30.137 307/342 REXML::Parsers::TreeParser#parse
0.000 0.000 0.000 0.000 307/1189144 Class#new
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 35/342 REXML::Parsers::TreeParser#parse
31.460 1.324 0.000 30.137 307/342 REXML::Document#build
38.86% 1.64% 31.460 1.324 0.000 30.137 342 *REXML::Parsers::TreeParser#parse
17.260 0.569 0.000 16.691 344448/344448 REXML::Parsers::BaseParser#pull
3.926 0.370 0.000 3.557 171532/258048 REXML::Parent#add
3.345 0.283 0.000 3.062 85937/86244 REXML::Element#add_element
0.956 0.089 0.000 0.867 86279/239244 Hash#each
0.307 0.307 0.000 0.000 104940/104940 REXML::Element#whitespace
0.182 0.182 0.000 0.000 104940/104940 REXML::Element#ignore_whitespace_nodes
0.093 0.093 0.000 0.000 104940/104940 REXML::Parent#[]
0.068 0.003 0.000 0.065 307/307 REXML::Document#add_element
0.066 0.066 0.000 0.000 104940/261008 Kernel#instance_of?
0.050 0.050 0.000 0.000 85786/188331 Array#pop
0.049 0.049 0.000 0.000 86244/189024 Array#push
0.025 0.007 0.000 0.019 544/886 REXML::Document#add
0.013 0.000 0.000 0.013 35/1129 BindingOfCaller::BindingExtensions#callers
0.000 0.000 0.000 0.000 35/39 Array#[]
0.000 0.000 0.000 0.000 35/333 Kernel#raise
0.000 0.000 0.000 0.000 35/105 Exception#message
0.000 0.000 0.000 0.000 35/2258 Method#call
0.000 0.000 0.000 0.000 105/1369049 Module#===
0.000 0.000 0.000 0.000 105/331418 <Class::Thread>#current
0.000 0.000 0.000 0.000 35/1129 Kernel#binding
0.000 0.000 0.000 0.000 70/2258 Thread#[]=
0.000 0.000 0.000 0.000 35/2258 UnboundMethod#bind
0.000 0.000 0.000 0.000 35/229992 Thread#[]
0.000 0.000 0.000 0.000 35/2258 Array#drop
0.000 0.000 0.000 0.000 35/38744 Exception#backtrace
0.000 0.000 0.000 0.000 172146/1189144 Class#new
0.000 0.000 0.000 0.000 35/342 REXML::Parsers::TreeParser#parse
--------------------------------------------------------------------------------
0.759 0.002 0.000 0.758 463/15600 SteamService#find_stat
0.855 0.002 0.000 0.854 463/15600 SteamService#find_game
28.235 0.041 0.000 28.194 14674/15600 SteamService#find_achievement
36.87% 0.05% 29.849 0.044 0.000 29.805 15600 ActiveRecord::Querying#find_or_create_by
27.609 0.029 0.000 27.580 15600/15600 ActiveRecord::Relation#find_or_create_by
2.196 0.056 0.000 2.140 15600/18233 ActiveRecord::Scoping::Named::ClassMethods#all
--------------------------------------------------------------------------------
28.461 0.071 0.000 28.389 12967/12967 Array#each
35.15% 0.09% 28.461 0.071 0.000 28.389 12967 SteamService#find_achievement
28.235 0.041 0.000 28.194 14674/15600 ActiveRecord::Querying#find_or_create_by
0.132 0.033 0.000 0.099 16381/17770 #<Module:0x00000005b91b80>#__temp__9646
0.014 0.014 0.000 0.000 12967/25934 GameAchievement#unlocked?
0.008 0.000 0.000 0.008 2/11 ActiveSupport::Dependencies::ModuleConstMissing#const_missing
--------------------------------------------------------------------------------
27.609 0.029 0.000 27.580 15600/15600 ActiveRecord::Querying#find_or_create_by
34.10% 0.04% 27.609 0.029 0.000 27.580 15600 ActiveRecord::Relation#find_or_create_by
27.580 0.045 0.000 27.535 15600/15600 ActiveRecord::FinderMethods#find_by
--------------------------------------------------------------------------------
27.580 0.045 0.000 27.535 15600/15600 ActiveRecord::Relation#find_or_create_by
34.06% 0.06% 27.580 0.045 0.000 27.535 15600 ActiveRecord::FinderMethods#find_by
22.908 0.037 0.000 22.870 15600/15600 ActiveRecord::FinderMethods#take
4.627 0.065 0.000 4.562 15600/16989 ActiveRecord::QueryMethods#where
--------------------------------------------------------------------------------
22.908 0.037 0.000 22.870 15600/15600 ActiveRecord::FinderMethods#find_by
28.29% 0.05% 22.908 0.037 0.000 22.870 15600 ActiveRecord::FinderMethods#take
22.870 0.060 0.000 22.810 15600/15600 ActiveRecord::FinderMethods#find_take
--------------------------------------------------------------------------------
22.870 0.060 0.000 22.810 15600/15600 ActiveRecord::FinderMethods#take
28.25% 0.07% 22.870 0.060 0.000 22.810 15600 ActiveRecord::FinderMethods#find_take
22.518 0.032 0.000 22.486 15600/15600 ActiveRecord::Relation#to_a
0.282 0.033 0.000 0.248 15600/16063 ActiveRecord::QueryMethods#limit
0.011 0.011 0.000 0.000 15600/39135 Array#first
--------------------------------------------------------------------------------
22.518 0.032 0.000 22.486 15600/15600 ActiveRecord::FinderMethods#find_take
27.81% 0.04% 22.518 0.032 0.000 22.486 15600 ActiveRecord::Relation#to_a
22.486 0.031 0.000 22.455 15600/15600 ActiveRecord::Relation#load
--------------------------------------------------------------------------------
22.486 0.031 0.000 22.455 15600/15600 ActiveRecord::Relation#to_a
27.77% 0.04% 22.486 0.031 0.000 22.455 15600 ActiveRecord::Relation#load
22.455 0.172 0.000 22.282 15600/15600 ActiveRecord::Relation#exec_queries
--------------------------------------------------------------------------------
22.455 0.172 0.000 22.282 15600/15600 ActiveRecord::Relation#load
27.73% 0.21% 22.455 0.172 0.000 22.282 15600 ActiveRecord::Relation#exec_queries
17.509 0.141 0.000 17.368 15600/15600 ActiveRecord::Querying#find_by_sql
4.381 0.031 0.000 4.350 15600/17917 ActiveRecord::QueryMethods#arel
0.278 0.096 0.000 0.182 31200/31200 ActiveRecord::Relation#eager_loading?
0.028 0.020 0.000 0.009 15600/1189144 Class#new
0.024 0.024 0.000 0.000 15600/15600 ActiveRecord::QueryMethods#preload_values
0.020 0.020 0.000 0.000 15600/24107 ActiveRecord::QueryMethods#bind_values
0.019 0.019 0.000 0.000 15600/15600 ActiveRecord::QueryMethods#readonly_value
0.015 0.015 0.000 0.000 15600/47263 ActiveRecord::QueryMethods#includes_values
0.000 0.000 0.000 0.000 15600/1175558 Array#each
--------------------------------------------------------------------------------
17.509 0.141 0.000 17.368 15600/15600 ActiveRecord::Relation#exec_queries
21.63% 0.17% 17.509 0.141 0.000 17.368 15600 ActiveRecord::Querying#find_by_sql
14.467 0.044 0.000 14.424 15600/16063 ActiveRecord::ConnectionAdapters::QueryCache#select_all
2.191 0.028 0.000 2.162 15600/33059 Enumerable#map
0.524 0.022 0.000 0.502 15600/40186 ActiveRecord::ConnectionHandling#connection
0.131 0.055 0.000 0.076 15600/15600 ActiveRecord::Sanitization::ClassMethods#sanitize_sql_for_conditions
0.027 0.027 0.000 0.000 15600/18403 ActiveRecord::ModelSchema::ClassMethods#table_name
0.017 0.017 0.000 0.000 15600/120291 Kernel#respond_to?
0.011 0.011 0.000 0.000 15600/56834 Module#name
--------------------------------------------------------------------------------
17.260 0.569 0.000 16.691 344448/344448 REXML::Parsers::TreeParser#parse
21.32% 0.70% 17.260 0.569 0.000 16.691 344448 REXML::Parsers::BaseParser#pull
16.044 4.393 0.000 11.650 344448/344448 REXML::Parsers::BaseParser#pull_event
0.647 0.476 0.000 0.171 344448/344448 Kernel#tap
0.000 0.000 0.000 0.000 7/240 Tempfile::Remover#call
--------------------------------------------------------------------------------
16.044 4.393 0.000 11.650 344448/344448 REXML::Parsers::BaseParser#pull
19.82% 5.43% 16.044 4.393 0.000 11.650 344448 REXML::Parsers::BaseParser#pull_event
2.907 0.442 0.000 2.465 239370/239370 REXML::IOSource#read
2.716 0.437 0.000 2.279 344345/344345 REXML::Parsers::BaseParser#empty?
2.587 1.391 0.000 1.196 411788/411788 REXML::IOSource#match
0.680 0.680 0.000 0.000 888738/975605 String#[]
0.680 0.680 0.000 0.000 876148/877306 MatchData#[]
0.362 0.362 0.000 0.000 687190/887498 Symbol#==
0.235 0.181 0.000 0.054 86244/86244 Set#each
0.078 0.078 0.000 0.000 13830/239066 String#scan
0.071 0.071 0.000 0.000 86141/189024 Array#push
0.069 0.069 0.000 0.000 86279/86578 Array#unshift
0.066 0.066 0.000 0.000 85683/188331 Array#pop
0.062 0.062 0.000 0.000 85821/115849 Array#shift
0.029 0.002 0.000 0.027 272/579 REXML::Source#encoding=
0.013 0.013 0.000 0.000 13833/50973 String#strip
0.007 0.007 0.000 0.000 2184/93353 Regexp#===
0.005 0.005 0.000 0.000 816/414430 Regexp#match
0.003 0.003 0.000 0.000 272/272 REXML::Parsers::BaseParser#need_source_encoding_update?
0.003 0.003 0.000 0.000 1705/1241309 Kernel#nil?
0.001 0.000 0.000 0.001 17/240 Tempfile::Remover#call
0.001 0.001 0.000 0.000 272/241870 String#force_encoding
0.000 0.000 0.000 0.000 35/341454 String#=~
0.000 0.000 0.000 0.000 102/391567 NilClass#nil?
0.000 0.000 0.000 0.000 13830/1175558 Array#each
0.000 0.000 0.000 0.000 172523/1189144 Class#new
--------------------------------------------------------------------------------
0.570 0.001 0.000 0.569 463/16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#select_one
14.467 0.044 0.000 14.424 15600/16063 ActiveRecord::Querying#find_by_sql
18.57% 0.06% 15.038 0.045 0.000 14.993 16063 ActiveRecord::ConnectionAdapters::QueryCache#select_all
14.993 0.062 0.000 14.931 16063/16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all
--------------------------------------------------------------------------------
14.993 0.062 0.000 14.931 16063/16063 ActiveRecord::ConnectionAdapters::QueryCache#select_all
18.52% 0.08% 14.993 0.062 0.000 14.931 16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all
8.643 0.029 0.000 8.614 16063/16063 ActiveRecord::ConnectionAdapters::SQLite3Adapter#select
6.246 0.058 0.000 6.188 16063/16526 ActiveRecord::ConnectionAdapters::DatabaseStatements#to_sql
0.042 0.033 0.000 0.010 16063/16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#binds_from_relation
--------------------------------------------------------------------------------
0.002 0.000 0.000 0.002 5/16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#tables
0.003 0.000 0.000 0.003 10/16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#table_structure
0.206 0.001 0.000 0.205 463/16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_delete
8.614 0.043 0.000 8.571 16063/16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#select
10.90% 0.06% 8.826 0.045 0.000 8.781 16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query
8.746 0.064 0.000 8.682 16541/16543 ActiveRecord::ConnectionAdapters::AbstractAdapter#log
0.035 0.012 0.000 0.022 16541/124100 Array#map
--------------------------------------------------------------------------------
0.001 0.000 0.000 0.001 1/16543 ActiveRecord::ConnectionAdapters::SQLite3Adapter#commit_db_transaction
0.004 0.000 0.000 0.004 1/16543 ActiveRecord::ConnectionAdapters::SQLite3Adapter#begin_db_transaction
8.746 0.064 0.000 8.682 16541/16543 ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query
10.81% 0.08% 8.751 0.064 0.000 8.687 16543 ActiveRecord::ConnectionAdapters::AbstractAdapter#log
8.676 0.196 0.000 8.480 16543/16543 ActiveSupport::Notifications::Instrumenter#instrument
0.011 0.011 0.000 0.000 16543/16546 Kernel#object_id
--------------------------------------------------------------------------------
8.676 0.196 0.000 8.480 16543/16543 ActiveRecord::ConnectionAdapters::AbstractAdapter#log
10.72% 0.24% 8.676 0.196 0.000 8.480 16543 ActiveSupport::Notifications::Instrumenter#instrument
4.513 0.030 0.000 4.482 16543/16543 ActiveSupport::Notifications::Instrumenter#finish
1.246 0.045 0.000 1.201 16079/16081 SQLite3::Database#prepare
1.037 0.036 0.000 1.002 16541/16541 Enumerable#to_a
0.975 0.030 0.000 0.945 16543/16543 ActiveSupport::Notifications::Instrumenter#start
0.513 0.041 0.000 0.472 16079/16081 SQLite3::Statement#columns
0.080 0.033 0.000 0.048 16541/1189144 Class#new
0.066 0.066 0.000 0.000 16078/16080 SQLite3::Statement#close
0.021 0.021 0.000 0.000 16541/16541 ActiveRecord::ConnectionAdapters::AbstractAdapter#without_prepared_statement?
0.014 0.014 0.000 0.000 16078/16078 Array#to_a
0.008 0.001 0.000 0.007 463/465 SQLite3::Statement#bind_params
0.002 0.001 0.000 0.001 463/463 ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool#[]
0.001 0.001 0.000 0.000 463/463 SQLite3::Statement#reset!
0.001 0.001 0.000 0.000 463/124100 Array#map
0.001 0.000 0.000 0.001 1/1 SQLite3::Database#transaction
0.001 0.000 0.000 0.001 1/1 SQLite3::Database#commit
0.000 0.000 0.000 0.000 1/1 ActiveRecord::ConnectionAdapters::SQLite3Adapter::StatementPool#[]=
--------------------------------------------------------------------------------
8.643 0.029 0.000 8.614 16063/16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all
10.68% 0.04% 8.643 0.029 0.000 8.614 16063 ActiveRecord::ConnectionAdapters::SQLite3Adapter#select
8.614 0.043 0.000 8.571 16063/16541 ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 85061/85333 Array#each
7.754 0.001 0.000 7.753 272/85333 MultiXml::Parsers::Rexml#parse
9.58% 0.00% 7.754 0.001 0.000 7.753 85333 *MultiXml::Parsers::Rexml#merge_element!
7.752 0.002 0.000 7.750 85333/85333 MultiXml::Parsers::Rexml#collapse
0.312 0.227 0.000 0.085 85333/156038 MultiXml::Parsers::Rexml#merge!
--------------------------------------------------------------------------------
7.752 0.002 0.000 7.750 85333/85333 MultiXml::Parsers::Rexml#merge_element!
9.57% 0.00% 7.752 0.002 0.000 7.750 85333 *MultiXml::Parsers::Rexml#collapse
7.735 0.001 0.000 7.734 14610/14610 REXML::Element#each_element
2.124 0.255 0.000 1.868 70723/70723 MultiXml::Parsers::Rexml#merge_texts!
0.873 0.174 0.000 0.699 85333/85333 MultiXml::Parsers::Rexml#get_attributes
0.810 0.106 0.000 0.704 85333/85333 REXML::Element#has_elements?
0.547 0.031 0.000 0.516 14610/14610 MultiXml::Parsers::Rexml#empty_content?
0.000 0.000 0.000 0.000 1/240 Tempfile::Remover#call
--------------------------------------------------------------------------------
7.735 0.001 0.000 7.734 14610/14610 MultiXml::Parsers::Rexml#collapse
9.55% 0.00% 7.735 0.001 0.000 7.734 14610 *REXML::Element#each_element
7.734 0.001 0.000 7.734 14610/14610 REXML::Elements#each
--------------------------------------------------------------------------------
7.734 0.001 0.000 7.734 14610/14610 REXML::Element#each_element
9.55% 0.00% 7.734 0.001 0.000 7.734 14610 *REXML::Elements#each
7.734 0.003 0.000 7.730 14610/14610 <Class::REXML::XPath>#each
--------------------------------------------------------------------------------
7.734 0.003 0.000 7.730 14610/14610 REXML::Elements#each
9.55% 0.00% 7.734 0.003 0.000 7.730 14610 *<Class::REXML::XPath>#each
2.163 0.031 0.000 2.133 14610/14610 REXML::XPathParser#parse
0.038 0.024 0.000 0.014 14610/14610 REXML::XPathParser#namespaces=
0.034 0.022 0.000 0.012 14610/14610 REXML::XPathParser#variables=
0.015 0.015 0.000 0.000 29220/2276965 Kernel#kind_of?
0.008 0.008 0.000 0.000 14610/391567 NilClass#nil?
0.000 0.000 0.000 0.000 14610/1189144 Class#new
0.000 0.000 0.000 0.000 14610/1175558 Array#each
--------------------------------------------------------------------------------
0.054 0.002 0.000 0.053 463/16526 ActiveRecord::ConnectionAdapters::DatabaseStatements#update
6.246 0.058 0.000 6.188 16063/16526 ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all
7.78% 0.07% 6.300 0.059 0.000 6.241 16526 ActiveRecord::ConnectionAdapters::DatabaseStatements#to_sql
5.990 0.027 0.000 5.963 16526/16526 Arel::Visitors::Visitor#accept
0.180 0.001 0.000 0.179 462/462 Image::ActiveRecord_Relation#ast
0.052 0.020 0.000 0.032 16526/388169 Kernel#dup
0.014 0.014 0.000 0.000 16063/120291 Kernel#respond_to?
0.003 0.001 0.000 0.002 463/463 ActiveRecord::Delegation#respond_to?
0.001 0.000 0.000 0.001 1/2 ActiveRecord::Delegation::ClassSpecificRelation#method_missing
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 5/239244 Enumerable#each_with_object
0.000 0.000 0.000 0.000 5/239244 ActiveModel::Validations::ClassMethods#inherited
0.000 0.000 0.000 0.000 4/239244 Enumerable#find_all
0.001 0.000 0.000 0.001 2/239244 GameStats#achievements
0.001 0.001 0.000 0.001 272/239244 Enumerable#find
0.002 0.001 0.000 0.000 307/239244 <Module::OpenURI>#check_options
0.005 0.004 0.000 0.001 614/239244 <Module::OpenURI>#open_http
0.020 0.008 0.000 0.011 614/239244 Net::HTTPHeader#initialize_http_header
0.030 0.002 0.000 0.028 463/239244 ActiveRecord::Persistence#update_columns
0.072 0.017 0.000 0.055 614/239244 Net::HTTPHeader#each_capitalized
0.287 0.130 0.000 0.157 16063/239244 ActiveRecord::Sanitization::ClassMethods#expand_hash_conditions_for_aggregates
0.379 0.220 0.000 0.159 17452/239244 Enumerable#map
0.956 0.089 0.000 0.867 86279/239244 REXML::Parsers::TreeParser#parse
2.156 0.002 0.000 2.154 100487/239244 Enumerable#inject
2.360 0.270 0.000 2.090 16063/239244 <Class::ActiveRecord::PredicateBuilder>#build_from_hash
7.74% 0.92% 6.270 0.745 0.000 5.524 239244 *Hash#each
1.936 0.229 0.000 1.707 59767/59767 <Class::ActiveRecord::PredicateBuilder>#expand
0.666 0.089 0.000 0.577 14741/14741 REXML::Attributes#[]=
0.127 0.073 0.000 0.054 59767/119534 ActiveRecord::Reflection::ClassMethods#reflect_on_aggregation
0.109 0.109 0.000 0.000 156303/156303 String#tr
0.093 0.093 0.000 0.000 119534/217764 Symbol#to_s
0.077 0.077 0.000 0.000 119534/119534 String#include?
0.065 0.065 0.000 0.000 119534/397443 Kernel#is_a?
0.065 0.065 0.000 0.000 157229/276658 String#to_s
0.050 0.013 0.000 0.037 2456/2456 Net::HTTPHeader#capitalize
0.044 0.044 0.000 0.000 59767/137843 Array#concat
0.030 0.030 0.000 0.000 59304/59336 Symbol#to_sym
0.028 0.002 0.000 0.026 926/926 ActiveRecord::AttributeMethods::Write#raw_write_attribute
0.024 0.002 0.000 0.022 926/926 ActiveRecord::Sanitization::ClassMethods#quote_bound_value
0.008 0.001 0.000 0.007 926/926 ActiveRecord::ConnectionAdapters::SQLite3Adapter#quote_table_name_for_assignment
0.007 0.003 0.000 0.004 614/1159 Net::HTTPHeader#key?
0.005 0.005 0.000 0.000 2456/77681 Array#join
0.003 0.003 0.000 0.000 614/50973 String#strip
0.001 0.001 0.000 0.000 921/1369049 Module#===
0.001 0.001 0.000 0.000 926/2355 ActiveRecord::ModelSchema::ClassMethods#columns_hash
0.001 0.001 0.000 0.000 614/45119 String#downcase
0.001 0.000 0.000 0.001 14743/1189144 Class#new
0.001 0.001 0.000 0.000 463/60831 String#to_sym
0.001 0.000 0.000 0.000 272/254914 Array#include?
0.000 0.000 0.000 0.000 5/240 Tempfile::Remover#call
0.000 0.000 0.000 0.000 307/92127 Hash#include?
0.000 0.000 0.000 0.000 28/112 ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods#create_time_zone_conversion_attribute?
0.000 0.000 0.000 0.000 156303/169620 <Module::MultiXml>#undasherize_keys
0.000 0.000 0.000 0.000 85598/98915 <Module::MultiXml>#typecast_xml_value
--------------------------------------------------------------------------------
5.990 0.027 0.000 5.963 16526/16526 ActiveRecord::ConnectionAdapters::DatabaseStatements#to_sql
7.40% 0.03% 5.990 0.027 0.000 5.963 16526 Arel::Visitors::Visitor#accept
5.963 0.071 0.000 5.893 16526/315693 Arel::Visitors::Visitor#visit
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 1707/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_Ascending
0.000 0.000 0.000 0.000 32126/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectCore
0.000 0.000 0.000 0.000 33833/315693 Array#each
0.000 0.000 0.000 0.000 16063/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_JoinSource
0.000 0.000 0.000 0.000 61619/315693 Array#map
0.000 0.000 0.000 0.000 463/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_UpdateStatement
0.000 0.000 0.000 0.000 16063/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement
0.000 0.000 0.000 0.000 16063/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_Limit
0.000 0.000 0.000 0.000 121230/315693 Arel::Visitors::ToSql#visit_Arel_Nodes_Equality
5.963 0.071 0.000 5.893 16526/315693 Arel::Visitors::Visitor#accept
7.37% 0.09% 5.963 0.071 0.000 5.893 315693 *Arel::Visitors::Visitor#visit
5.771 0.037 0.000 5.734 16063/16063 Arel::Visitors::SQLite#visit_Arel_Nodes_SelectStatement
3.842 0.041 0.000 3.801 16526/16526 Arel::Visitors::ToSql#visit_Arel_Nodes_And
3.297 0.305 0.000 2.992 60693/78926 Arel::Visitors::ToSql#visit_Arel_Nodes_Equality
1.542 0.077 0.000 1.465 41378/41378 Arel::Visitors::ToSql#quoted
0.883 0.595 0.000 0.288 315693/315693 Arel::Visitors::Visitor#dispatch
0.693 0.306 0.000 0.388 78000/78000 Arel::Visitors::ToSql#visit_Arel_Attributes_Attribute
0.336 0.066 0.000 0.270 16063/16063 Arel::Visitors::ToSql#visit_Arel_Nodes_JoinSource
0.223 0.039 0.000 0.184 16063/32126 Arel::Visitors::ToSql#visit_Arel_Nodes_Limit
0.135 0.135 0.000 0.000 315693/881730 Kernel#hash
0.134 0.134 0.000 0.000 315693/820653 Kernel#class
0.070 0.032 0.000 0.039 16526/16526 Arel::Visitors::ToSql#visit_Arel_Table
0.045 0.004 0.000 0.041 463/463 Arel::Visitors::ToSql#visit_Arel_Nodes_UpdateStatement
0.033 0.033 0.000 0.000 36148/36148 Arel::Visitors::ToSql#literal
0.032 0.004 0.000 0.028 1707/1707 Arel::Visitors::ToSql#visit_Arel_Nodes_Ascending
0.018 0.018 0.000 0.000 16063/16063 Arel::Visitors::ToSql#visit_Arel_Nodes_Top
0.000 0.000 0.000 0.000 8/24 Proc#yield
0.000 0.000 0.000 0.000 1/240 Tempfile::Remover#call
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 4/124100 Proc#yield
0.000 0.000 0.000 0.000 3/124100 ActiveRecord::AttributeMethods::Read::ClassMethods#cached_attributes
0.000 0.000 0.000 0.000 4/124100 ActiveRecord::ModelSchema::ClassMethods#column_names
0.000 0.000 0.000 0.000 5/124100 ActiveRecord::ModelSchema::ClassMethods#columns_hash
0.000 0.000 0.000 0.000 32/124100 <Class::ActiveRecord::Associations::Builder::CollectionAssociation>#define_callback
0.000 0.000 0.000 0.000 463/124100 ActiveRecord::Associations::JoinDependency#walk
0.000 0.000 0.000 0.000 463/124100 ActiveRecord::QueryMethods#build_joins
0.001 0.000 0.000 0.000 5/124100 ActiveRecord::ConnectionAdapters::SQLite3Adapter#columns
0.001 0.000 0.000 0.001 7/124100 ActiveSupport::Dependencies::WatchStack#watch_namespaces
0.001 0.000 0.000 0.001 46/124100 ActiveSupport::Callbacks::ClassMethods#set_callback
0.001 0.001 0.000 0.000 463/124100 ActiveSupport::Notifications::Instrumenter#instrument
0.003 0.000 0.000 0.003 5/124100 ActiveRecord::ModelSchema::ClassMethods#columns
0.005 0.002 0.000 0.004 463/124100 ActiveRecord::QueryMethods#build_select
0.006 0.001 0.000 0.004 272/124100 Cacheable#cache_ids
0.006 0.002 0.000 0.004 463/124100 ActiveRecord::LogSubscriber#sql
0.010 0.004 0.000 0.006 1707/124100 Arel::SelectManager#order
0.011 0.011 0.000 0.000 16063/124100 Arel::Visitors::ToSql#visit_Arel_Nodes_JoinSource
0.017 0.010 0.000 0.007 1228/124100 Net::HTTPHeader#tokens
0.018 0.011 0.000 0.006 2456/124100 Net::HTTPHeader#capitalize
0.019 0.002 0.000 0.017 463/124100 ActiveRecord::Associations::AssociationScope#construct_tables
0.032 0.002 0.000 0.030 926/124100 Arel::Visitors::ToSql#visit_Arel_Nodes_UpdateStatement
0.035 0.012 0.000 0.022 16541/124100 ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query
0.091 0.036 0.000 0.055 16526/124100 Arel::SelectManager#project
0.094 0.067 0.000 0.027 16526/124100 ActiveRecord::QueryMethods#collapse_wheres
0.628 0.318 0.000 0.310 32156/124100 ActiveRecord::Result#hash_rows
1.118 0.012 0.000 1.107 284/124100 <Module::MultiXml>#undasherize_keys
3.748 0.072 0.000 3.676 16526/124100 Arel::Visitors::ToSql#visit_Arel_Nodes_And
7.22% 0.70% 5.843 0.563 0.000 5.280 124100 *Array#map
0.261 0.109 0.000 0.152 108520/388169 Kernel#dup
0.049 0.049 0.000 0.000 108484/109108 String#freeze
0.048 0.031 0.000 0.017 18233/254914 Array#include?
0.027 0.027 0.000 0.000 60693/1369049 Module#===
0.022 0.007 0.000 0.015 926/926 ActiveRecord::ConnectionAdapters::SQLite3Adapter#type_cast
0.011 0.011 0.000 0.000 18233/820653 Kernel#class
0.009 0.002 0.000 0.007 463/463 ActiveRecord::Associations::AliasTracker#aliased_table_for
0.006 0.006 0.000 0.000 3684/3684 String#capitalize
0.004 0.002 0.000 0.002 926/926 ActiveRecord::LogSubscriber#render_bind
0.004 0.004 0.000 0.000 683/25680 String#split
0.004 0.002 0.000 0.002 544/544 Cacheable#cache_id_value
0.004 0.000 0.000 0.004 36/16591 ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key
0.003 0.001 0.000 0.002 463/463 ActiveRecord::Associations::AssociationScope#table_name_for
0.003 0.002 0.000 0.001 463/463 ActiveRecord::Associations::AssociationScope#table_alias_for
0.003 0.001 0.000 0.002 463/463 ActiveRecord::Delegation#columns_hash
0.003 0.001 0.000 0.001 499/1189144 Class#new
0.002 0.002 0.000 0.000 683/45119 String#downcase
0.001 0.001 0.000 0.001 463/926 BasicObject#!=
0.001 0.001 0.000 0.000 683/50973 String#strip
0.001 0.000 0.000 0.001 46/46 <Class::ActiveSupport::Callbacks::Callback>#build
0.000 0.000 0.000 0.000 926/276658 String#to_s
0.000 0.000 0.000 0.000 463/168336 Hash#key?
0.000 0.000 0.000 0.000 544/397443 Kernel#is_a?
0.000 0.000 0.000 0.000 7/14 Module#local_constants
0.000 0.000 0.000 0.000 7/25 ActiveSupport::Dependencies#qualified_const_defined?
0.000 0.000 0.000 0.000 1/240 Tempfile::Remover#call
0.000 0.000 0.000 0.000 7/27 ActiveSupport::Inflector#constantize
0.000 0.000 0.000 0.000 7/18 ActiveSupport::Dependencies#to_constant_name
0.000 0.000 0.000 0.000 108/93353 Regexp#===
0.000 0.000 0.000 0.000 36/3595 Integer#to_i
0.000 0.000 0.000 0.000 13045/169620 <Module::MultiXml>#undasherize_keys
0.000 0.000 0.000 0.000 61619/315693 Arel::Visitors::Visitor#visit
--------------------------------------------------------------------------------
5.771 0.037 0.000 5.734 16063/16063 Arel::Visitors::Visitor#visit
7.13% 0.05% 5.771 0.037 0.000 5.734 16063 Arel::Visitors::SQLite#visit_Arel_Nodes_SelectStatement
5.734 0.110 0.000 5.624 16063/16063 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement
--------------------------------------------------------------------------------
5.734 0.110 0.000 5.624 16063/16063 Arel::Visitors::SQLite#visit_Arel_Nodes_SelectStatement
7.08% 0.14% 5.734 0.110 0.000 5.624 16063 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement
0.054 0.003 0.000 0.051 1707/34296 Enumerable#each_with_index
0.022 0.022 0.000 0.000 16063/16063 String#strip!
0.000 0.000 0.000 0.000 2/240 Tempfile::Remover#call
0.000 0.000 0.000 0.000 16063/315693 Arel::Visitors::Visitor#visit
0.000 0.000 0.000 0.000 16063/1175558 Array#each
--------------------------------------------------------------------------------
5.156 0.195 0.000 4.961 16063/16063 Array#each
6.37% 0.24% 5.156 0.195 0.000 4.961 16063 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectCore
4.356 0.042 0.000 4.314 32126/34296 Enumerable#each_with_index
0.019 0.019 0.000 0.000 16063/16063 Arel::Nodes::JoinSource#empty?
0.000 0.000 0.000 0.000 32126/315693 Arel::Visitors::Visitor#visit
--------------------------------------------------------------------------------
4.792 0.004 0.000 4.787 307/307 XMLData#parse
5.92% 0.01% 4.792 0.004 0.000 4.787 307 Kernel#open
4.677 0.001 0.000 4.676 307/307 OpenURI::OpenRead#open
0.108 0.001 0.000 0.107 307/614 <Module::URI>#parse
0.002 0.001 0.000 0.000 921/120291 Kernel#respond_to?
--------------------------------------------------------------------------------
0.041 0.004 0.000 0.037 926/16989 Array#each
0.073 0.002 0.000 0.071 463/16989 ActiveRecord::Persistence#update_columns
4.627 0.065 0.000 4.562 15600/16989 ActiveRecord::FinderMethods#find_by
5.86% 0.09% 4.741 0.071 0.000 4.670 16989 ActiveRecord::QueryMethods#where
4.394 0.127 0.000 4.266 16989/16989 ActiveRecord::QueryMethods#where!
0.223 0.027 0.000 0.196 16989/40025 ActiveRecord::SpawnMethods#spawn
0.034 0.024 0.000 0.010 16063/32126 Hash#==
0.012 0.012 0.000 0.000 16063/16526 Hash#blank?
0.004 0.002 0.000 0.002 926/18233 Object#blank?
0.003 0.002 0.000 0.001 926/1852 Arel::Nodes::Binary#eql?
--------------------------------------------------------------------------------
4.677 0.001 0.000 4.676 307/307 Kernel#open
5.78% 0.00% 4.677 0.001 0.000 4.676 307 OpenURI::OpenRead#open
4.676 0.006 0.000 4.670 307/307 <Module::OpenURI>#open_uri
--------------------------------------------------------------------------------
4.676 0.006 0.000 4.670 307/307 OpenURI::OpenRead#open
5.78% 0.01% 4.676 0.006 0.000 4.670 307 <Module::OpenURI>#open_uri
4.664 0.019 0.000 4.645 307/307 <Module::OpenURI>#open_loop
0.002 0.001 0.000 0.002 307/307 <Module::OpenURI>#check_options
0.002 0.001 0.000 0.001 307/307 <Module::OpenURI>#scan_open_optional_arguments
0.001 0.001 0.000 0.000 307/101022 Kernel#block_given?
0.000 0.000 0.000 0.000 307/115849 Array#shift
0.000 0.000 0.000 0.000 614/1369049 Module#===
0.000 0.000 0.000 0.000 307/39135 Array#first
--------------------------------------------------------------------------------
4.664 0.019 0.000 4.645 307/307 <Module::OpenURI>#open_uri
5.76% 0.02% 4.664 0.019 0.000 4.645 307 <Module::OpenURI>#open_loop
4.589 0.007 0.000 4.582 614/1228 Kernel#catch
0.040 0.022 0.000 0.018 614/614 URI::Generic#to_s
0.004 0.003 0.000 0.002 307/307 <Module::OpenURI>#redirectable?
0.004 0.002 0.000 0.002 307/921 URI::Generic#relative?
0.002 0.002 0.000 0.001 307/6485 OpenURI::Buffer#io
0.002 0.002 0.000 0.000 1228/92127 Hash#include?
0.002 0.002 0.000 0.000 614/23091 Hash#fetch
0.001 0.001 0.000 0.000 307/581 Kernel#lambda
0.000 0.000 0.000 0.000 614/624 Symbol#===
0.000 0.000 0.000 0.000 307/5891 Array#compact!
0.000 0.000 0.000 0.000 307/39135 Array#first
0.000 0.000 0.000 0.000 307/9595 Kernel#===
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 2/17917 ActiveRecord::Delegation::ClassSpecificRelation#method_missing
0.002 0.000 0.000 0.002 1/17917 ActiveRecord::Delegation#respond_to?
0.066 0.002 0.000 0.064 1852/17917 ActiveRecord::Relation#update_all
0.179 0.001 0.000 0.178 462/17917 Image::ActiveRecord_Relation#ast
4.381 0.031 0.000 4.350 15600/17917 ActiveRecord::Relation#exec_queries
5.72% 0.04% 4.628 0.034 0.000 4.594 17917 ActiveRecord::QueryMethods#arel
4.594 0.340 0.000 4.254 16526/16526 ActiveRecord::QueryMethods#build_arel
--------------------------------------------------------------------------------
4.594 0.340 0.000 4.254 16526/16526 ActiveRecord::QueryMethods#arel
5.67% 0.42% 4.594 0.340 0.000 4.254 16526 ActiveRecord::QueryMethods#build_arel
0.957 0.116 0.000 0.841 33052/50505 Array#uniq
0.661 0.039 0.000 0.622 16063/16526 ActiveRecord::Delegation#connection
0.648 0.101 0.000 0.547 16526/16538 Array#-
0.581 0.028 0.000 0.552 16526/1189144 Class#new
0.372 0.064 0.000 0.307 16526/16526 ActiveRecord::QueryMethods#build_select
0.338 0.069 0.000 0.268 16526/16526 ActiveRecord::QueryMethods#collapse_wheres
0.189 0.093 0.000 0.096 16526/16526 ActiveRecord::QueryMethods#build_order
0.165 0.055 0.000 0.111 16063/16063 Arel::SelectManager#take
0.065 0.006 0.000 0.059 463/463 ActiveRecord::QueryMethods#build_joins
0.041 0.031 0.000 0.011 16063/16063 ActiveRecord::ConnectionAdapters::DatabaseStatements#sanitize_limit
0.031 0.031 0.000 0.000 32589/32589 ActiveRecord::QueryMethods#limit_value
0.026 0.026 0.000 0.000 16526/16526 Arel::SelectManager#distinct
0.024 0.024 0.000 0.000 16989/17915 ActiveRecord::QueryMethods#joins_values
0.022 0.022 0.000 0.000 16526/16989 ActiveRecord::QueryMethods#select_values
0.021 0.021 0.000 0.000 16526/16526 ActiveRecord::QueryMethods#group_values
0.021 0.021 0.000 0.000 16526/16526 ActiveRecord::QueryMethods#having_values
0.018 0.018 0.000 0.000 16526/39244 ActiveRecord::QueryMethods#where_values
0.018 0.018 0.000 0.000 16526/16526 ActiveRecord::QueryMethods#offset_value
0.018 0.018 0.000 0.000 16526/22255 ActiveRecord::QueryMethods#lock_value
0.017 0.017 0.000 0.000 16526/22255 ActiveRecord::QueryMethods#from_value
0.017 0.017 0.000 0.000 16526/16526 ActiveRecord::QueryMethods#distinct_value
0.002 0.002 0.000 0.000 463/1546 Array#flatten
0.000 0.000 0.000 0.000 1/240 Tempfile::Remover#call
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 614/1228 Net::HTTP#transport_request
4.589 0.007 0.000 4.582 614/1228 <Module::OpenURI>#open_loop
5.67% 0.01% 4.589 0.007 0.000 4.582 1228 *Kernel#catch
4.537 0.003 0.000 4.534 614/614 URI::HTTP#buffer_open
1.745 0.014 0.000 1.731 614/614 <Class::Net::HTTPResponse>#read_new
0.981 0.026 0.000 0.955 614/614 Net::HTTPResponse#reading_body
0.122 0.005 0.000 0.117 614/614 Net::HTTPGenericRequest#exec
0.032 0.004 0.000 0.028 614/62088 Proc#call
0.005 0.003 0.000 0.002 614/614 Net::HTTP#edit_path
0.003 0.003 0.000 0.000 614/614 Net::HTTPResponse#uri=
0.003 0.003 0.000 0.000 614/2276965 Kernel#kind_of?
0.003 0.003 0.000 0.000 614/1228 Net::HTTPGenericRequest#response_body_permitted?
0.000 0.000 0.000 0.000 614/1189144 Class#new
--------------------------------------------------------------------------------
4.537 0.003 0.000 4.534 614/614 Kernel#catch
5.60% 0.00% 4.537 0.003 0.000 4.534 614 URI::HTTP#buffer_open
4.534 0.047 0.000 4.487 614/871 <Module::OpenURI>#open_http
--------------------------------------------------------------------------------
0.000 0.000 0.000 0.000 257/871 <Module::OpenURI>#open_http
4.534 0.047 0.000 4.487 614/871 URI::HTTP#buffer_open
5.60% 0.06% 4.534 0.047 0.000 4.487 871 *<Module::OpenURI>#open_http
3.615 0.019 0.000 3.596 614/614 Net::HTTP#start
0.413 0.006 0.000 0.406 614/614 Net::HTTPHeader#each_name
0.273 0.002 0.000 0.271 307/614 <Module::URI>#parse
0.056 0.008 0.000 0.048 614/614 <Class::Net::HTTP>#new
0.048 0.008 0.000 0.040 614/6485 OpenURI::Buffer#io
0.032 0.004 0.000 0.028 614/941 ActiveSupport::Dependencies::Loadable#require
0.012 0.012 0.000 0.000 614/614 URI::Generic#hostname
0.010 0.004 0.000 0.006 614/614 URI::HTTP#request_uri
0.005 0.004 0.000 0.001 614/239244 Hash#each
0.004 0.003 0.000 0.001 307/5219 Net::HTTPHeader#[]
0.004 0.004 0.000 0.000 257/397 IO#rewind
0.003 0.003 0.000 0.000 1842/1369049 Module#===
0.003 0.002 0.000 0.001 614/1228 URI::Generic#userinfo
0.002 0.002 0.000 0.000 307/307 Kernel#throw
0.001 0.001 0.000 0.000 257/479155 #<Class:0x00000003eda1b8>#__getobj__
0.001 0.001 0.000 0.000 614/92127 Hash#include?
0.001 0.001 0.000 0.000 357/357 StringIO#rewind
0.001 0.001 0.000 0.000 614/820653 Kernel#class
0.000 0.000 0.000 0.000 257/871 <Module::OpenURI>#open_http
--------------------------------------------------------------------------------
0.054 0.003 0.000 0.051 1707/34296 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement
0.103 0.001 0.000 0.102 463/34296 ActiveRecord::Associations::AssociationScope#add_constraints
4.356 0.042 0.000 4.314 32126/34296 Arel::Visitors::ToSql#visit_Arel_Nodes_SelectCore
5.57% 0.06% 4.513 0.046 0.000 4.467 34296 Enumerable#each_with_index
0.000 0.000 0.000 0.000 34296/1175558 Array#each