gratitude 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.hound.yml +4 -0
  3. data/.rubocop.yml +4 -0
  4. data/CHANGELOG.md +5 -0
  5. data/Gemfile +5 -4
  6. data/Guardfile +10 -8
  7. data/README.md +37 -37
  8. data/gratitude.gemspec +2 -2
  9. data/lib/gratitude/chart.rb +6 -5
  10. data/lib/gratitude/connection.rb +1 -1
  11. data/lib/gratitude/error.rb +2 -2
  12. data/lib/gratitude/payday.rb +7 -6
  13. data/lib/gratitude/profile.rb +36 -75
  14. data/lib/gratitude/statistics.rb +45 -89
  15. data/lib/gratitude/tips.rb +16 -24
  16. data/lib/gratitude/user_chart.rb +8 -4
  17. data/lib/gratitude/version.rb +1 -1
  18. data/spec/cassettes/charts.json +11 -11
  19. data/spec/cassettes/current_tips.json +23 -25
  20. data/spec/cassettes/current_tips_not_authenticated.json +14 -17
  21. data/spec/cassettes/paydays.json +11 -11
  22. data/spec/cassettes/profiles.json +1 -265
  23. data/spec/cassettes/prune_tips_not_authenticated.json +15 -18
  24. data/spec/cassettes/statistics.json +11 -11
  25. data/spec/cassettes/update_and_prune.json +33 -36
  26. data/spec/cassettes/update_and_prune_bad_request.json +12 -13
  27. data/spec/cassettes/update_bad_request.json +13 -14
  28. data/spec/cassettes/update_tips.json +13 -14
  29. data/spec/cassettes/update_tips_not_authenticated.json +15 -18
  30. data/spec/cassettes/user_chart_not_found.json +10 -10
  31. data/spec/cassettes/user_charts.json +22 -22
  32. data/spec/gratitude/chart_spec.rb +3 -10
  33. data/spec/gratitude/connection_spec.rb +2 -2
  34. data/spec/gratitude/payday_spec.rb +3 -10
  35. data/spec/gratitude/profile_spec.rb +47 -47
  36. data/spec/gratitude/statistics_spec.rb +27 -23
  37. data/spec/gratitude/tips_spec.rb +18 -18
  38. data/spec/gratitude/user_chart_spec.rb +17 -21
  39. metadata +4 -4
@@ -8,95 +8,51 @@ module Gratitude
8
8
  alias_method :current, :new
9
9
  end
10
10
 
11
- def average_tip_amount
12
- response_body["average_tip"]
13
- end
14
- alias_method :average_tip, :average_tip_amount
15
-
16
- def average_number_of_tippees
17
- response_body["average_tippees"]
18
- end
19
- alias_method :average_tippees, :average_number_of_tippees
20
-
21
- def amount_in_escrow
22
- response_body["escrow"]
23
- end
24
- alias_method :escrow, :amount_in_escrow
25
-
26
- def last_thursday
27
- response_body["last_thursday"]
28
- end
29
-
30
- def number_of_ach_credits
31
- response_body["nach"].to_i
32
- end
33
- alias_method :nach, :number_of_ach_credits
34
- alias_method :number_of_achs, :number_of_ach_credits
35
-
36
- def number_of_active_users
37
- response_body["nactive"]
38
- end
39
- alias_method :nactive, :number_of_active_users
40
-
41
- def number_of_credit_cards
42
- response_body["ncc"]
43
- end
44
- alias_method :ncc, :number_of_credit_cards
45
-
46
- def number_of_givers
47
- response_body["ngivers"]
48
- end
49
- alias_method :ngivers, :number_of_givers
50
-
51
- def number_who_give_and_receive
52
- response_body["noverlap"]
53
- end
54
- alias_method :noverlap, :number_who_give_and_receive
55
-
56
- def number_of_receivers
57
- response_body["nreceivers"]
58
- end
59
- alias_method :nreceivers, :number_of_receivers
60
-
61
- def other_people
62
- response_body["other_people"]
63
- end
64
-
65
- def percentage_of_users_with_credit_cards
66
- response_body["pcc"].strip
67
- end
68
- alias_method :pcc, :percentage_of_users_with_credit_cards
69
-
70
- def punctuation
71
- response_body["punc"]
72
- end
73
- alias_method :punc, :punctuation
74
-
75
- def statements
76
- response_body["statements"]
77
- end
78
-
79
- def this_thursday
80
- response_body["this_thursday"]
81
- end
82
-
83
- def tip_distribution_json
84
- response_body["tip_distribution_json"]
85
- end
86
-
87
- def number_of_tips
88
- response_body["tip_n"]
89
- end
90
- alias_method :tip_n, :number_of_tips
91
-
92
- def value_of_total_backed_tips
93
- response_body["total_backed_tips"]
94
- end
95
- alias_method :total_backed_tips, :value_of_total_backed_tips
96
-
97
- def transfer_volume
98
- response_body["transfer_volume"]
99
- end
11
+ def nach
12
+ Integer(response_body.fetch("nach"))
13
+ end
14
+ alias_method :number_of_ach_credits, :nach
15
+ alias_method :number_of_achs, :nach
16
+
17
+ def pcc
18
+ response_body.fetch("pcc").strip
19
+ end
20
+ alias_method :percentage_of_users_with_credit_cards, :pcc
21
+
22
+ %w(
23
+ average_tip
24
+ average_tippees
25
+ escrow
26
+ last_thursday
27
+ nactive
28
+ ncc
29
+ ngivers
30
+ noverlap
31
+ nreceivers
32
+ other_people
33
+ punc
34
+ statements
35
+ this_thursday
36
+ tip_distribution
37
+ tip_n
38
+ total_backed_tips
39
+ transfer_volume
40
+ ).each do |response_key|
41
+ define_method(response_key) { response_body.fetch(response_key) }
42
+ end
43
+
44
+ alias_method :average_tip_amount, :average_tip
45
+ alias_method :average_number_of_tippees, :average_tippees
46
+ alias_method :amount_in_escrow, :escrow
47
+ alias_method :number_of_active_users, :nactive
48
+ alias_method :number_of_credit_cards, :ncc
49
+ alias_method :number_of_givers, :ngivers
50
+ alias_method :number_who_give_and_receive, :noverlap
51
+ alias_method :number_of_receivers, :nreceivers
52
+ alias_method :punctuation, :punc
53
+ alias_method :tip_distribution_json, :tip_distribution
54
+ alias_method :number_of_tips, :tip_n
55
+ alias_method :value_of_total_backed_tips, :total_backed_tips
100
56
 
101
57
  private
102
58
 
@@ -4,11 +4,8 @@ module Gratitude
4
4
  class Client
5
5
  module Tips
6
6
  def current_tips
7
- begin
8
- response = faraday.get(tips_url)
9
- rescue Faraday::Error::ParsingError
10
- raise AuthenticationError
11
- end
7
+ response = faraday.get(tips_path)
8
+ raise_any_errors_based_upon(response)
12
9
  response.body
13
10
  end
14
11
 
@@ -17,38 +14,33 @@ module Gratitude
17
14
  end
18
15
 
19
16
  def update_tips(array_of_hashes_with_usernames_and_amounts)
20
- post_tips_to_gittip(array_of_hashes_with_usernames_and_amounts)
17
+ post_tips_to_gratipay(array_of_hashes_with_usernames_and_amounts)
21
18
  end
22
19
 
23
20
  def update_tips_and_prune(array_of_hashes_with_usernames_and_amounts)
24
- post_tips_to_gittip(
21
+ post_tips_to_gratipay(
25
22
  array_of_hashes_with_usernames_and_amounts, prune: true
26
23
  )
27
24
  end
28
25
 
29
26
  private
30
27
 
31
- def tips_url
32
- "/#{username}/tips.json"
33
- end
34
-
35
- def post_tips_to_gittip(array_of_hashes, options = {})
28
+ def post_tips_to_gratipay(array_of_hashes, options = {})
36
29
  response = faraday_post_response(array_of_hashes, options)
37
- return_response_body_or_raise_update_error(response)
30
+ raise_any_errors_based_upon(response)
31
+ response.body
38
32
  end
39
33
 
40
34
  def faraday_post_response(array_of_hashes, options = {})
41
35
  faraday.post do |request|
42
- payload_for(request, array_of_hashes)
36
+ request.url(tips_path)
37
+ request.body = prepared_tips_array(array_of_hashes).to_json
43
38
  request.params = { also_prune: "true" } if options[:prune] == true
44
39
  end
45
- rescue
46
- raise AuthenticationError
47
40
  end
48
41
 
49
- def payload_for(request, array_of_hashes)
50
- request.url(tips_url)
51
- request.body = prepared_tips_array(array_of_hashes).to_json
42
+ def tips_path
43
+ "/#{username}/tips.json"
52
44
  end
53
45
 
54
46
  def prepared_tips_array(array_of_hashes)
@@ -62,16 +54,16 @@ module Gratitude
62
54
  def tip_hash_based_upon(username, amount)
63
55
  {
64
56
  "amount" => "#{amount}",
65
- "platform" => "gittip",
57
+ "platform" => "gratipay",
66
58
  "username" => "#{username}"
67
59
  }
68
60
  end
69
61
 
70
- def return_response_body_or_raise_update_error(response)
71
- if usernames_with_errors(response.body).size > 0
62
+ def raise_any_errors_based_upon(response)
63
+ if response.body.is_a?(Hash) && response.body.key?("error_code")
64
+ raise AuthenticationError
65
+ elsif usernames_with_errors(response.body).size > 0
72
66
  raise TipUpdateError, usernames_with_errors(response.body)
73
- else
74
- response.body
75
67
  end
76
68
  end
77
69
 
@@ -31,23 +31,27 @@ module Gratitude
31
31
  end
32
32
 
33
33
  def self.sort_by_date_for_user(username)
34
- all_for_user(username).sort_by { |chart| chart.date }.reverse
34
+ all_for_user(username).sort_by(&:date).reverse
35
35
  end
36
+ private_class_method :sort_by_date_for_user
36
37
 
37
38
  def self.user_charts_contains_other_usernames?(username)
38
- USER_CHARTS.collect { |chart| chart.username }.uniq != [username]
39
+ USER_CHARTS.collect(&:username).uniq != [username]
39
40
  end
41
+ private_class_method :user_charts_contains_other_usernames?
40
42
 
41
- def self.user_charts_from_gittip(username)
43
+ def self.user_charts_from_gratipay(username)
42
44
  response = faraday.get("/#{username}/charts.json").body.to_a
43
45
  raise UsernameNotFoundError, username if response.empty?
44
46
  response
45
47
  end
48
+ private_class_method :user_charts_from_gratipay
46
49
 
47
50
  def self.collect_charts_for(username)
48
- user_charts_from_gittip(username).each do |chart_hash|
51
+ user_charts_from_gratipay(username).each do |chart_hash|
49
52
  UserChart.new(chart_hash.merge("username" => username))
50
53
  end
51
54
  end
55
+ private_class_method :collect_charts_for
52
56
  end
53
57
  end
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Gratitude
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
@@ -3,14 +3,14 @@
3
3
  {
4
4
  "request": {
5
5
  "method": "get",
6
- "uri": "https://www.gittip.com/about/charts.json",
6
+ "uri": "https://gratipay.com/about/charts.json",
7
7
  "body": {
8
8
  "encoding": "US-ASCII",
9
9
  "string": ""
10
10
  },
11
11
  "headers": {
12
12
  "User-Agent": [
13
- "Faraday v0.8.9"
13
+ "Faraday v0.9.0"
14
14
  ],
15
15
  "Accept-Encoding": [
16
16
  "gzip;q=1.0,deflate;q=0.6,identity;q=0.3"
@@ -36,16 +36,16 @@
36
36
  "application/json"
37
37
  ],
38
38
  "Date": [
39
- "Sat, 17 May 2014 00:13:19 GMT"
39
+ "Mon, 13 Oct 2014 21:02:13 GMT"
40
40
  ],
41
41
  "Expires": [
42
42
  "Thu, 01 Jan 1970 00:00:00 GMT"
43
43
  ],
44
44
  "Server": [
45
- "Aspen! Cheroot!"
45
+ "gunicorn/18.0"
46
46
  ],
47
47
  "Set-Cookie": [
48
- "csrf_token=HbNpEwcP1jpuLohGunKlvYP96GqArtsZ; expires=Sat, 24 May 2014 00:13:19 GMT; Path=/"
48
+ "csrf_token=ddYS7uCHf8vA6qtwZQW6Tr4qx2BWGAQL; expires=Mon, 20 Oct 2014 21:02:13 GMT; Path=/; secure"
49
49
  ],
50
50
  "Vary": [
51
51
  "Cookie"
@@ -53,8 +53,8 @@
53
53
  "X-Frame-Options": [
54
54
  "SAMEORIGIN"
55
55
  ],
56
- "X-Gittip-Version": [
57
- "12.11.2"
56
+ "X-Gratipay-Version": [
57
+ "17.1.3"
58
58
  ],
59
59
  "Transfer-Encoding": [
60
60
  "chunked"
@@ -65,12 +65,12 @@
65
65
  },
66
66
  "body": {
67
67
  "encoding": "UTF-8",
68
- "string": "[\n {\n \"active_users\": 2887,\n \"charges\": 11887.97,\n \"date\": \"2014-05-15\",\n \"total_gifts\": 497708.33,\n \"total_users\": 29927,\n \"weekly_gifts\": 13443.64,\n \"withdrawals\": 7860.46\n },\n {\n \"active_users\": 2853,\n \"charges\": 11973.64,\n \"date\": \"2014-05-08\",\n \"total_gifts\": 484264.69,\n \"total_users\": 29626,\n \"weekly_gifts\": 13437.70,\n \"withdrawals\": 7644.24\n },\n {\n \"active_users\": 2802,\n \"charges\": 12019.00,\n \"date\": \"2014-05-01\",\n \"total_gifts\": 470826.99,\n \"total_users\": 29320,\n \"weekly_gifts\": 13275.02,\n \"withdrawals\": 6398.65\n },\n {\n \"active_users\": 2758,\n \"charges\": 11685.49,\n \"date\": \"2014-04-24\",\n \"total_gifts\": 457551.97,\n \"total_users\": 29015,\n \"weekly_gifts\": 13120.14,\n \"withdrawals\": 6614.89\n },\n {\n \"active_users\": 2718,\n \"charges\": 10625.45,\n \"date\": \"2014-04-17\",\n \"total_gifts\": 444431.83,\n \"total_users\": 28650,\n \"weekly_gifts\": 12399.97,\n \"withdrawals\": 6951.54\n },\n {\n \"active_users\": 2723,\n \"charges\": 11079.68,\n \"date\": \"2014-04-10\",\n \"total_gifts\": 432031.86,\n \"total_users\": 28379,\n \"weekly_gifts\": 12770.78,\n \"withdrawals\": 6201.57\n },\n {\n \"active_users\": 2715,\n \"charges\": 11001.22,\n \"date\": \"2014-04-03\",\n \"total_gifts\": 419261.08,\n \"total_users\": 28146,\n \"weekly_gifts\": 12770.27,\n \"withdrawals\": 5828.38\n },\n {\n \"active_users\": 2696,\n \"charges\": 11254.43,\n \"date\": \"2014-03-27\",\n \"total_gifts\": 406490.81,\n \"total_users\": 27860,\n \"weekly_gifts\": 12747.74,\n \"withdrawals\": 6235.15\n },\n {\n \"active_users\": 2664,\n \"charges\": 11183.69,\n \"date\": \"2014-03-20\",\n \"total_gifts\": 393743.07,\n \"total_users\": 27548,\n \"weekly_gifts\": 12664.49,\n \"withdrawals\": 6012.52\n },\n {\n \"active_users\": 2657,\n \"charges\": 10943.74,\n \"date\": \"2014-03-13\",\n \"total_gifts\": 381078.58,\n \"total_users\": 27294,\n \"weekly_gifts\": 12257.50,\n \"withdrawals\": 5990.10\n },\n {\n \"active_users\": 2655,\n \"charges\": 10475.01,\n \"date\": \"2014-03-06\",\n \"total_gifts\": 368821.08,\n \"total_users\": 27036,\n \"weekly_gifts\": 12185.15,\n \"withdrawals\": 6522.65\n },\n {\n \"active_users\": 2605,\n \"charges\": 10961.88,\n \"date\": \"2014-02-27\",\n \"total_gifts\": 356635.93,\n \"total_users\": 26757,\n \"weekly_gifts\": 12140.45,\n \"withdrawals\": 5685.59\n },\n {\n \"active_users\": 2561,\n \"charges\": 10736.00,\n \"date\": \"2014-02-20\",\n \"total_gifts\": 344495.48,\n \"total_users\": 26375,\n \"weekly_gifts\": 11998.53,\n \"withdrawals\": 5597.80\n },\n {\n \"active_users\": 2486,\n \"charges\": 10228.48,\n \"date\": \"2014-02-13\",\n \"total_gifts\": 332496.95,\n \"total_users\": 25835,\n \"weekly_gifts\": 11683.23,\n \"withdrawals\": 5572.35\n },\n {\n \"active_users\": 2433,\n \"charges\": 9787.89,\n \"date\": \"2014-02-06\",\n \"total_gifts\": 320813.72,\n \"total_users\": 25478,\n \"weekly_gifts\": 10931.53,\n \"withdrawals\": 5067.17\n },\n {\n \"active_users\": 2376,\n \"charges\": 9548.17,\n \"date\": \"2014-01-30\",\n \"total_gifts\": 309882.19,\n \"total_users\": 25168,\n \"weekly_gifts\": 10663.52,\n \"withdrawals\": 5335.69\n },\n {\n \"active_users\": 2351,\n \"charges\": 8894.99,\n \"date\": \"2014-01-23\",\n \"total_gifts\": 299218.67,\n \"total_users\": 24894,\n \"weekly_gifts\": 10303.19,\n \"withdrawals\": 5280.30\n },\n {\n \"active_users\": 2325,\n \"charges\": 8801.85,\n \"date\": \"2014-01-16\",\n \"total_gifts\": 288915.48,\n \"total_users\": 24591,\n \"weekly_gifts\": 10084.65,\n \"withdrawals\": 4635.02\n },\n {\n \"active_users\": 2298,\n \"charges\": 7795.94,\n \"date\": \"2014-01-09\",\n \"total_gifts\": 278830.83,\n \"total_users\": 24239,\n \"weekly_gifts\": 9049.38,\n \"withdrawals\": 5609.08\n },\n {\n \"active_users\": 2289,\n \"charges\": 7236.75,\n \"date\": \"2014-01-02\",\n \"total_gifts\": 269781.45,\n \"total_users\": 23973,\n \"weekly_gifts\": 8685.91,\n \"withdrawals\": 4580.04\n },\n {\n \"active_users\": 2261,\n \"charges\": 7725.38,\n \"date\": \"2013-12-26\",\n \"total_gifts\": 261095.54,\n \"total_users\": 23735,\n \"weekly_gifts\": 8891.30,\n \"withdrawals\": 5760.15\n },\n {\n \"active_users\": 2247,\n \"charges\": 8044.68,\n \"date\": \"2013-12-19\",\n \"total_gifts\": 252204.24,\n \"total_users\": 23552,\n \"weekly_gifts\": 9142.44,\n \"withdrawals\": 6757.06\n },\n {\n \"active_users\": 2228,\n \"charges\": 7494.41,\n \"date\": \"2013-12-12\",\n \"total_gifts\": 243061.80,\n \"total_users\": 23254,\n \"weekly_gifts\": 8696.20,\n \"withdrawals\": 4262.29\n },\n {\n \"active_users\": 2170,\n \"charges\": 7087.26,\n \"date\": \"2013-12-05\",\n \"total_gifts\": 234365.60,\n \"total_users\": 22968,\n \"weekly_gifts\": 8346.01,\n \"withdrawals\": 5216.02\n },\n {\n \"active_users\": 2141,\n \"charges\": 7097.47,\n \"date\": \"2013-11-28\",\n \"total_gifts\": 226019.59,\n \"total_users\": 22664,\n \"weekly_gifts\": 8173.25,\n \"withdrawals\": 3794.60\n },\n {\n \"active_users\": 2094,\n \"charges\": 7234.16,\n \"date\": \"2013-11-21\",\n \"total_gifts\": 217846.34,\n \"total_users\": 22401,\n \"weekly_gifts\": 8135.63,\n \"withdrawals\": 3972.16\n },\n {\n \"active_users\": 1993,\n \"charges\": 6591.48,\n \"date\": \"2013-11-14\",\n \"total_gifts\": 209710.71,\n \"total_users\": 21968,\n \"weekly_gifts\": 7461.77,\n \"withdrawals\": 3546.26\n },\n {\n \"active_users\": 1957,\n \"charges\": 6247.80,\n \"date\": \"2013-11-07\",\n \"total_gifts\": 202248.94,\n \"total_users\": 21638,\n \"weekly_gifts\": 7293.14,\n \"withdrawals\": 4032.30\n },\n {\n \"active_users\": 1909,\n \"charges\": 5565.28,\n \"date\": \"2013-10-31\",\n \"total_gifts\": 194955.80,\n \"total_users\": 21405,\n \"weekly_gifts\": 6619.16,\n \"withdrawals\": 2942.66\n },\n {\n \"active_users\": 1907,\n \"charges\": 6011.21,\n \"date\": \"2013-10-24\",\n \"total_gifts\": 188336.64,\n \"total_users\": 21130,\n \"weekly_gifts\": 6930.32,\n \"withdrawals\": 3585.33\n },\n {\n \"active_users\": 1866,\n \"charges\": 5710.93,\n \"date\": \"2013-10-17\",\n \"total_gifts\": 181406.32,\n \"total_users\": 20828,\n \"weekly_gifts\": 6594.63,\n \"withdrawals\": 2927.00\n },\n {\n \"active_users\": 1851,\n \"charges\": 5625.16,\n \"date\": \"2013-10-10\",\n \"total_gifts\": 174811.69,\n \"total_users\": 20600,\n \"weekly_gifts\": 6630.89,\n \"withdrawals\": 2766.60\n },\n {\n \"active_users\": 1825,\n \"charges\": 5475.93,\n \"date\": \"2013-10-03\",\n \"total_gifts\": 168180.80,\n \"total_users\": 20386,\n \"weekly_gifts\": 6401.60,\n \"withdrawals\": 2737.75\n },\n {\n \"active_users\": 1780,\n \"charges\": 5000.01,\n \"date\": \"2013-09-26\",\n \"total_gifts\": 161779.20,\n \"total_users\": 20149,\n \"weekly_gifts\": 5907.34,\n \"withdrawals\": 3440.16\n },\n {\n \"active_users\": 1761,\n \"charges\": 5373.74,\n \"date\": \"2013-09-19\",\n \"total_gifts\": 155871.86,\n \"total_users\": 19866,\n \"weekly_gifts\": 6052.72,\n \"withdrawals\": 2596.04\n },\n {\n \"active_users\": 1719,\n \"charges\": 4583.22,\n \"date\": \"2013-09-12\",\n \"total_gifts\": 149819.14,\n \"total_users\": 19596,\n \"weekly_gifts\": 5464.38,\n \"withdrawals\": 2246.96\n },\n {\n \"active_users\": 1709,\n \"charges\": 4972.77,\n \"date\": \"2013-09-05\",\n \"total_gifts\": 144354.76,\n \"total_users\": 19253,\n \"weekly_gifts\": 5768.64,\n \"withdrawals\": 2176.68\n },\n {\n \"active_users\": 1668,\n \"charges\": 4580.12,\n \"date\": \"2013-08-29\",\n \"total_gifts\": 138586.12,\n \"total_users\": 18882,\n \"weekly_gifts\": 5197.81,\n \"withdrawals\": 2909.46\n },\n {\n \"active_users\": 1608,\n \"charges\": 4818.22,\n \"date\": \"2013-08-22\",\n \"total_gifts\": 133388.31,\n \"total_users\": 18495,\n \"weekly_gifts\": 5322.65,\n \"withdrawals\": 2152.78\n },\n {\n \"active_users\": 1564,\n \"charges\": 4885.14,\n \"date\": \"2013-08-15\",\n \"total_gifts\": 128065.66,\n \"total_users\": 18247,\n \"weekly_gifts\": 5225.07,\n \"withdrawals\": 2083.57\n },\n {\n \"active_users\": 1465,\n \"charges\": 3910.39,\n \"date\": \"2013-08-08\",\n \"total_gifts\": 122840.59,\n \"total_users\": 17707,\n \"weekly_gifts\": 4358.61,\n \"withdrawals\": 1825.88\n },\n {\n \"active_users\": 1404,\n \"charges\": 3690.53,\n \"date\": \"2013-08-01\",\n \"total_gifts\": 118481.98,\n \"total_users\": 17324,\n \"weekly_gifts\": 4425.03,\n \"withdrawals\": 1928.64\n },\n {\n \"active_users\": 1347,\n \"charges\": 3591.77,\n \"date\": \"2013-07-25\",\n \"total_gifts\": 114056.95,\n \"total_users\": 17052,\n \"weekly_gifts\": 4427.93,\n \"withdrawals\": 1885.84\n },\n {\n \"active_users\": 1331,\n \"charges\": 3733.98,\n \"date\": \"2013-07-18\",\n \"total_gifts\": 109629.02,\n \"total_users\": 16707,\n \"weekly_gifts\": 4219.47,\n \"withdrawals\": 2095.21\n },\n {\n \"active_users\": 1281,\n \"charges\": 3404.34,\n \"date\": \"2013-07-11\",\n \"total_gifts\": 105409.55,\n \"total_users\": 15856,\n \"weekly_gifts\": 4213.72,\n \"withdrawals\": 1809.39\n },\n {\n \"active_users\": 1273,\n \"charges\": 3119.29,\n \"date\": \"2013-07-04\",\n \"total_gifts\": 101195.83,\n \"total_users\": 15456,\n \"weekly_gifts\": 4127.63,\n \"withdrawals\": 1849.21\n },\n {\n \"active_users\": 1254,\n \"charges\": 3298.75,\n \"date\": \"2013-06-27\",\n \"total_gifts\": 97068.20,\n \"total_users\": 15214,\n \"weekly_gifts\": 4110.90,\n \"withdrawals\": 1944.99\n },\n {\n \"active_users\": 1211,\n \"charges\": 3516.74,\n \"date\": \"2013-06-20\",\n \"total_gifts\": 92957.30,\n \"total_users\": 14886,\n \"weekly_gifts\": 4148.37,\n \"withdrawals\": 1885.73\n },\n {\n \"active_users\": 1200,\n \"charges\": 2829.78,\n \"date\": \"2013-06-13\",\n \"total_gifts\": 88808.93,\n \"total_users\": 14618,\n \"weekly_gifts\": 3584.21,\n \"withdrawals\": 1451.13\n },\n {\n \"active_users\": 1181,\n \"charges\": 2677.06,\n \"date\": \"2013-06-06\",\n \"total_gifts\": 85224.72,\n \"total_users\": 14254,\n \"weekly_gifts\": 3659.21,\n \"withdrawals\": 1673.18\n },\n {\n \"active_users\": 1146,\n \"charges\": 2931.48,\n \"date\": \"2013-05-30\",\n \"total_gifts\": 81565.51,\n \"total_users\": 13906,\n \"weekly_gifts\": 3391.71,\n \"withdrawals\": 1332.61\n },\n {\n \"active_users\": 1118,\n \"charges\": 2844.15,\n \"date\": \"2013-05-23\",\n \"total_gifts\": 78173.80,\n \"total_users\": 13527,\n \"weekly_gifts\": 3449.21,\n \"withdrawals\": 1471.32\n },\n {\n \"active_users\": 1092,\n \"charges\": 3258.74,\n \"date\": \"2013-05-16\",\n \"total_gifts\": 74724.59,\n \"total_users\": 12988,\n \"weekly_gifts\": 3371.13,\n \"withdrawals\": 2002.82\n },\n {\n \"active_users\": 1000,\n \"charges\": 2515.20,\n \"date\": \"2013-05-09\",\n \"total_gifts\": 71353.46,\n \"total_users\": 11742,\n \"weekly_gifts\": 2881.62,\n \"withdrawals\": 1295.46\n },\n {\n \"active_users\": 955,\n \"charges\": 2224.54,\n \"date\": \"2013-05-02\",\n \"total_gifts\": 68471.84,\n \"total_users\": 11324,\n \"weekly_gifts\": 2731.37,\n \"withdrawals\": 1418.33\n },\n {\n \"active_users\": 923,\n \"charges\": 2457.44,\n \"date\": \"2013-04-25\",\n \"total_gifts\": 65740.47,\n \"total_users\": 11004,\n \"weekly_gifts\": 2896.12,\n \"withdrawals\": 1311.13\n },\n {\n \"active_users\": 873,\n \"charges\": 2649.20,\n \"date\": \"2013-04-18\",\n \"total_gifts\": 62844.35,\n \"total_users\": 10666,\n \"weekly_gifts\": 2716.05,\n \"withdrawals\": 1315.96\n },\n {\n \"active_users\": 762,\n \"charges\": 2084.76,\n \"date\": \"2013-04-11\",\n \"total_gifts\": 60128.30,\n \"total_users\": 9739,\n \"weekly_gifts\": 2234.39,\n \"withdrawals\": 1083.94\n },\n {\n \"active_users\": 740,\n \"charges\": 1884.47,\n \"date\": \"2013-04-04\",\n \"total_gifts\": 57893.91,\n \"total_users\": 9531,\n \"weekly_gifts\": 2342.39,\n \"withdrawals\": 1160.06\n },\n {\n \"active_users\": 695,\n \"charges\": 2271.08,\n \"date\": \"2013-03-28\",\n \"total_gifts\": 55551.52,\n \"total_users\": 9314,\n \"weekly_gifts\": 2393.89,\n \"withdrawals\": 1365.47\n },\n {\n \"active_users\": 640,\n \"charges\": 2032.42,\n \"date\": \"2013-03-22\",\n \"total_gifts\": 53157.63,\n \"total_users\": 9076,\n \"weekly_gifts\": 2212.39,\n \"withdrawals\": 1359.50\n },\n {\n \"active_users\": 602,\n \"charges\": 1728.46,\n \"date\": \"2013-03-14\",\n \"total_gifts\": 50945.24,\n \"total_users\": 8846,\n \"weekly_gifts\": 2021.14,\n \"withdrawals\": 990.24\n },\n {\n \"active_users\": 583,\n \"charges\": 1711.26,\n \"date\": \"2013-03-07\",\n \"total_gifts\": 48924.10,\n \"total_users\": 8649,\n \"weekly_gifts\": 1933.14,\n \"withdrawals\": 896.71\n },\n {\n \"active_users\": 558,\n \"charges\": 1538.96,\n \"date\": \"2013-02-28\",\n \"total_gifts\": 46990.96,\n \"total_users\": 8482,\n \"weekly_gifts\": 1843.98,\n \"withdrawals\": 2975.45\n },\n {\n \"active_users\": 533,\n \"charges\": 1360.48,\n \"date\": \"2013-02-21\",\n \"total_gifts\": 45146.98,\n \"total_users\": 8288,\n \"weekly_gifts\": 1678.48,\n \"withdrawals\": 562.23\n },\n {\n \"active_users\": 515,\n \"charges\": 1493.25,\n \"date\": \"2013-02-14\",\n \"total_gifts\": 43468.50,\n \"total_users\": 8156,\n \"weekly_gifts\": 1730.06,\n \"withdrawals\": 2004.37\n },\n {\n \"active_users\": 457,\n \"charges\": 1483.76,\n \"date\": \"2013-02-07\",\n \"total_gifts\": 41738.44,\n \"total_users\": 7836,\n \"weekly_gifts\": 1623.88,\n \"withdrawals\": 1021.08\n },\n {\n \"active_users\": 455,\n \"charges\": 1320.61,\n \"date\": \"2013-01-31\",\n \"total_gifts\": 40114.56,\n \"total_users\": 7734,\n \"weekly_gifts\": 1542.88,\n \"withdrawals\": 590.64\n },\n {\n \"active_users\": 458,\n \"charges\": 1238.02,\n \"date\": \"2013-01-24\",\n \"total_gifts\": 38571.68,\n \"total_users\": 7641,\n \"weekly_gifts\": 1551.95,\n \"withdrawals\": 562.50\n },\n {\n \"active_users\": 456,\n \"charges\": 1477.38,\n \"date\": \"2013-01-17\",\n \"total_gifts\": 37019.73,\n \"total_users\": 7517,\n \"weekly_gifts\": 1506.70,\n \"withdrawals\": 602.69\n },\n {\n \"active_users\": 443,\n \"charges\": 1298.85,\n \"date\": \"2013-01-10\",\n \"total_gifts\": 35513.03,\n \"total_users\": 7336,\n \"weekly_gifts\": 1471.19,\n \"withdrawals\": 563.51\n },\n {\n \"active_users\": 432,\n \"charges\": 1241.60,\n \"date\": \"2013-01-03\",\n \"total_gifts\": 34041.84,\n \"total_users\": 7173,\n \"weekly_gifts\": 1425.24,\n \"withdrawals\": 526.02\n },\n {\n \"active_users\": 423,\n \"charges\": 1282.19,\n \"date\": \"2012-12-27\",\n \"total_gifts\": 32616.60,\n \"total_users\": 7088,\n \"weekly_gifts\": 1447.74,\n \"withdrawals\": 559.07\n },\n {\n \"active_users\": 429,\n \"charges\": 1350.72,\n \"date\": \"2012-12-20\",\n \"total_gifts\": 31168.86,\n \"total_users\": 7016,\n \"weekly_gifts\": 1457.02,\n \"withdrawals\": 529.42\n },\n {\n \"active_users\": 423,\n \"charges\": 1219.30,\n \"date\": \"2012-12-13\",\n \"total_gifts\": 29711.84,\n \"total_users\": 6882,\n \"weekly_gifts\": 1426.53,\n \"withdrawals\": 496.60\n },\n {\n \"active_users\": 419,\n \"charges\": 1272.94,\n \"date\": \"2012-12-06\",\n \"total_gifts\": 28285.31,\n \"total_users\": 6785,\n \"weekly_gifts\": 1372.61,\n \"withdrawals\": 305.03\n },\n {\n \"active_users\": 424,\n \"charges\": 1576.84,\n \"date\": \"2012-11-29\",\n \"total_gifts\": 26912.70,\n \"total_users\": 6660,\n \"weekly_gifts\": 1464.39,\n \"withdrawals\": 641.62\n },\n {\n \"active_users\": 431,\n \"charges\": 1207.69,\n \"date\": \"2012-11-22\",\n \"total_gifts\": 25448.31,\n \"total_users\": 6519,\n \"weekly_gifts\": 1491.89,\n \"withdrawals\": 606.30\n },\n {\n \"active_users\": 427,\n \"charges\": 1255.17,\n \"date\": \"2012-11-15\",\n \"total_gifts\": 23956.42,\n \"total_users\": 6427,\n \"weekly_gifts\": 1512.89,\n \"withdrawals\": 456.67\n },\n {\n \"active_users\": 429,\n \"charges\": 1385.79,\n \"date\": \"2012-11-08\",\n \"total_gifts\": 22443.53,\n \"total_users\": 6303,\n \"weekly_gifts\": 1529.61,\n \"withdrawals\": 429.02\n },\n {\n \"active_users\": 426,\n \"charges\": 1216.72,\n \"date\": \"2012-11-01\",\n \"total_gifts\": 20913.92,\n \"total_users\": 6099,\n \"weekly_gifts\": 1407.14,\n \"withdrawals\": 665.16\n },\n {\n \"active_users\": 433,\n \"charges\": 1405.33,\n \"date\": \"2012-10-25\",\n \"total_gifts\": 19506.78,\n \"total_users\": 6004,\n \"weekly_gifts\": 1602.72,\n \"withdrawals\": 567.02\n },\n {\n \"active_users\": 431,\n \"charges\": 1451.11,\n \"date\": \"2012-10-18\",\n \"total_gifts\": 17904.06,\n \"total_users\": 5879,\n \"weekly_gifts\": 1663.72,\n \"withdrawals\": 674.47\n },\n {\n \"active_users\": 432,\n \"charges\": 1390.08,\n \"date\": \"2012-10-11\",\n \"total_gifts\": 16240.34,\n \"total_users\": 5775,\n \"weekly_gifts\": 1667.59,\n \"withdrawals\": 631.64\n },\n {\n \"active_users\": 428,\n \"charges\": 1546.83,\n \"date\": \"2012-10-04\",\n \"total_gifts\": 14572.75,\n \"total_users\": 5654,\n \"weekly_gifts\": 1542.36,\n \"withdrawals\": 1236.98\n },\n {\n \"active_users\": 402,\n \"charges\": 1404.85,\n \"date\": \"2012-09-27\",\n \"total_gifts\": 13030.39,\n \"total_users\": 5308,\n \"weekly_gifts\": 1358.92,\n \"withdrawals\": 370.14\n },\n {\n \"active_users\": 370,\n \"charges\": 1109.73,\n \"date\": \"2012-09-20\",\n \"total_gifts\": 11671.47,\n \"total_users\": 4741,\n \"weekly_gifts\": 1261.82,\n \"withdrawals\": 307.90\n },\n {\n \"active_users\": 361,\n \"charges\": 1208.16,\n \"date\": \"2012-09-13\",\n \"total_gifts\": 10409.65,\n \"total_users\": 4639,\n \"weekly_gifts\": 1225.52,\n \"withdrawals\": 491.81\n },\n {\n \"active_users\": 343,\n \"charges\": 1084.32,\n \"date\": \"2012-09-06\",\n \"total_gifts\": 9184.13,\n \"total_users\": 4512,\n \"weekly_gifts\": 1174.43,\n \"withdrawals\": 309.34\n },\n {\n \"active_users\": 337,\n \"charges\": 914.85,\n \"date\": \"2012-08-31\",\n \"total_gifts\": 8009.70,\n \"total_users\": 4414,\n \"weekly_gifts\": 1127.43,\n \"withdrawals\": 931.37\n },\n {\n \"active_users\": 322,\n \"charges\": 1054.66,\n \"date\": \"2012-08-24\",\n \"total_gifts\": 6882.27,\n \"total_users\": 4176,\n \"weekly_gifts\": 1070.07,\n \"withdrawals\": 1147.50\n },\n {\n \"active_users\": 313,\n \"charges\": 964.40,\n \"date\": \"2012-08-17\",\n \"total_gifts\": 5812.20,\n \"total_users\": 4067,\n \"weekly_gifts\": 1052.09,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 298,\n \"charges\": 857.89,\n \"date\": \"2012-08-10\",\n \"total_gifts\": 4760.11,\n \"total_users\": 3971,\n \"weekly_gifts\": 1038.38,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 286,\n \"charges\": 986.37,\n \"date\": \"2012-08-03\",\n \"total_gifts\": 3721.73,\n \"total_users\": 3799,\n \"weekly_gifts\": 997.27,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 261,\n \"charges\": 1623.21,\n \"date\": \"2012-07-27\",\n \"total_gifts\": 2724.46,\n \"total_users\": 3536,\n \"weekly_gifts\": 955.53,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 191,\n \"charges\": 509.51,\n \"date\": \"2012-07-20\",\n \"total_gifts\": 1768.93,\n \"total_users\": 1894,\n \"weekly_gifts\": 600.99,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 176,\n \"charges\": 555.27,\n \"date\": \"2012-07-13\",\n \"total_gifts\": 1167.94,\n \"total_users\": 1695,\n \"weekly_gifts\": 615.66,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 130,\n \"charges\": 375.24,\n \"date\": \"2012-07-06\",\n \"total_gifts\": 552.28,\n \"total_users\": 1239,\n \"weekly_gifts\": 379.56,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 95,\n \"charges\": 111.00,\n \"date\": \"2012-06-29\",\n \"total_gifts\": 172.72,\n \"total_users\": 831,\n \"weekly_gifts\": 110.64,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 50,\n \"charges\": 25.29,\n \"date\": \"2012-06-22\",\n \"total_gifts\": 62.08,\n \"total_users\": 621,\n \"weekly_gifts\": 30.08,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 25,\n \"charges\": 2.05,\n \"date\": \"2012-06-15\",\n \"total_gifts\": 32.00,\n \"total_users\": 477,\n \"weekly_gifts\": 4.24,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 25,\n \"charges\": 25.28,\n \"date\": \"2012-06-08\",\n \"total_gifts\": 27.76,\n \"total_users\": 175,\n \"weekly_gifts\": 24.80,\n \"withdrawals\": 0.00\n }\n]"
68
+ "string": "[\n {\n \"active_users\": 2946,\n \"charges\": 11431.88,\n \"date\": \"2014-10-09\",\n \"total_gifts\": 770143.47,\n \"total_users\": 34436,\n \"weekly_gifts\": 13289.28,\n \"withdrawals\": 7024.35\n },\n {\n \"active_users\": 2936,\n \"charges\": 11446.52,\n \"date\": \"2014-10-02\",\n \"total_gifts\": 756854.19,\n \"total_users\": 34206,\n \"weekly_gifts\": 13485.29,\n \"withdrawals\": 7474.18\n },\n {\n \"active_users\": 2942,\n \"charges\": 11596.58,\n \"date\": \"2014-09-25\",\n \"total_gifts\": 743368.90,\n \"total_users\": 33925,\n \"weekly_gifts\": 13434.91,\n \"withdrawals\": 7021.80\n },\n {\n \"active_users\": 2931,\n \"charges\": 10776.10,\n \"date\": \"2014-09-18\",\n \"total_gifts\": 729933.99,\n \"total_users\": 33697,\n \"weekly_gifts\": 12986.51,\n \"withdrawals\": 6629.64\n },\n {\n \"active_users\": 2929,\n \"charges\": 11363.02,\n \"date\": \"2014-09-11\",\n \"total_gifts\": 716947.48,\n \"total_users\": 33488,\n \"weekly_gifts\": 13273.81,\n \"withdrawals\": 8483.10\n },\n {\n \"active_users\": 2962,\n \"charges\": 11587.52,\n \"date\": \"2014-09-04\",\n \"total_gifts\": 703673.67,\n \"total_users\": 33307,\n \"weekly_gifts\": 13342.69,\n \"withdrawals\": 8197.02\n },\n {\n \"active_users\": 2950,\n \"charges\": 11635.37,\n \"date\": \"2014-08-28\",\n \"total_gifts\": 690330.98,\n \"total_users\": 33064,\n \"weekly_gifts\": 13291.28,\n \"withdrawals\": 6810.18\n },\n {\n \"active_users\": 2892,\n \"charges\": 11463.34,\n \"date\": \"2014-08-21\",\n \"total_gifts\": 677039.70,\n \"total_users\": 32767,\n \"weekly_gifts\": 13317.50,\n \"withdrawals\": 7109.88\n },\n {\n \"active_users\": 2898,\n \"charges\": 11003.42,\n \"date\": \"2014-08-14\",\n \"total_gifts\": 663722.20,\n \"total_users\": 32438,\n \"weekly_gifts\": 12961.75,\n \"withdrawals\": 7339.02\n },\n {\n \"active_users\": 2859,\n \"charges\": 11183.88,\n \"date\": \"2014-08-07\",\n \"total_gifts\": 650760.45,\n \"total_users\": 32173,\n \"weekly_gifts\": 13076.49,\n \"withdrawals\": 6486.50\n },\n {\n \"active_users\": 2856,\n \"charges\": 11070.58,\n \"date\": \"2014-07-31\",\n \"total_gifts\": 637683.96,\n \"total_users\": 31864,\n \"weekly_gifts\": 13219.47,\n \"withdrawals\": 7136.00\n },\n {\n \"active_users\": 2842,\n \"charges\": 10443.89,\n \"date\": \"2014-07-24\",\n \"total_gifts\": 624464.49,\n \"total_users\": 31549,\n \"weekly_gifts\": 12491.36,\n \"withdrawals\": 6830.63\n },\n {\n \"active_users\": 2822,\n \"charges\": 11014.79,\n \"date\": \"2014-07-17\",\n \"total_gifts\": 611973.13,\n \"total_users\": 31288,\n \"weekly_gifts\": 12257.05,\n \"withdrawals\": 7113.93\n },\n {\n \"active_users\": 2829,\n \"charges\": 10866.01,\n \"date\": \"2014-07-10\",\n \"total_gifts\": 599716.08,\n \"total_users\": 31079,\n \"weekly_gifts\": 11896.05,\n \"withdrawals\": 6544.67\n },\n {\n \"active_users\": 2831,\n \"charges\": 10750.50,\n \"date\": \"2014-07-03\",\n \"total_gifts\": 587820.03,\n \"total_users\": 30882,\n \"weekly_gifts\": 11603.19,\n \"withdrawals\": 6575.12\n },\n {\n \"active_users\": 2874,\n \"charges\": 10624.88,\n \"date\": \"2014-06-26\",\n \"total_gifts\": 576216.84,\n \"total_users\": 30707,\n \"weekly_gifts\": 11728.71,\n \"withdrawals\": 8153.71\n },\n {\n \"active_users\": 2999,\n \"charges\": 12480.60,\n \"date\": \"2014-06-19\",\n \"total_gifts\": 564488.13,\n \"total_users\": 30611,\n \"weekly_gifts\": 14136.16,\n \"withdrawals\": 7671.08\n },\n {\n \"active_users\": 2992,\n \"charges\": 12555.86,\n \"date\": \"2014-06-12\",\n \"total_gifts\": 550351.97,\n \"total_users\": 30349,\n \"weekly_gifts\": 13525.28,\n \"withdrawals\": 7104.33\n },\n {\n \"active_users\": 2933,\n \"charges\": 10568.87,\n \"date\": \"2014-06-05\",\n \"total_gifts\": 536826.69,\n \"total_users\": 30942,\n \"weekly_gifts\": 12326.34,\n \"withdrawals\": 6398.39\n },\n {\n \"active_users\": 2943,\n \"charges\": 11804.40,\n \"date\": \"2014-05-29\",\n \"total_gifts\": 524500.35,\n \"total_users\": 30512,\n \"weekly_gifts\": 13372.35,\n \"withdrawals\": 7262.22\n },\n {\n \"active_users\": 2916,\n \"charges\": 12141.08,\n \"date\": \"2014-05-22\",\n \"total_gifts\": 511128.00,\n \"total_users\": 30253,\n \"weekly_gifts\": 13419.67,\n \"withdrawals\": 7291.68\n },\n {\n \"active_users\": 2887,\n \"charges\": 11887.97,\n \"date\": \"2014-05-15\",\n \"total_gifts\": 497708.33,\n \"total_users\": 29927,\n \"weekly_gifts\": 13443.64,\n \"withdrawals\": 7860.46\n },\n {\n \"active_users\": 2853,\n \"charges\": 11973.64,\n \"date\": \"2014-05-08\",\n \"total_gifts\": 484264.69,\n \"total_users\": 29626,\n \"weekly_gifts\": 13437.70,\n \"withdrawals\": 7644.24\n },\n {\n \"active_users\": 2802,\n \"charges\": 12019.00,\n \"date\": \"2014-05-01\",\n \"total_gifts\": 470826.99,\n \"total_users\": 29320,\n \"weekly_gifts\": 13275.02,\n \"withdrawals\": 6398.65\n },\n {\n \"active_users\": 2758,\n \"charges\": 11685.49,\n \"date\": \"2014-04-24\",\n \"total_gifts\": 457551.97,\n \"total_users\": 29015,\n \"weekly_gifts\": 13120.14,\n \"withdrawals\": 6614.89\n },\n {\n \"active_users\": 2718,\n \"charges\": 10625.45,\n \"date\": \"2014-04-17\",\n \"total_gifts\": 444431.83,\n \"total_users\": 28650,\n \"weekly_gifts\": 12399.97,\n \"withdrawals\": 6951.54\n },\n {\n \"active_users\": 2723,\n \"charges\": 11079.68,\n \"date\": \"2014-04-10\",\n \"total_gifts\": 432031.86,\n \"total_users\": 28379,\n \"weekly_gifts\": 12770.78,\n \"withdrawals\": 6201.57\n },\n {\n \"active_users\": 2715,\n \"charges\": 11001.22,\n \"date\": \"2014-04-03\",\n \"total_gifts\": 419261.08,\n \"total_users\": 28146,\n \"weekly_gifts\": 12770.27,\n \"withdrawals\": 5828.38\n },\n {\n \"active_users\": 2696,\n \"charges\": 11254.43,\n \"date\": \"2014-03-27\",\n \"total_gifts\": 406490.81,\n \"total_users\": 27860,\n \"weekly_gifts\": 12747.74,\n \"withdrawals\": 6235.15\n },\n {\n \"active_users\": 2664,\n \"charges\": 11183.69,\n \"date\": \"2014-03-20\",\n \"total_gifts\": 393743.07,\n \"total_users\": 27548,\n \"weekly_gifts\": 12664.49,\n \"withdrawals\": 6012.52\n },\n {\n \"active_users\": 2657,\n \"charges\": 10943.74,\n \"date\": \"2014-03-13\",\n \"total_gifts\": 381078.58,\n \"total_users\": 27294,\n \"weekly_gifts\": 12257.50,\n \"withdrawals\": 5990.10\n },\n {\n \"active_users\": 2655,\n \"charges\": 10475.01,\n \"date\": \"2014-03-06\",\n \"total_gifts\": 368821.08,\n \"total_users\": 27036,\n \"weekly_gifts\": 12185.15,\n \"withdrawals\": 6522.65\n },\n {\n \"active_users\": 2605,\n \"charges\": 10961.88,\n \"date\": \"2014-02-27\",\n \"total_gifts\": 356635.93,\n \"total_users\": 26757,\n \"weekly_gifts\": 12140.45,\n \"withdrawals\": 5685.59\n },\n {\n \"active_users\": 2561,\n \"charges\": 10736.00,\n \"date\": \"2014-02-20\",\n \"total_gifts\": 344495.48,\n \"total_users\": 26375,\n \"weekly_gifts\": 11998.53,\n \"withdrawals\": 5597.80\n },\n {\n \"active_users\": 2486,\n \"charges\": 10228.48,\n \"date\": \"2014-02-13\",\n \"total_gifts\": 332496.95,\n \"total_users\": 25835,\n \"weekly_gifts\": 11683.23,\n \"withdrawals\": 5572.35\n },\n {\n \"active_users\": 2433,\n \"charges\": 9787.89,\n \"date\": \"2014-02-06\",\n \"total_gifts\": 320813.72,\n \"total_users\": 25478,\n \"weekly_gifts\": 10931.53,\n \"withdrawals\": 5067.17\n },\n {\n \"active_users\": 2376,\n \"charges\": 9548.17,\n \"date\": \"2014-01-30\",\n \"total_gifts\": 309882.19,\n \"total_users\": 25168,\n \"weekly_gifts\": 10663.52,\n \"withdrawals\": 5335.69\n },\n {\n \"active_users\": 2351,\n \"charges\": 8894.99,\n \"date\": \"2014-01-23\",\n \"total_gifts\": 299218.67,\n \"total_users\": 24894,\n \"weekly_gifts\": 10303.19,\n \"withdrawals\": 5280.30\n },\n {\n \"active_users\": 2325,\n \"charges\": 8801.85,\n \"date\": \"2014-01-16\",\n \"total_gifts\": 288915.48,\n \"total_users\": 24591,\n \"weekly_gifts\": 10084.65,\n \"withdrawals\": 4635.02\n },\n {\n \"active_users\": 2298,\n \"charges\": 7795.94,\n \"date\": \"2014-01-09\",\n \"total_gifts\": 278830.83,\n \"total_users\": 24239,\n \"weekly_gifts\": 9049.38,\n \"withdrawals\": 5609.08\n },\n {\n \"active_users\": 2289,\n \"charges\": 7236.75,\n \"date\": \"2014-01-02\",\n \"total_gifts\": 269781.45,\n \"total_users\": 23973,\n \"weekly_gifts\": 8685.91,\n \"withdrawals\": 4580.04\n },\n {\n \"active_users\": 2261,\n \"charges\": 7725.38,\n \"date\": \"2013-12-26\",\n \"total_gifts\": 261095.54,\n \"total_users\": 23735,\n \"weekly_gifts\": 8891.30,\n \"withdrawals\": 5760.15\n },\n {\n \"active_users\": 2247,\n \"charges\": 8044.68,\n \"date\": \"2013-12-19\",\n \"total_gifts\": 252204.24,\n \"total_users\": 23552,\n \"weekly_gifts\": 9142.44,\n \"withdrawals\": 6757.06\n },\n {\n \"active_users\": 2228,\n \"charges\": 7494.41,\n \"date\": \"2013-12-12\",\n \"total_gifts\": 243061.80,\n \"total_users\": 23254,\n \"weekly_gifts\": 8696.20,\n \"withdrawals\": 4262.29\n },\n {\n \"active_users\": 2170,\n \"charges\": 7087.26,\n \"date\": \"2013-12-05\",\n \"total_gifts\": 234365.60,\n \"total_users\": 22968,\n \"weekly_gifts\": 8346.01,\n \"withdrawals\": 5216.02\n },\n {\n \"active_users\": 2141,\n \"charges\": 7097.47,\n \"date\": \"2013-11-28\",\n \"total_gifts\": 226019.59,\n \"total_users\": 22664,\n \"weekly_gifts\": 8173.25,\n \"withdrawals\": 3794.60\n },\n {\n \"active_users\": 2094,\n \"charges\": 7234.16,\n \"date\": \"2013-11-21\",\n \"total_gifts\": 217846.34,\n \"total_users\": 22401,\n \"weekly_gifts\": 8135.63,\n \"withdrawals\": 3972.16\n },\n {\n \"active_users\": 1993,\n \"charges\": 6591.48,\n \"date\": \"2013-11-14\",\n \"total_gifts\": 209710.71,\n \"total_users\": 21968,\n \"weekly_gifts\": 7461.77,\n \"withdrawals\": 3546.26\n },\n {\n \"active_users\": 1957,\n \"charges\": 6247.80,\n \"date\": \"2013-11-07\",\n \"total_gifts\": 202248.94,\n \"total_users\": 21638,\n \"weekly_gifts\": 7293.14,\n \"withdrawals\": 4032.30\n },\n {\n \"active_users\": 1909,\n \"charges\": 5565.28,\n \"date\": \"2013-10-31\",\n \"total_gifts\": 194955.80,\n \"total_users\": 21405,\n \"weekly_gifts\": 6619.16,\n \"withdrawals\": 2942.66\n },\n {\n \"active_users\": 1907,\n \"charges\": 6011.21,\n \"date\": \"2013-10-24\",\n \"total_gifts\": 188336.64,\n \"total_users\": 21130,\n \"weekly_gifts\": 6930.32,\n \"withdrawals\": 3585.33\n },\n {\n \"active_users\": 1866,\n \"charges\": 5710.93,\n \"date\": \"2013-10-17\",\n \"total_gifts\": 181406.32,\n \"total_users\": 20828,\n \"weekly_gifts\": 6594.63,\n \"withdrawals\": 2927.00\n },\n {\n \"active_users\": 1851,\n \"charges\": 5625.16,\n \"date\": \"2013-10-10\",\n \"total_gifts\": 174811.69,\n \"total_users\": 20600,\n \"weekly_gifts\": 6630.89,\n \"withdrawals\": 2766.60\n },\n {\n \"active_users\": 1825,\n \"charges\": 5475.93,\n \"date\": \"2013-10-03\",\n \"total_gifts\": 168180.80,\n \"total_users\": 20386,\n \"weekly_gifts\": 6401.60,\n \"withdrawals\": 2737.75\n },\n {\n \"active_users\": 1780,\n \"charges\": 5000.01,\n \"date\": \"2013-09-26\",\n \"total_gifts\": 161779.20,\n \"total_users\": 20149,\n \"weekly_gifts\": 5907.34,\n \"withdrawals\": 3440.16\n },\n {\n \"active_users\": 1761,\n \"charges\": 5373.74,\n \"date\": \"2013-09-19\",\n \"total_gifts\": 155871.86,\n \"total_users\": 19866,\n \"weekly_gifts\": 6052.72,\n \"withdrawals\": 2596.04\n },\n {\n \"active_users\": 1719,\n \"charges\": 4583.22,\n \"date\": \"2013-09-12\",\n \"total_gifts\": 149819.14,\n \"total_users\": 19596,\n \"weekly_gifts\": 5464.38,\n \"withdrawals\": 2246.96\n },\n {\n \"active_users\": 1709,\n \"charges\": 4972.77,\n \"date\": \"2013-09-05\",\n \"total_gifts\": 144354.76,\n \"total_users\": 19253,\n \"weekly_gifts\": 5768.64,\n \"withdrawals\": 2176.68\n },\n {\n \"active_users\": 1668,\n \"charges\": 4580.12,\n \"date\": \"2013-08-29\",\n \"total_gifts\": 138586.12,\n \"total_users\": 18882,\n \"weekly_gifts\": 5197.81,\n \"withdrawals\": 2909.46\n },\n {\n \"active_users\": 1608,\n \"charges\": 4818.22,\n \"date\": \"2013-08-22\",\n \"total_gifts\": 133388.31,\n \"total_users\": 18495,\n \"weekly_gifts\": 5322.65,\n \"withdrawals\": 2152.78\n },\n {\n \"active_users\": 1564,\n \"charges\": 4885.14,\n \"date\": \"2013-08-15\",\n \"total_gifts\": 128065.66,\n \"total_users\": 18247,\n \"weekly_gifts\": 5225.07,\n \"withdrawals\": 2083.57\n },\n {\n \"active_users\": 1465,\n \"charges\": 3910.39,\n \"date\": \"2013-08-08\",\n \"total_gifts\": 122840.59,\n \"total_users\": 17707,\n \"weekly_gifts\": 4358.61,\n \"withdrawals\": 1825.88\n },\n {\n \"active_users\": 1404,\n \"charges\": 3690.53,\n \"date\": \"2013-08-01\",\n \"total_gifts\": 118481.98,\n \"total_users\": 17324,\n \"weekly_gifts\": 4425.03,\n \"withdrawals\": 1928.64\n },\n {\n \"active_users\": 1347,\n \"charges\": 3591.77,\n \"date\": \"2013-07-25\",\n \"total_gifts\": 114056.95,\n \"total_users\": 17052,\n \"weekly_gifts\": 4427.93,\n \"withdrawals\": 1885.84\n },\n {\n \"active_users\": 1331,\n \"charges\": 3733.98,\n \"date\": \"2013-07-18\",\n \"total_gifts\": 109629.02,\n \"total_users\": 16707,\n \"weekly_gifts\": 4219.47,\n \"withdrawals\": 2095.21\n },\n {\n \"active_users\": 1281,\n \"charges\": 3404.34,\n \"date\": \"2013-07-11\",\n \"total_gifts\": 105409.55,\n \"total_users\": 15856,\n \"weekly_gifts\": 4213.72,\n \"withdrawals\": 1809.39\n },\n {\n \"active_users\": 1273,\n \"charges\": 3119.29,\n \"date\": \"2013-07-04\",\n \"total_gifts\": 101195.83,\n \"total_users\": 15456,\n \"weekly_gifts\": 4127.63,\n \"withdrawals\": 1849.21\n },\n {\n \"active_users\": 1254,\n \"charges\": 3298.75,\n \"date\": \"2013-06-27\",\n \"total_gifts\": 97068.20,\n \"total_users\": 15214,\n \"weekly_gifts\": 4110.90,\n \"withdrawals\": 1944.99\n },\n {\n \"active_users\": 1211,\n \"charges\": 3516.74,\n \"date\": \"2013-06-20\",\n \"total_gifts\": 92957.30,\n \"total_users\": 14886,\n \"weekly_gifts\": 4148.37,\n \"withdrawals\": 1885.73\n },\n {\n \"active_users\": 1200,\n \"charges\": 2829.78,\n \"date\": \"2013-06-13\",\n \"total_gifts\": 88808.93,\n \"total_users\": 14618,\n \"weekly_gifts\": 3584.21,\n \"withdrawals\": 1451.13\n },\n {\n \"active_users\": 1181,\n \"charges\": 2677.06,\n \"date\": \"2013-06-06\",\n \"total_gifts\": 85224.72,\n \"total_users\": 14254,\n \"weekly_gifts\": 3659.21,\n \"withdrawals\": 1673.18\n },\n {\n \"active_users\": 1146,\n \"charges\": 2931.48,\n \"date\": \"2013-05-30\",\n \"total_gifts\": 81565.51,\n \"total_users\": 13906,\n \"weekly_gifts\": 3391.71,\n \"withdrawals\": 1332.61\n },\n {\n \"active_users\": 1118,\n \"charges\": 2844.15,\n \"date\": \"2013-05-23\",\n \"total_gifts\": 78173.80,\n \"total_users\": 13527,\n \"weekly_gifts\": 3449.21,\n \"withdrawals\": 1471.32\n },\n {\n \"active_users\": 1092,\n \"charges\": 3258.74,\n \"date\": \"2013-05-16\",\n \"total_gifts\": 74724.59,\n \"total_users\": 12988,\n \"weekly_gifts\": 3371.13,\n \"withdrawals\": 2002.82\n },\n {\n \"active_users\": 1000,\n \"charges\": 2515.20,\n \"date\": \"2013-05-09\",\n \"total_gifts\": 71353.46,\n \"total_users\": 11742,\n \"weekly_gifts\": 2881.62,\n \"withdrawals\": 1295.46\n },\n {\n \"active_users\": 955,\n \"charges\": 2224.54,\n \"date\": \"2013-05-02\",\n \"total_gifts\": 68471.84,\n \"total_users\": 11324,\n \"weekly_gifts\": 2731.37,\n \"withdrawals\": 1418.33\n },\n {\n \"active_users\": 923,\n \"charges\": 2457.44,\n \"date\": \"2013-04-25\",\n \"total_gifts\": 65740.47,\n \"total_users\": 11004,\n \"weekly_gifts\": 2896.12,\n \"withdrawals\": 1311.13\n },\n {\n \"active_users\": 873,\n \"charges\": 2649.20,\n \"date\": \"2013-04-18\",\n \"total_gifts\": 62844.35,\n \"total_users\": 10666,\n \"weekly_gifts\": 2716.05,\n \"withdrawals\": 1315.96\n },\n {\n \"active_users\": 762,\n \"charges\": 2084.76,\n \"date\": \"2013-04-11\",\n \"total_gifts\": 60128.30,\n \"total_users\": 9739,\n \"weekly_gifts\": 2234.39,\n \"withdrawals\": 1083.94\n },\n {\n \"active_users\": 740,\n \"charges\": 1884.47,\n \"date\": \"2013-04-04\",\n \"total_gifts\": 57893.91,\n \"total_users\": 9531,\n \"weekly_gifts\": 2342.39,\n \"withdrawals\": 1160.06\n },\n {\n \"active_users\": 695,\n \"charges\": 2271.08,\n \"date\": \"2013-03-28\",\n \"total_gifts\": 55551.52,\n \"total_users\": 9314,\n \"weekly_gifts\": 2393.89,\n \"withdrawals\": 1365.47\n },\n {\n \"active_users\": 640,\n \"charges\": 2032.42,\n \"date\": \"2013-03-22\",\n \"total_gifts\": 53157.63,\n \"total_users\": 9076,\n \"weekly_gifts\": 2212.39,\n \"withdrawals\": 1359.50\n },\n {\n \"active_users\": 602,\n \"charges\": 1728.46,\n \"date\": \"2013-03-14\",\n \"total_gifts\": 50945.24,\n \"total_users\": 8846,\n \"weekly_gifts\": 2021.14,\n \"withdrawals\": 990.24\n },\n {\n \"active_users\": 583,\n \"charges\": 1711.26,\n \"date\": \"2013-03-07\",\n \"total_gifts\": 48924.10,\n \"total_users\": 8649,\n \"weekly_gifts\": 1933.14,\n \"withdrawals\": 896.71\n },\n {\n \"active_users\": 558,\n \"charges\": 1538.96,\n \"date\": \"2013-02-28\",\n \"total_gifts\": 46990.96,\n \"total_users\": 8482,\n \"weekly_gifts\": 1843.98,\n \"withdrawals\": 2975.45\n },\n {\n \"active_users\": 533,\n \"charges\": 1360.48,\n \"date\": \"2013-02-21\",\n \"total_gifts\": 45146.98,\n \"total_users\": 8288,\n \"weekly_gifts\": 1678.48,\n \"withdrawals\": 562.23\n },\n {\n \"active_users\": 515,\n \"charges\": 1493.25,\n \"date\": \"2013-02-14\",\n \"total_gifts\": 43468.50,\n \"total_users\": 8156,\n \"weekly_gifts\": 1730.06,\n \"withdrawals\": 2004.37\n },\n {\n \"active_users\": 457,\n \"charges\": 1483.76,\n \"date\": \"2013-02-07\",\n \"total_gifts\": 41738.44,\n \"total_users\": 7836,\n \"weekly_gifts\": 1623.88,\n \"withdrawals\": 1021.08\n },\n {\n \"active_users\": 455,\n \"charges\": 1320.61,\n \"date\": \"2013-01-31\",\n \"total_gifts\": 40114.56,\n \"total_users\": 7734,\n \"weekly_gifts\": 1542.88,\n \"withdrawals\": 590.64\n },\n {\n \"active_users\": 458,\n \"charges\": 1238.02,\n \"date\": \"2013-01-24\",\n \"total_gifts\": 38571.68,\n \"total_users\": 7641,\n \"weekly_gifts\": 1551.95,\n \"withdrawals\": 562.50\n },\n {\n \"active_users\": 456,\n \"charges\": 1477.38,\n \"date\": \"2013-01-17\",\n \"total_gifts\": 37019.73,\n \"total_users\": 7517,\n \"weekly_gifts\": 1506.70,\n \"withdrawals\": 602.69\n },\n {\n \"active_users\": 443,\n \"charges\": 1298.85,\n \"date\": \"2013-01-10\",\n \"total_gifts\": 35513.03,\n \"total_users\": 7336,\n \"weekly_gifts\": 1471.19,\n \"withdrawals\": 563.51\n },\n {\n \"active_users\": 432,\n \"charges\": 1241.60,\n \"date\": \"2013-01-03\",\n \"total_gifts\": 34041.84,\n \"total_users\": 7173,\n \"weekly_gifts\": 1425.24,\n \"withdrawals\": 526.02\n },\n {\n \"active_users\": 423,\n \"charges\": 1282.19,\n \"date\": \"2012-12-27\",\n \"total_gifts\": 32616.60,\n \"total_users\": 7088,\n \"weekly_gifts\": 1447.74,\n \"withdrawals\": 559.07\n },\n {\n \"active_users\": 429,\n \"charges\": 1350.72,\n \"date\": \"2012-12-20\",\n \"total_gifts\": 31168.86,\n \"total_users\": 7016,\n \"weekly_gifts\": 1457.02,\n \"withdrawals\": 529.42\n },\n {\n \"active_users\": 423,\n \"charges\": 1219.30,\n \"date\": \"2012-12-13\",\n \"total_gifts\": 29711.84,\n \"total_users\": 6882,\n \"weekly_gifts\": 1426.53,\n \"withdrawals\": 496.60\n },\n {\n \"active_users\": 419,\n \"charges\": 1272.94,\n \"date\": \"2012-12-06\",\n \"total_gifts\": 28285.31,\n \"total_users\": 6785,\n \"weekly_gifts\": 1372.61,\n \"withdrawals\": 305.03\n },\n {\n \"active_users\": 424,\n \"charges\": 1576.84,\n \"date\": \"2012-11-29\",\n \"total_gifts\": 26912.70,\n \"total_users\": 6660,\n \"weekly_gifts\": 1464.39,\n \"withdrawals\": 641.62\n },\n {\n \"active_users\": 431,\n \"charges\": 1207.69,\n \"date\": \"2012-11-22\",\n \"total_gifts\": 25448.31,\n \"total_users\": 6519,\n \"weekly_gifts\": 1491.89,\n \"withdrawals\": 606.30\n },\n {\n \"active_users\": 427,\n \"charges\": 1255.17,\n \"date\": \"2012-11-15\",\n \"total_gifts\": 23956.42,\n \"total_users\": 6427,\n \"weekly_gifts\": 1512.89,\n \"withdrawals\": 456.67\n },\n {\n \"active_users\": 429,\n \"charges\": 1385.79,\n \"date\": \"2012-11-08\",\n \"total_gifts\": 22443.53,\n \"total_users\": 6303,\n \"weekly_gifts\": 1529.61,\n \"withdrawals\": 429.02\n },\n {\n \"active_users\": 426,\n \"charges\": 1216.72,\n \"date\": \"2012-11-01\",\n \"total_gifts\": 20913.92,\n \"total_users\": 6099,\n \"weekly_gifts\": 1407.14,\n \"withdrawals\": 665.16\n },\n {\n \"active_users\": 433,\n \"charges\": 1405.33,\n \"date\": \"2012-10-25\",\n \"total_gifts\": 19506.78,\n \"total_users\": 6004,\n \"weekly_gifts\": 1602.72,\n \"withdrawals\": 567.02\n },\n {\n \"active_users\": 431,\n \"charges\": 1451.11,\n \"date\": \"2012-10-18\",\n \"total_gifts\": 17904.06,\n \"total_users\": 5879,\n \"weekly_gifts\": 1663.72,\n \"withdrawals\": 674.47\n },\n {\n \"active_users\": 432,\n \"charges\": 1390.08,\n \"date\": \"2012-10-11\",\n \"total_gifts\": 16240.34,\n \"total_users\": 5775,\n \"weekly_gifts\": 1667.59,\n \"withdrawals\": 631.64\n },\n {\n \"active_users\": 428,\n \"charges\": 1546.83,\n \"date\": \"2012-10-04\",\n \"total_gifts\": 14572.75,\n \"total_users\": 5654,\n \"weekly_gifts\": 1542.36,\n \"withdrawals\": 1236.98\n },\n {\n \"active_users\": 402,\n \"charges\": 1404.85,\n \"date\": \"2012-09-27\",\n \"total_gifts\": 13030.39,\n \"total_users\": 5308,\n \"weekly_gifts\": 1358.92,\n \"withdrawals\": 370.14\n },\n {\n \"active_users\": 370,\n \"charges\": 1109.73,\n \"date\": \"2012-09-20\",\n \"total_gifts\": 11671.47,\n \"total_users\": 4741,\n \"weekly_gifts\": 1261.82,\n \"withdrawals\": 307.90\n },\n {\n \"active_users\": 361,\n \"charges\": 1208.16,\n \"date\": \"2012-09-13\",\n \"total_gifts\": 10409.65,\n \"total_users\": 4639,\n \"weekly_gifts\": 1225.52,\n \"withdrawals\": 491.81\n },\n {\n \"active_users\": 343,\n \"charges\": 1084.32,\n \"date\": \"2012-09-06\",\n \"total_gifts\": 9184.13,\n \"total_users\": 4512,\n \"weekly_gifts\": 1174.43,\n \"withdrawals\": 309.34\n },\n {\n \"active_users\": 337,\n \"charges\": 914.85,\n \"date\": \"2012-08-31\",\n \"total_gifts\": 8009.70,\n \"total_users\": 4414,\n \"weekly_gifts\": 1127.43,\n \"withdrawals\": 931.37\n },\n {\n \"active_users\": 322,\n \"charges\": 1054.66,\n \"date\": \"2012-08-24\",\n \"total_gifts\": 6882.27,\n \"total_users\": 4176,\n \"weekly_gifts\": 1070.07,\n \"withdrawals\": 1147.50\n },\n {\n \"active_users\": 313,\n \"charges\": 964.40,\n \"date\": \"2012-08-17\",\n \"total_gifts\": 5812.20,\n \"total_users\": 4067,\n \"weekly_gifts\": 1052.09,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 298,\n \"charges\": 857.89,\n \"date\": \"2012-08-10\",\n \"total_gifts\": 4760.11,\n \"total_users\": 3971,\n \"weekly_gifts\": 1038.38,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 286,\n \"charges\": 986.37,\n \"date\": \"2012-08-03\",\n \"total_gifts\": 3721.73,\n \"total_users\": 3799,\n \"weekly_gifts\": 997.27,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 261,\n \"charges\": 1623.21,\n \"date\": \"2012-07-27\",\n \"total_gifts\": 2724.46,\n \"total_users\": 3536,\n \"weekly_gifts\": 955.53,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 191,\n \"charges\": 509.51,\n \"date\": \"2012-07-20\",\n \"total_gifts\": 1768.93,\n \"total_users\": 1894,\n \"weekly_gifts\": 600.99,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 176,\n \"charges\": 555.27,\n \"date\": \"2012-07-13\",\n \"total_gifts\": 1167.94,\n \"total_users\": 1695,\n \"weekly_gifts\": 615.66,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 130,\n \"charges\": 375.24,\n \"date\": \"2012-07-06\",\n \"total_gifts\": 552.28,\n \"total_users\": 1239,\n \"weekly_gifts\": 379.56,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 95,\n \"charges\": 111.00,\n \"date\": \"2012-06-29\",\n \"total_gifts\": 172.72,\n \"total_users\": 831,\n \"weekly_gifts\": 110.64,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 50,\n \"charges\": 25.29,\n \"date\": \"2012-06-22\",\n \"total_gifts\": 62.08,\n \"total_users\": 621,\n \"weekly_gifts\": 30.08,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 25,\n \"charges\": 2.05,\n \"date\": \"2012-06-15\",\n \"total_gifts\": 32.00,\n \"total_users\": 477,\n \"weekly_gifts\": 4.24,\n \"withdrawals\": 0.00\n },\n {\n \"active_users\": 25,\n \"charges\": 25.28,\n \"date\": \"2012-06-08\",\n \"total_gifts\": 27.76,\n \"total_users\": 175,\n \"weekly_gifts\": 24.80,\n \"withdrawals\": 0.00\n }\n]"
69
69
  },
70
70
  "http_version": null
71
71
  },
72
- "recorded_at": "Sat, 17 May 2014 00:13:19 GMT"
72
+ "recorded_at": "Mon, 13 Oct 2014 21:02:13 GMT"
73
73
  }
74
74
  ],
75
- "recorded_with": "VCR 2.9.0"
76
- }
75
+ "recorded_with": "VCR 2.9.2"
76
+ }
@@ -3,14 +3,14 @@
3
3
  {
4
4
  "request": {
5
5
  "method": "post",
6
- "uri": "https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@www.gittip.com/gratitude_test/tips.json",
6
+ "uri": "https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@gratipay.com/gratitude_test/tips.json",
7
7
  "body": {
8
8
  "encoding": "UTF-8",
9
- "string": "[{\"amount\":\"1.00\",\"platform\":\"gittip\",\"username\":\"whit537\"},{\"amount\":\"0.25\",\"platform\":\"gittip\",\"username\":\"JohnKellyFerguson\"}]"
9
+ "string": "[{\"amount\":\"1.00\",\"platform\":\"gratipay\",\"username\":\"whit537\"},{\"amount\":\"0.25\",\"platform\":\"gratipay\",\"username\":\"JohnKellyFerguson\"}]"
10
10
  },
11
11
  "headers": {
12
12
  "User-Agent": [
13
- "Faraday v0.8.9"
13
+ "Faraday v0.9.0"
14
14
  ],
15
15
  "Accept-Encoding": [
16
16
  "gzip;q=1.0,deflate;q=0.6,identity;q=0.3"
@@ -33,17 +33,16 @@
33
33
  "application/json"
34
34
  ],
35
35
  "Date": [
36
- "Sat, 17 May 2014 00:14:04 GMT"
36
+ "Mon, 13 Oct 2014 20:40:39 GMT"
37
37
  ],
38
38
  "Expires": [
39
39
  "Thu, 01 Jan 1970 00:00:00 GMT"
40
40
  ],
41
41
  "Server": [
42
- "Aspen! Cheroot!"
42
+ "gunicorn/18.0"
43
43
  ],
44
44
  "Set-Cookie": [
45
- "csrf_token=d8tYvYEFTIm6bAwqdj1ihyLTR6sQKAPk; expires=Sat, 24 May 2014 00:14:04 GMT; Path=/",
46
- "session=456dbf6a2d524e72ae45bc72ff8e8378; expires=Sat, 24 May 2014 00:14:04 GMT; httponly; Path=/; secure"
45
+ "csrf_token=Lh8JxukUnKOQCBCKKfqKSvuLIPIujdfP; expires=Mon, 20 Oct 2014 20:40:39 GMT; Path=/; secure"
47
46
  ],
48
47
  "Vary": [
49
48
  "Cookie"
@@ -51,11 +50,11 @@
51
50
  "X-Frame-Options": [
52
51
  "SAMEORIGIN"
53
52
  ],
54
- "X-Gittip-Version": [
55
- "12.11.2"
53
+ "X-Gratipay-Version": [
54
+ "17.1.3"
56
55
  ],
57
56
  "Content-Length": [
58
- "210"
57
+ "214"
59
58
  ],
60
59
  "Connection": [
61
60
  "keep-alive"
@@ -63,23 +62,23 @@
63
62
  },
64
63
  "body": {
65
64
  "encoding": "UTF-8",
66
- "string": "[\n {\n \"amount\": \"1.00\",\n \"platform\": \"gittip\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"0.25\",\n \"platform\": \"gittip\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
65
+ "string": "[\n {\n \"amount\": \"1.00\",\n \"platform\": \"gratipay\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"0.25\",\n \"platform\": \"gratipay\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
67
66
  },
68
67
  "http_version": null
69
68
  },
70
- "recorded_at": "Sat, 17 May 2014 00:14:04 GMT"
69
+ "recorded_at": "Mon, 13 Oct 2014 20:40:39 GMT"
71
70
  },
72
71
  {
73
72
  "request": {
74
73
  "method": "get",
75
- "uri": "https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@www.gittip.com/gratitude_test/tips.json",
74
+ "uri": "https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@gratipay.com/gratitude_test/tips.json",
76
75
  "body": {
77
76
  "encoding": "US-ASCII",
78
77
  "string": ""
79
78
  },
80
79
  "headers": {
81
80
  "User-Agent": [
82
- "Faraday v0.8.9"
81
+ "Faraday v0.9.0"
83
82
  ],
84
83
  "Accept-Encoding": [
85
84
  "gzip;q=1.0,deflate;q=0.6,identity;q=0.3"
@@ -102,17 +101,16 @@
102
101
  "application/json"
103
102
  ],
104
103
  "Date": [
105
- "Sat, 17 May 2014 00:14:06 GMT"
104
+ "Mon, 13 Oct 2014 20:40:39 GMT"
106
105
  ],
107
106
  "Expires": [
108
107
  "Thu, 01 Jan 1970 00:00:00 GMT"
109
108
  ],
110
109
  "Server": [
111
- "Aspen! Cheroot!"
110
+ "gunicorn/18.0"
112
111
  ],
113
112
  "Set-Cookie": [
114
- "csrf_token=n3OsPDla53v7lymuRz1KQPLO71xoccky; expires=Sat, 24 May 2014 00:14:06 GMT; Path=/",
115
- "session=456dbf6a2d524e72ae45bc72ff8e8378; expires=Sat, 24 May 2014 00:14:05 GMT; httponly; Path=/; secure"
113
+ "csrf_token=uiepfMfnxVF10KqgsHAIIGGndPAOuJX0; expires=Mon, 20 Oct 2014 20:40:39 GMT; Path=/; secure"
116
114
  ],
117
115
  "Vary": [
118
116
  "Cookie"
@@ -120,11 +118,11 @@
120
118
  "X-Frame-Options": [
121
119
  "SAMEORIGIN"
122
120
  ],
123
- "X-Gittip-Version": [
124
- "12.11.2"
121
+ "X-Gratipay-Version": [
122
+ "17.1.3"
125
123
  ],
126
124
  "Content-Length": [
127
- "210"
125
+ "214"
128
126
  ],
129
127
  "Connection": [
130
128
  "keep-alive"
@@ -132,12 +130,12 @@
132
130
  },
133
131
  "body": {
134
132
  "encoding": "UTF-8",
135
- "string": "[\n {\n \"amount\": \"1.00\",\n \"platform\": \"gittip\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"0.25\",\n \"platform\": \"gittip\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
133
+ "string": "[\n {\n \"amount\": \"1.00\",\n \"platform\": \"gratipay\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"0.25\",\n \"platform\": \"gratipay\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
136
134
  },
137
135
  "http_version": null
138
136
  },
139
- "recorded_at": "Sat, 17 May 2014 00:14:06 GMT"
137
+ "recorded_at": "Mon, 13 Oct 2014 20:40:39 GMT"
140
138
  }
141
139
  ],
142
- "recorded_with": "VCR 2.9.0"
143
- }
140
+ "recorded_with": "VCR 2.9.2"
141
+ }