multi_currencies 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -1,3 +1,104 @@
1
+ # Spree Multi-Currency
2
+
3
+ Support different currency and recalculate price from one to another
4
+
5
+ Installation
6
+ ---------
7
+ Add to Gemfile
8
+
9
+ gem "multi_currencies", :git => "git://github.com/pronix/spree-multi-currency.git"
10
+
11
+ Run
12
+ ---
13
+ Install the migrations for two new tables (currencies and currency conversion rates):
14
+
15
+ rake multi_currencies:install:migrations
16
+ rake db:migrate
17
+
18
+ Load currencies:
19
+ ---------------
20
+ Load up the list of all international currencies with corresponding codes:
21
+
22
+ rake multi_currencies:currency:iso4217 # Load currency ISO4217 table from Wikipedia http://en.wikipedia.org/wiki/ISO_4217
23
+ rake multi_currencies:currency:okv # Central Bank of Russian Federation
24
+
25
+ This step is not obligatory, i.e. you can manually fill up the 'currencies' table, but it's more practical to load the list with rake task above (and be sure the codes are OK), and then remove the currencies you don't want to support.
26
+
27
+ Load rates:
28
+ ----------
29
+ *Warning* Rates are being calculated relative to currency configured as 'basic'. It is therefore obligatory to visit Spree admin panel (or use Rails console) and edit one of the currencies to be the 'basic' one.
30
+
31
+ Basic currency is also the one considered to be stored as product prices, shipment rates etc., from which all the other ones will be calculated using the rates.
32
+
33
+ After setting the basic currency, time to load the rates using one of the rake tasks below. There are three sources of conversion rates supported by this extension:
34
+
35
+ 1. Rates from Central Bank of Russian Federation http://www.cbr.ru. These assume Russian Ruble is your basic currency:
36
+
37
+ rake multi_currencies:rates:cbr
38
+
39
+ 2. Rates from European Central Bank. These assume Euro is your basic currency:
40
+
41
+ rake multi_currencies:rates:ecb
42
+
43
+ 3. Rates from Google.
44
+
45
+ rake multi_currencies:rates:google[currency]
46
+
47
+ The argument in square brackets is the iso code of your basic currency, so to load rates when US Dollar is your basic currency, use
48
+
49
+ rake multi_currencies:rates:google[usd]
50
+
51
+ There's also an optional square-bracket-enclosed parameter "load_currencies" for :rates tasks above, but it just loads up currencies table from Wikipedia, so is not needed at this point.
52
+
53
+ Settings
54
+ ---------
55
+ In Spree Admin Panel, Configuration tab, two new options appear: Currency Settings and Currency Converters.
56
+
57
+ It's best to leave Currency Converters as-is, to be populated and updated by rake multi_currencies:rates tasks.
58
+
59
+ Within Currency Settings, like mentioned above, it is essential to set one currency as the Basic one. It's also necessary to set currency's locale for every locale you want to support (again, one locale - one currency).
60
+ Feel free to go through currencies and delete the ones you don't want to support -- it will make everything easier to manage (and the :rates rake tasks will execute faster).
61
+
62
+ Changing Currency in store
63
+ --------------------------
64
+ Self-explanatory:
65
+
66
+ http://[domain]/currency/[isocode]
67
+ <%= link_to "eur", currency_path(:eur) %>
68
+
69
+
70
+ Translation files
71
+ --------------------
72
+ To have custom currency symbols and formatters, you need to have a corresponding entry in one of locale files, with main key like currency_XXX, where XXX is the 3-letter iso code of given currency.
73
+
74
+ If you won't have it, all the other currencies will be rendered using default formatters and symbols, which can (will) lead to confusion and inconsistency. It is recommended to create locale entries for all currencies you want to support at your store and delete all the other currencies.
75
+
76
+ Example for usd, eur
77
+
78
+ --
79
+ currency_USD: &usd
80
+ number:
81
+ currency:
82
+ format:
83
+ format: "%u%n"
84
+ unit: "$"
85
+ separator: "."
86
+ delimiter: ","
87
+ precision: 2
88
+ significant: false
89
+ strip_insignificant_zeros: false
90
+
91
+ currency_EUR:
92
+ <<: *usd
93
+ number:
94
+ currency:
95
+ format:
96
+ format: "%u%n"
97
+ unit: "€"
98
+
99
+
100
+
101
+
1
102
  = Multi Currency
2
103
 
3
104
  Support different currency and recalculate price from one to another
@@ -20,7 +121,8 @@ Load currencies:
20
121
  Load rates:
21
122
  ----------
22
123
  rake multi_currencies:rates:cbr # Курс Сбербанка РФ http://www.cbr.ru
23
- rake "multi_currencies:rates:ecb[load_currencies]" # Rates from European Central Bank
124
+ rake "multi_currencies:rates:ecb[load_currencies]" # Rates from European Central Bank
125
+ for example rake multi_currencies:rates:google[USD]
24
126
  rake "multi_currencies:rates:google[currency,load_currencies]" # Rates from Google
25
127
 
26
128
 
@@ -73,5 +175,19 @@ Settings
73
175
  unit: "€"
74
176
 
75
177
 
178
+ For tests
179
+ _________________________
180
+
181
+ extention require store in ./spree
182
+ in Rakefile defined
183
+ # require define path to spree project
184
+ ENV['SPREE_GEM_PATH'] = "/home/dima/project/spree"
185
+ # or define spree as gem in Gemfile
186
+ # and decomment this
187
+ # gemfile = Pathname.new("Gemfile").expand_path
188
+ # lockfile = gemfile.dirname.join('Gemfile.lock')
189
+ # definition = Bundler::Definition.build(gemfile, lockfile, nil)
190
+ # sc=definition.index.search "spree"
191
+ # ENV['SPREE_GEM_PATH'] = sc[0].loaded_from.gsub(/\/[a-z_]*.gemspec$/,'')
76
192
 
77
193
 
data/Rakefile CHANGED
@@ -1,2 +1,70 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ # copy from core
5
+ require 'rubygems'
6
+ require 'rake'
7
+ require 'rake/testtask'
8
+ require 'rake/packagetask'
9
+ require 'rake/gempackagetask'
10
+
11
+ # require define path to spree project
12
+ ENV['SPREE_GEM_PATH'] = "/home/dima/project/spree"
13
+ # or define spree as gem in Gemfile
14
+ # and decomment this
15
+ # gemfile = Pathname.new("Gemfile").expand_path
16
+ # lockfile = gemfile.dirname.join('Gemfile.lock')
17
+ # definition = Bundler::Definition.build(gemfile, lockfile, nil)
18
+ # sc=definition.index.search "spree"
19
+ # ENV['SPREE_GEM_PATH'] = sc[0].loaded_from.gsub(/\/[a-z_]*.gemspec$/,'')
20
+
21
+ spec = eval(File.read('multi_currencies.gemspec'))
22
+ Rake::GemPackageTask.new(spec) do |p|
23
+ p.gem_spec = spec
24
+ end
25
+
26
+ desc "Release to gemcutter"
27
+ task :release => :package do
28
+ require 'rake/gemcutter'
29
+ Rake::Gemcutter::Tasks.new(spec).define
30
+ Rake::Task['gem:push'].invoke
31
+ end
32
+
33
+ desc "Default Task"
34
+ task :default => [:spec, :cucumber ]
35
+
36
+ desc "Regenerates a rails 3 app for testing"
37
+ task :test_app do
38
+ require "#{ENV['SPREE_GEM_PATH']}/lib/generators/spree/test_app_generator"
39
+ class CoreTestAppGenerator < Spree::Generators::TestAppGenerator
40
+
41
+ def install_spree_core
42
+ inside "test_app" do
43
+ run 'rake spree_core:install'
44
+ run 'rake spree_auth:install'
45
+ run 'rake multi_currencies:install'
46
+ run "rake spree_sample:install"
47
+ run "sed -i 's/development/cucumber/' ../db/sample/payment_methods.yml"
48
+ run 'rake db:seed'
49
+ end
50
+ end
51
+
52
+ def migrate_db
53
+ run_migrations
54
+ end
55
+
56
+ protected
57
+ def full_path_for_local_gems
58
+ <<-gems
59
+ gem 'multi_currencies', :path => \'#{File.dirname(__FILE__)}\'
60
+ gem 'spree_core', :path => \'#{ENV['SPREE_GEM_PATH']}/core\'
61
+ gem 'spree_sample', :path => \'#{ENV['SPREE_GEM_PATH']}/sample\'
62
+ gem 'spree_auth', :path => \'#{ENV['SPREE_GEM_PATH']}/auth\'
63
+ gems
64
+ end
65
+ end
66
+ CoreTestAppGenerator.start
67
+ end
68
+
69
+ require File.expand_path("./core/lib/tasks/common", ENV['SPREE_GEM_PATH'])
70
+
data/Versionfile ADDED
@@ -0,0 +1,9 @@
1
+ # This file is used to designate compatibilty with different versions of Spree
2
+ # Please see http://spreecommerce.com/documentation/extensions.html#versionfile for details
3
+
4
+ # Examples
5
+ #
6
+ "0.50.x" => { :branch => "master" }
7
+ "0.40.x" => { :tag => "v1.0.0", :version => "1.0.0" }
8
+
9
+
@@ -0,0 +1,4 @@
1
+ Adjustment.class_eval do
2
+ extend MultiCurrency
3
+ multi_currency :amount
4
+ end
File without changes
@@ -13,6 +13,16 @@ Order.class_eval do
13
13
  self.total = read_attribute(:item_total) + adjustment_total
14
14
  end
15
15
 
16
+ def rate_hash
17
+ @rate_hash ||= available_shipping_methods(:front_end).collect do |ship_method|
18
+ next unless cost = ship_method.calculator.compute(self)
19
+ { :id => ship_method.id,
20
+ :shipping_method => ship_method,
21
+ :name => ship_method.name,
22
+ :cost => Currency.conversion_to_current(cost)
23
+ }
24
+ end.compact.sort_by{|r| r[:cost]}
25
+ end
16
26
 
17
27
  def update!
18
28
  update_totals
File without changes
@@ -0,0 +1,10 @@
1
+ <%
2
+ rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
3
+ rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
4
+ std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip"
5
+ ci_opts = "--format progress --strict"
6
+ %>
7
+ default: <%= std_opts %> features
8
+ wip: --tags @wip:3 --wip features
9
+ ci: <%= ci_opts %> features CI=true
10
+ rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
@@ -0,0 +1,1603 @@
1
+ ---
2
+ currencies_130:
3
+ name: Singapore dollar
4
+ created_at: 2011-04-29 09:23:38.475946
5
+ char_code: SGD
6
+ updated_at: 2011-04-29 09:23:38.475946
7
+ id: 130
8
+ basic: f
9
+ locale:
10
+ num_code: "702"
11
+ currencies_84:
12
+ name: Lebanese pound
13
+ created_at: 2011-04-29 09:23:37.613603
14
+ char_code: LBP
15
+ updated_at: 2011-04-29 09:23:37.613603
16
+ id: 84
17
+ basic: f
18
+ locale:
19
+ num_code: "422"
20
+ currencies_56:
21
+ name: Gambian dalasi
22
+ created_at: 2011-04-29 09:23:37.150576
23
+ char_code: GMD
24
+ updated_at: 2011-04-29 09:23:37.150576
25
+ id: 56
26
+ basic: f
27
+ locale:
28
+ num_code: "270"
29
+ currencies_28:
30
+ name: Congolese franc
31
+ created_at: 2011-04-29 09:23:36.690260
32
+ char_code: CDF
33
+ updated_at: 2011-04-29 09:23:36.690260
34
+ id: 28
35
+ basic: f
36
+ locale:
37
+ num_code: "976"
38
+ currencies_101:
39
+ name: Malawian kwacha
40
+ created_at: 2011-04-29 09:23:38.009599
41
+ char_code: MWK
42
+ updated_at: 2011-04-29 09:23:38.009599
43
+ id: 101
44
+ basic: f
45
+ locale:
46
+ num_code: "454"
47
+ currencies_131:
48
+ name: Saint Helena pound
49
+ created_at: 2011-04-29 09:23:38.491220
50
+ char_code: SHP
51
+ updated_at: 2011-04-29 09:23:38.491220
52
+ id: 131
53
+ basic: f
54
+ locale:
55
+ num_code: "654"
56
+ currencies_85:
57
+ name: Sri Lanka rupee
58
+ created_at: 2011-04-29 09:23:37.629388
59
+ char_code: LKR
60
+ updated_at: 2011-04-29 09:23:37.629388
61
+ id: 85
62
+ basic: f
63
+ locale:
64
+ num_code: "144"
65
+ currencies_57:
66
+ name: Guinean franc
67
+ created_at: 2011-04-29 09:23:37.165087
68
+ char_code: GNF
69
+ updated_at: 2011-04-29 09:23:37.165087
70
+ id: 57
71
+ basic: f
72
+ locale:
73
+ num_code: "324"
74
+ currencies_29:
75
+ name: WIR Euro (complementary currency)
76
+ created_at: 2011-04-29 09:23:36.705865
77
+ char_code: CHE
78
+ updated_at: 2011-04-29 09:23:36.705865
79
+ id: 29
80
+ basic: f
81
+ locale:
82
+ num_code: "947"
83
+ currencies_102:
84
+ name: Mexican peso
85
+ created_at: 2011-04-29 09:23:38.034499
86
+ char_code: MXN
87
+ updated_at: 2011-04-29 09:23:38.034499
88
+ id: 102
89
+ basic: f
90
+ locale:
91
+ num_code: "484"
92
+ currencies_160:
93
+ name: Silver (one troy ounce)
94
+ created_at: 2011-04-29 09:23:39.133670
95
+ char_code: XAG
96
+ updated_at: 2011-04-29 09:23:39.133670
97
+ id: 160
98
+ basic: f
99
+ locale:
100
+ num_code: "961"
101
+ currencies_86:
102
+ name: Liberian dollar
103
+ created_at: 2011-04-29 09:23:37.641660
104
+ char_code: LRD
105
+ updated_at: 2011-04-29 09:23:37.641660
106
+ id: 86
107
+ basic: f
108
+ locale:
109
+ num_code: "430"
110
+ currencies_58:
111
+ name: Guatemalan quetzal
112
+ created_at: 2011-04-29 09:23:37.187747
113
+ char_code: GTQ
114
+ updated_at: 2011-04-29 09:23:37.187747
115
+ id: 58
116
+ basic: f
117
+ locale:
118
+ num_code: "320"
119
+ currencies_103:
120
+ name: Mexican Unidad de Inversion (UDI) (funds code)
121
+ created_at: 2011-04-29 09:23:38.049737
122
+ char_code: MXV
123
+ updated_at: 2011-04-29 09:23:38.049737
124
+ id: 103
125
+ basic: f
126
+ locale:
127
+ num_code: "979"
128
+ currencies_161:
129
+ name: Gold (one troy ounce)
130
+ created_at: 2011-04-29 09:23:39.150487
131
+ char_code: XAU
132
+ updated_at: 2011-04-29 09:23:39.150487
133
+ id: 161
134
+ basic: f
135
+ locale:
136
+ num_code: "959"
137
+ currencies_132:
138
+ name: Sierra Leonean leone
139
+ created_at: 2011-04-29 09:23:38.507207
140
+ char_code: SLL
141
+ updated_at: 2011-04-29 09:23:38.507207
142
+ id: 132
143
+ basic: f
144
+ locale:
145
+ num_code: "694"
146
+ currencies_59:
147
+ name: Guyanese dollar
148
+ created_at: 2011-04-29 09:23:37.202289
149
+ char_code: GYD
150
+ updated_at: 2011-04-29 09:23:37.202289
151
+ id: 59
152
+ basic: f
153
+ locale:
154
+ num_code: "328"
155
+ currencies_104:
156
+ name: Malaysian ringgit
157
+ created_at: 2011-04-29 09:23:38.061784
158
+ char_code: MYR
159
+ updated_at: 2011-04-29 09:23:38.061784
160
+ id: 104
161
+ basic: f
162
+ locale:
163
+ num_code: "458"
164
+ currencies_87:
165
+ name: Lesotho loti
166
+ created_at: 2011-04-29 09:23:37.653480
167
+ char_code: LSL
168
+ updated_at: 2011-04-29 09:23:37.653480
169
+ id: 87
170
+ basic: f
171
+ locale:
172
+ num_code: "426"
173
+ currencies_162:
174
+ name: European Composite Unit (EURCO) (bond market unit)
175
+ created_at: 2011-04-29 09:23:39.167943
176
+ char_code: XBA
177
+ updated_at: 2011-04-29 09:23:39.167943
178
+ id: 162
179
+ basic: f
180
+ locale:
181
+ num_code: "955"
182
+ currencies_133:
183
+ name: Somali shilling
184
+ created_at: 2011-04-29 09:23:38.521398
185
+ char_code: SOS
186
+ updated_at: 2011-04-29 09:23:38.521398
187
+ id: 133
188
+ basic: f
189
+ locale:
190
+ num_code: "706"
191
+ currencies_105:
192
+ name: Mozambican metical
193
+ created_at: 2011-04-29 09:23:38.075234
194
+ char_code: MZN
195
+ updated_at: 2011-04-29 09:23:38.075234
196
+ id: 105
197
+ basic: f
198
+ locale:
199
+ num_code: "943"
200
+ currencies_88:
201
+ name: Lithuanian litas
202
+ created_at: 2011-04-29 09:23:37.668036
203
+ char_code: LTL
204
+ updated_at: 2011-04-29 09:23:37.668036
205
+ id: 88
206
+ basic: f
207
+ locale:
208
+ num_code: "440"
209
+ currencies_163:
210
+ name: European Monetary Unit (E.M.U.-6) (bond market unit)
211
+ created_at: 2011-04-29 09:23:39.195260
212
+ char_code: XBB
213
+ updated_at: 2011-04-29 09:23:39.195260
214
+ id: 163
215
+ basic: f
216
+ locale:
217
+ num_code: "956"
218
+ currencies_134:
219
+ name: Surinamese dollar
220
+ created_at: 2011-04-29 09:23:38.542319
221
+ char_code: SRD
222
+ updated_at: 2011-04-29 09:23:38.542319
223
+ id: 134
224
+ basic: f
225
+ locale:
226
+ num_code: "968"
227
+ currencies_106:
228
+ name: Namibian dollar
229
+ created_at: 2011-04-29 09:23:38.089667
230
+ char_code: NAD
231
+ updated_at: 2011-04-29 09:23:38.089667
232
+ id: 106
233
+ basic: f
234
+ locale:
235
+ num_code: "516"
236
+ currencies_30:
237
+ name: Swiss franc
238
+ created_at: 2011-04-29 09:23:36.721373
239
+ char_code: CHF
240
+ updated_at: 2011-04-29 09:23:36.721373
241
+ id: 30
242
+ basic: f
243
+ locale:
244
+ num_code: "756"
245
+ currencies_89:
246
+ name: Latvian lats
247
+ created_at: 2011-04-29 09:23:37.683849
248
+ char_code: LVL
249
+ updated_at: 2011-04-29 09:23:37.683849
250
+ id: 89
251
+ basic: f
252
+ locale:
253
+ num_code: "428"
254
+ currencies_164:
255
+ name: European Unit of Account 9 (E.U.A.-9) (bond market unit)
256
+ created_at: 2011-04-29 09:23:39.210068
257
+ char_code: XBC
258
+ updated_at: 2011-04-29 09:23:39.210068
259
+ id: 164
260
+ basic: f
261
+ locale:
262
+ num_code: "957"
263
+ currencies_135:
264
+ name: "S\xC3\xA3o Tom\xC3\xA9 and Pr\xC3\xADncipe dobra"
265
+ created_at: 2011-04-29 09:23:38.561763
266
+ char_code: STD
267
+ updated_at: 2011-04-29 09:23:38.561763
268
+ id: 135
269
+ basic: f
270
+ locale:
271
+ num_code: "678"
272
+ currencies_107:
273
+ name: Nigerian naira
274
+ created_at: 2011-04-29 09:23:38.103631
275
+ char_code: NGN
276
+ updated_at: 2011-04-29 09:23:38.103631
277
+ id: 107
278
+ basic: f
279
+ locale:
280
+ num_code: "566"
281
+ currencies_31:
282
+ name: WIR Franc (complementary currency)
283
+ created_at: 2011-04-29 09:23:36.734965
284
+ char_code: CHW
285
+ updated_at: 2011-04-29 09:23:36.734965
286
+ id: 31
287
+ basic: f
288
+ locale:
289
+ num_code: "948"
290
+ currencies_136:
291
+ name: Syrian pound
292
+ created_at: 2011-04-29 09:23:38.578737
293
+ char_code: SYP
294
+ updated_at: 2011-04-29 09:23:38.578737
295
+ id: 136
296
+ basic: f
297
+ locale:
298
+ num_code: "760"
299
+ currencies_60:
300
+ name: Hong Kong dollar
301
+ created_at: 2011-04-29 09:23:37.217841
302
+ char_code: HKD
303
+ updated_at: 2011-04-29 09:23:37.217841
304
+ id: 60
305
+ basic: f
306
+ locale:
307
+ num_code: "344"
308
+ currencies_108:
309
+ name: Cordoba oro
310
+ created_at: 2011-04-29 09:23:38.120318
311
+ char_code: NIO
312
+ updated_at: 2011-04-29 09:23:38.120318
313
+ id: 108
314
+ basic: f
315
+ locale:
316
+ num_code: "558"
317
+ currencies_32:
318
+ name: Unidad de Fomento (funds code)
319
+ created_at: 2011-04-29 09:23:36.748473
320
+ char_code: CLF
321
+ updated_at: 2011-04-29 09:23:36.748473
322
+ id: 32
323
+ basic: f
324
+ locale:
325
+ num_code: "990"
326
+ currencies_165:
327
+ name: European Unit of Account 17 (E.U.A.-17) (bond market unit)
328
+ created_at: 2011-04-29 09:23:39.239253
329
+ char_code: XBD
330
+ updated_at: 2011-04-29 09:23:39.239253
331
+ id: 165
332
+ basic: f
333
+ locale:
334
+ num_code: "958"
335
+ currencies_137:
336
+ name: Lilangeni
337
+ created_at: 2011-04-29 09:23:38.595533
338
+ char_code: SZL
339
+ updated_at: 2011-04-29 09:23:38.595533
340
+ id: 137
341
+ basic: f
342
+ locale:
343
+ num_code: "748"
344
+ currencies_61:
345
+ name: Honduran lempira
346
+ created_at: 2011-04-29 09:23:37.233981
347
+ char_code: HNL
348
+ updated_at: 2011-04-29 09:23:37.233981
349
+ id: 61
350
+ basic: f
351
+ locale:
352
+ num_code: "340"
353
+ currencies_109:
354
+ name: Norwegian krone
355
+ created_at: 2011-04-29 09:23:38.137341
356
+ char_code: NOK
357
+ updated_at: 2011-04-29 09:23:38.137341
358
+ id: 109
359
+ basic: f
360
+ locale:
361
+ num_code: "578"
362
+ currencies_33:
363
+ name: Chilean peso
364
+ created_at: 2011-04-29 09:23:36.765208
365
+ char_code: CLP
366
+ updated_at: 2011-04-29 09:23:36.765208
367
+ id: 33
368
+ basic: f
369
+ locale:
370
+ num_code: "152"
371
+ currencies_166:
372
+ name: East Caribbean dollar
373
+ created_at: 2011-04-29 09:23:39.250526
374
+ char_code: XCD
375
+ updated_at: 2011-04-29 09:23:39.250526
376
+ id: 166
377
+ basic: f
378
+ locale:
379
+ num_code: "951"
380
+ currencies_138:
381
+ name: Thai baht
382
+ created_at: 2011-04-29 09:23:38.612111
383
+ char_code: THB
384
+ updated_at: 2011-04-29 09:23:38.612111
385
+ id: 138
386
+ basic: f
387
+ locale:
388
+ num_code: "764"
389
+ currencies_62:
390
+ name: Croatian kuna
391
+ created_at: 2011-04-29 09:23:37.250006
392
+ char_code: HRK
393
+ updated_at: 2011-04-29 09:23:37.250006
394
+ id: 62
395
+ basic: f
396
+ locale:
397
+ num_code: "191"
398
+ currencies_34:
399
+ name: Chinese yuan
400
+ created_at: 2011-04-29 09:23:36.781471
401
+ char_code: CNY
402
+ updated_at: 2011-04-29 09:23:36.781471
403
+ id: 34
404
+ basic: f
405
+ locale:
406
+ num_code: "156"
407
+ currencies_90:
408
+ name: Libyan dinar
409
+ created_at: 2011-04-29 09:23:37.711530
410
+ char_code: LYD
411
+ updated_at: 2011-04-29 09:23:37.711530
412
+ id: 90
413
+ basic: f
414
+ locale:
415
+ num_code: "434"
416
+ currencies_167:
417
+ name: Special Drawing Rights
418
+ created_at: 2011-04-29 09:23:39.271802
419
+ char_code: XDR
420
+ updated_at: 2011-04-29 09:23:39.271802
421
+ id: 167
422
+ basic: f
423
+ locale:
424
+ num_code: "960"
425
+ currencies_139:
426
+ name: Tajikistani somoni
427
+ created_at: 2011-04-29 09:23:38.628226
428
+ char_code: TJS
429
+ updated_at: 2011-04-29 09:23:38.628226
430
+ id: 139
431
+ basic: f
432
+ locale:
433
+ num_code: "972"
434
+ currencies_63:
435
+ name: Haitian gourde
436
+ created_at: 2011-04-29 09:23:37.265776
437
+ char_code: HTG
438
+ updated_at: 2011-04-29 09:23:37.265776
439
+ id: 63
440
+ basic: f
441
+ locale:
442
+ num_code: "332"
443
+ currencies_35:
444
+ name: Colombian peso
445
+ created_at: 2011-04-29 09:23:36.798342
446
+ char_code: COP
447
+ updated_at: 2011-04-29 09:23:36.798342
448
+ id: 35
449
+ basic: f
450
+ locale:
451
+ num_code: "170"
452
+ currencies_91:
453
+ name: Moroccan dirham
454
+ created_at: 2011-04-29 09:23:37.728085
455
+ char_code: MAD
456
+ updated_at: 2011-04-29 09:23:37.728085
457
+ id: 91
458
+ basic: f
459
+ locale:
460
+ num_code: "504"
461
+ currencies_168:
462
+ name: UIC franc (special settlement currency)
463
+ created_at: 2011-04-29 09:23:39.286129
464
+ char_code: XFU
465
+ updated_at: 2011-04-29 09:23:39.286129
466
+ id: 168
467
+ basic: f
468
+ locale:
469
+ num_code: Nil
470
+ currencies_64:
471
+ name: Hungarian forint
472
+ created_at: 2011-04-29 09:23:37.281360
473
+ char_code: HUF
474
+ updated_at: 2011-04-29 09:23:37.281360
475
+ id: 64
476
+ basic: f
477
+ locale:
478
+ num_code: "348"
479
+ currencies_36:
480
+ name: Unidad de Valor Real
481
+ created_at: 2011-04-29 09:23:36.822953
482
+ char_code: COU
483
+ updated_at: 2011-04-29 09:23:36.822953
484
+ id: 36
485
+ basic: f
486
+ locale:
487
+ num_code: "970"
488
+ currencies_92:
489
+ name: Moldovan leu
490
+ created_at: 2011-04-29 09:23:37.743798
491
+ char_code: MDL
492
+ updated_at: 2011-04-29 09:23:37.743798
493
+ id: 92
494
+ basic: f
495
+ locale:
496
+ num_code: "498"
497
+ currencies_169:
498
+ name: CFA Franc BCEAO
499
+ created_at: 2011-04-29 09:23:39.314433
500
+ char_code: XOF
501
+ updated_at: 2011-04-29 09:23:39.314433
502
+ id: 169
503
+ basic: f
504
+ locale:
505
+ num_code: "952"
506
+ currencies_65:
507
+ name: Indonesian rupiah
508
+ created_at: 2011-04-29 09:23:37.297081
509
+ char_code: IDR
510
+ updated_at: 2011-04-29 09:23:37.297081
511
+ id: 65
512
+ basic: f
513
+ locale:
514
+ num_code: "360"
515
+ currencies_37:
516
+ name: Costa Rican colon
517
+ created_at: 2011-04-29 09:23:36.839277
518
+ char_code: CRC
519
+ updated_at: 2011-04-29 09:23:36.839277
520
+ id: 37
521
+ basic: f
522
+ locale:
523
+ num_code: "188"
524
+ currencies_110:
525
+ name: Nepalese rupee
526
+ created_at: 2011-04-29 09:23:38.150757
527
+ char_code: NPR
528
+ updated_at: 2011-04-29 09:23:38.150757
529
+ id: 110
530
+ basic: f
531
+ locale:
532
+ num_code: "524"
533
+ currencies_93:
534
+ name: Malagasy ariary
535
+ created_at: 2011-04-29 09:23:37.760236
536
+ char_code: MGA
537
+ updated_at: 2011-04-29 09:23:37.760236
538
+ id: 93
539
+ basic: f
540
+ locale:
541
+ num_code: "969"
542
+ currencies_140:
543
+ name: Turkmenistani manat
544
+ created_at: 2011-04-29 09:23:38.645272
545
+ char_code: TMT
546
+ updated_at: 2011-04-29 09:23:38.645272
547
+ id: 140
548
+ basic: f
549
+ locale:
550
+ num_code: "934"
551
+ currencies_38:
552
+ name: Cuban convertible peso
553
+ created_at: 2011-04-29 09:23:36.855231
554
+ char_code: CUC
555
+ updated_at: 2011-04-29 09:23:36.855231
556
+ id: 38
557
+ basic: f
558
+ locale:
559
+ num_code: "931"
560
+ currencies_111:
561
+ name: New Zealand dollar
562
+ created_at: 2011-04-29 09:23:38.163768
563
+ char_code: NZD
564
+ updated_at: 2011-04-29 09:23:38.163768
565
+ id: 111
566
+ basic: f
567
+ locale:
568
+ num_code: "554"
569
+ currencies_94:
570
+ name: Macedonian denar
571
+ created_at: 2011-04-29 09:23:37.777188
572
+ char_code: MKD
573
+ updated_at: 2011-04-29 09:23:37.777188
574
+ id: 94
575
+ basic: f
576
+ locale:
577
+ num_code: "807"
578
+ currencies_66:
579
+ name: Israeli new sheqel
580
+ created_at: 2011-04-29 09:23:37.313090
581
+ char_code: ILS
582
+ updated_at: 2011-04-29 09:23:37.313090
583
+ id: 66
584
+ basic: f
585
+ locale:
586
+ num_code: "376"
587
+ currencies_141:
588
+ name: Tunisian dinar
589
+ created_at: 2011-04-29 09:23:38.662437
590
+ char_code: TND
591
+ updated_at: 2011-04-29 09:23:38.662437
592
+ id: 141
593
+ basic: f
594
+ locale:
595
+ num_code: "788"
596
+ currencies_39:
597
+ name: Cuban peso
598
+ created_at: 2011-04-29 09:23:36.868769
599
+ char_code: CUP
600
+ updated_at: 2011-04-29 09:23:36.868769
601
+ id: 39
602
+ basic: f
603
+ locale:
604
+ num_code: "192"
605
+ currencies_112:
606
+ name: Omani rial
607
+ created_at: 2011-04-29 09:23:38.178964
608
+ char_code: OMR
609
+ updated_at: 2011-04-29 09:23:38.178964
610
+ id: 112
611
+ basic: f
612
+ locale:
613
+ num_code: "512"
614
+ currencies_95:
615
+ name: Myanma kyat
616
+ created_at: 2011-04-29 09:23:37.793860
617
+ char_code: MMK
618
+ updated_at: 2011-04-29 09:23:37.793860
619
+ id: 95
620
+ basic: f
621
+ locale:
622
+ num_code: "104"
623
+ currencies_1:
624
+ name: United Arab Emirates dirham
625
+ created_at: 2011-04-29 09:23:36.220534
626
+ char_code: AED
627
+ updated_at: 2011-04-29 09:23:36.220534
628
+ id: 1
629
+ basic: f
630
+ locale:
631
+ num_code: "784"
632
+ currencies_67:
633
+ name: Indian rupee
634
+ created_at: 2011-04-29 09:23:37.328897
635
+ char_code: INR
636
+ updated_at: 2011-04-29 09:23:37.328897
637
+ id: 67
638
+ basic: f
639
+ locale:
640
+ num_code: "356"
641
+ currencies_170:
642
+ name: Palladium (one troy ounce)
643
+ created_at: 2011-04-29 09:23:39.329236
644
+ char_code: XPD
645
+ updated_at: 2011-04-29 09:23:39.329236
646
+ id: 170
647
+ basic: f
648
+ locale:
649
+ num_code: "964"
650
+ currencies_142:
651
+ name: "Tongan pa\xCA\xBBanga"
652
+ created_at: 2011-04-29 09:23:38.679548
653
+ char_code: TOP
654
+ updated_at: 2011-04-29 09:23:38.679548
655
+ id: 142
656
+ basic: f
657
+ locale:
658
+ num_code: "776"
659
+ currencies_113:
660
+ name: Panamanian balboa
661
+ created_at: 2011-04-29 09:23:38.200097
662
+ char_code: PAB
663
+ updated_at: 2011-04-29 09:23:38.200097
664
+ id: 113
665
+ basic: f
666
+ locale:
667
+ num_code: "590"
668
+ currencies_96:
669
+ name: Mongolian tugrik
670
+ created_at: 2011-04-29 09:23:37.809635
671
+ char_code: MNT
672
+ updated_at: 2011-04-29 09:23:37.809635
673
+ id: 96
674
+ basic: f
675
+ locale:
676
+ num_code: "496"
677
+ currencies_2:
678
+ name: Afghan afghani
679
+ created_at: 2011-04-29 09:23:36.253673
680
+ char_code: AFN
681
+ updated_at: 2011-04-29 09:23:36.253673
682
+ id: 2
683
+ basic: f
684
+ locale:
685
+ num_code: "971"
686
+ currencies_68:
687
+ name: Iraqi dinar
688
+ created_at: 2011-04-29 09:23:37.345600
689
+ char_code: IQD
690
+ updated_at: 2011-04-29 09:23:37.345600
691
+ id: 68
692
+ basic: f
693
+ locale:
694
+ num_code: "368"
695
+ currencies_171:
696
+ name: CFP franc
697
+ created_at: 2011-04-29 09:23:39.342542
698
+ char_code: XPF
699
+ updated_at: 2011-04-29 09:23:39.342542
700
+ id: 171
701
+ basic: f
702
+ locale:
703
+ num_code: "953"
704
+ currencies_114:
705
+ name: Peruvian nuevo sol
706
+ created_at: 2011-04-29 09:23:38.215062
707
+ char_code: PEN
708
+ updated_at: 2011-04-29 09:23:38.215062
709
+ id: 114
710
+ basic: f
711
+ locale:
712
+ num_code: "604"
713
+ currencies_97:
714
+ name: Macanese pataca
715
+ created_at: 2011-04-29 09:23:37.826038
716
+ char_code: MOP
717
+ updated_at: 2011-04-29 09:23:37.826038
718
+ id: 97
719
+ basic: f
720
+ locale:
721
+ num_code: "446"
722
+ currencies_3:
723
+ name: Albanian lek
724
+ created_at: 2011-04-29 09:23:36.277869
725
+ char_code: ALL
726
+ updated_at: 2011-04-29 09:23:36.277869
727
+ id: 3
728
+ basic: f
729
+ locale:
730
+ num_code: 008
731
+ currencies_10:
732
+ name: Azerbaijani manat
733
+ created_at: 2011-04-29 09:23:36.385789
734
+ char_code: AZN
735
+ updated_at: 2011-04-29 09:23:36.385789
736
+ id: 10
737
+ basic: f
738
+ locale:
739
+ num_code: "944"
740
+ currencies_69:
741
+ name: Iranian rial
742
+ created_at: 2011-04-29 09:23:37.368662
743
+ char_code: IRR
744
+ updated_at: 2011-04-29 09:23:37.368662
745
+ id: 69
746
+ basic: f
747
+ locale:
748
+ num_code: "364"
749
+ currencies_172:
750
+ name: Platinum (one troy ounce)
751
+ created_at: 2011-04-29 09:23:39.360768
752
+ char_code: XPT
753
+ updated_at: 2011-04-29 09:23:39.360768
754
+ id: 172
755
+ basic: f
756
+ locale:
757
+ num_code: "962"
758
+ currencies_143:
759
+ name: Turkish lira
760
+ created_at: 2011-04-29 09:23:38.696403
761
+ char_code: TRY
762
+ updated_at: 2011-04-29 09:23:38.696403
763
+ id: 143
764
+ basic: f
765
+ locale:
766
+ num_code: "949"
767
+ currencies_115:
768
+ name: Papua New Guinean kina
769
+ created_at: 2011-04-29 09:23:38.231233
770
+ char_code: PGK
771
+ updated_at: 2011-04-29 09:23:38.231233
772
+ id: 115
773
+ basic: f
774
+ locale:
775
+ num_code: "598"
776
+ currencies_98:
777
+ name: Mauritanian ouguiya
778
+ created_at: 2011-04-29 09:23:37.963398
779
+ char_code: MRO
780
+ updated_at: 2011-04-29 09:23:37.963398
781
+ id: 98
782
+ basic: f
783
+ locale:
784
+ num_code: "478"
785
+ currencies_4:
786
+ name: Armenian dram
787
+ created_at: 2011-04-29 09:23:36.293084
788
+ char_code: AMD
789
+ updated_at: 2011-04-29 09:23:36.293084
790
+ id: 4
791
+ basic: f
792
+ locale:
793
+ num_code: "051"
794
+ currencies_11:
795
+ name: Bosnia and Herzegovina convertible mark
796
+ created_at: 2011-04-29 09:23:36.400050
797
+ char_code: BAM
798
+ updated_at: 2011-04-29 09:23:36.400050
799
+ id: 11
800
+ basic: f
801
+ locale:
802
+ num_code: "977"
803
+ currencies_173:
804
+ name: Code reserved for testing purposes
805
+ created_at: 2011-04-29 09:23:39.386866
806
+ char_code: XTS
807
+ updated_at: 2011-04-29 09:23:39.386866
808
+ id: 173
809
+ basic: f
810
+ locale:
811
+ num_code: "963"
812
+ currencies_144:
813
+ name: Trinidad and Tobago dollar
814
+ created_at: 2011-04-29 09:23:38.711330
815
+ char_code: TTD
816
+ updated_at: 2011-04-29 09:23:38.711330
817
+ id: 144
818
+ basic: f
819
+ locale:
820
+ num_code: "780"
821
+ currencies_116:
822
+ name: Philippine peso
823
+ created_at: 2011-04-29 09:23:38.246909
824
+ char_code: PHP
825
+ updated_at: 2011-04-29 09:23:38.246909
826
+ id: 116
827
+ basic: f
828
+ locale:
829
+ num_code: "608"
830
+ currencies_40:
831
+ name: Cape Verde escudo
832
+ created_at: 2011-04-29 09:23:36.885500
833
+ char_code: CVE
834
+ updated_at: 2011-04-29 09:23:36.885500
835
+ id: 40
836
+ basic: f
837
+ locale:
838
+ num_code: "132"
839
+ currencies_99:
840
+ name: Mauritian rupee
841
+ created_at: 2011-04-29 09:23:37.976582
842
+ char_code: MUR
843
+ updated_at: 2011-04-29 09:23:37.976582
844
+ id: 99
845
+ basic: f
846
+ locale:
847
+ num_code: "480"
848
+ currencies_5:
849
+ name: Netherlands Antillean guilder
850
+ created_at: 2011-04-29 09:23:36.309192
851
+ char_code: ANG
852
+ updated_at: 2011-04-29 09:23:36.309192
853
+ id: 5
854
+ basic: f
855
+ locale:
856
+ num_code: "532"
857
+ currencies_12:
858
+ name: Barbados dollar
859
+ created_at: 2011-04-29 09:23:36.416283
860
+ char_code: BBD
861
+ updated_at: 2011-04-29 09:23:36.416283
862
+ id: 12
863
+ basic: f
864
+ locale:
865
+ num_code: "052"
866
+ currencies_174:
867
+ name: No currency
868
+ created_at: 2011-04-29 09:23:39.404435
869
+ char_code: XXX
870
+ updated_at: 2011-04-29 09:23:39.404435
871
+ id: 174
872
+ basic: f
873
+ locale:
874
+ num_code: "999"
875
+ currencies_145:
876
+ name: New Taiwan dollar
877
+ created_at: 2011-04-29 09:23:38.727977
878
+ char_code: TWD
879
+ updated_at: 2011-04-29 09:23:38.727977
880
+ id: 145
881
+ basic: f
882
+ locale:
883
+ num_code: "901"
884
+ currencies_117:
885
+ name: Pakistani rupee
886
+ created_at: 2011-04-29 09:23:38.262852
887
+ char_code: PKR
888
+ updated_at: 2011-04-29 09:23:38.262852
889
+ id: 117
890
+ basic: f
891
+ locale:
892
+ num_code: "586"
893
+ currencies_41:
894
+ name: Czech koruna
895
+ created_at: 2011-04-29 09:23:36.902768
896
+ char_code: CZK
897
+ updated_at: 2011-04-29 09:23:36.902768
898
+ id: 41
899
+ basic: f
900
+ locale:
901
+ num_code: "203"
902
+ currencies_6:
903
+ name: Angolan kwanza
904
+ created_at: 2011-04-29 09:23:36.325569
905
+ char_code: AOA
906
+ updated_at: 2011-04-29 09:23:36.325569
907
+ id: 6
908
+ basic: f
909
+ locale:
910
+ num_code: "973"
911
+ currencies_13:
912
+ name: Bangladeshi taka
913
+ created_at: 2011-04-29 09:23:36.433549
914
+ char_code: BDT
915
+ updated_at: 2011-04-29 09:23:36.433549
916
+ id: 13
917
+ basic: f
918
+ locale:
919
+ num_code: "050"
920
+ currencies_175:
921
+ name: Yemeni rial
922
+ created_at: 2011-04-29 09:23:39.439401
923
+ char_code: YER
924
+ updated_at: 2011-04-29 09:23:39.439401
925
+ id: 175
926
+ basic: f
927
+ locale:
928
+ num_code: "886"
929
+ currencies_146:
930
+ name: Tanzanian shilling
931
+ created_at: 2011-04-29 09:23:38.749488
932
+ char_code: TZS
933
+ updated_at: 2011-04-29 09:23:38.749488
934
+ id: 146
935
+ basic: f
936
+ locale:
937
+ num_code: "834"
938
+ currencies_118:
939
+ name: "Polish z\xC5\x82oty"
940
+ created_at: 2011-04-29 09:23:38.279551
941
+ char_code: PLN
942
+ updated_at: 2011-04-29 09:23:38.279551
943
+ id: 118
944
+ basic: f
945
+ locale:
946
+ num_code: "985"
947
+ currencies_42:
948
+ name: Djiboutian franc
949
+ created_at: 2011-04-29 09:23:36.919264
950
+ char_code: DJF
951
+ updated_at: 2011-04-29 09:23:36.919264
952
+ id: 42
953
+ basic: f
954
+ locale:
955
+ num_code: "262"
956
+ currencies_7:
957
+ name: Argentine peso
958
+ created_at: 2011-04-29 09:23:36.339890
959
+ char_code: ARS
960
+ updated_at: 2011-04-29 09:23:36.339890
961
+ id: 7
962
+ basic: f
963
+ locale:
964
+ num_code: "032"
965
+ currencies_14:
966
+ name: Bulgarian lev
967
+ created_at: 2011-04-29 09:23:36.457941
968
+ char_code: BGN
969
+ updated_at: 2011-04-29 09:23:36.457941
970
+ id: 14
971
+ basic: f
972
+ locale:
973
+ num_code: "975"
974
+ currencies_70:
975
+ name: "Icelandic kr\xC3\xB3na"
976
+ created_at: 2011-04-29 09:23:37.382316
977
+ char_code: ISK
978
+ updated_at: 2011-04-29 09:23:37.382316
979
+ id: 70
980
+ basic: f
981
+ locale:
982
+ num_code: "352"
983
+ currencies_147:
984
+ name: Ukrainian hryvnia
985
+ created_at: 2011-04-29 09:23:38.763526
986
+ char_code: UAH
987
+ updated_at: 2011-04-29 09:23:38.763526
988
+ id: 147
989
+ basic: f
990
+ locale:
991
+ num_code: "980"
992
+ currencies_119:
993
+ name: "Paraguayan guaran\xC3\xAD"
994
+ created_at: 2011-04-29 09:23:38.296627
995
+ char_code: PYG
996
+ updated_at: 2011-04-29 09:23:38.296627
997
+ id: 119
998
+ basic: f
999
+ locale:
1000
+ num_code: "600"
1001
+ currencies_43:
1002
+ name: Danish krone
1003
+ created_at: 2011-04-29 09:23:36.936210
1004
+ char_code: DKK
1005
+ updated_at: 2011-04-29 09:23:36.936210
1006
+ id: 43
1007
+ basic: f
1008
+ locale:
1009
+ num_code: "208"
1010
+ currencies_8:
1011
+ name: Australian dollar
1012
+ created_at: 2011-04-29 09:23:36.353800
1013
+ char_code: AUD
1014
+ updated_at: 2011-04-29 09:23:36.353800
1015
+ id: 8
1016
+ basic: f
1017
+ locale:
1018
+ num_code: "036"
1019
+ currencies_15:
1020
+ name: Bahraini dinar
1021
+ created_at: 2011-04-29 09:23:36.472317
1022
+ char_code: BHD
1023
+ updated_at: 2011-04-29 09:23:36.472317
1024
+ id: 15
1025
+ basic: f
1026
+ locale:
1027
+ num_code: 048
1028
+ currencies_71:
1029
+ name: Jamaican dollar
1030
+ created_at: 2011-04-29 09:23:37.398927
1031
+ char_code: JMD
1032
+ updated_at: 2011-04-29 09:23:37.398927
1033
+ id: 71
1034
+ basic: f
1035
+ locale:
1036
+ num_code: "388"
1037
+ currencies_176:
1038
+ name: South African rand
1039
+ created_at: 2011-04-29 09:23:39.461584
1040
+ char_code: ZAR
1041
+ updated_at: 2011-04-29 09:23:39.461584
1042
+ id: 176
1043
+ basic: f
1044
+ locale:
1045
+ num_code: "710"
1046
+ currencies_148:
1047
+ name: Ugandan shilling
1048
+ created_at: 2011-04-29 09:23:38.780552
1049
+ char_code: UGX
1050
+ updated_at: 2011-04-29 09:23:38.780552
1051
+ id: 148
1052
+ basic: f
1053
+ locale:
1054
+ num_code: "800"
1055
+ currencies_44:
1056
+ name: Dominican peso
1057
+ created_at: 2011-04-29 09:23:36.950666
1058
+ char_code: DOP
1059
+ updated_at: 2011-04-29 09:23:36.950666
1060
+ id: 44
1061
+ basic: f
1062
+ locale:
1063
+ num_code: "214"
1064
+ currencies_9:
1065
+ name: Aruban florin
1066
+ created_at: 2011-04-29 09:23:36.370181
1067
+ char_code: AWG
1068
+ updated_at: 2011-04-29 09:23:36.370181
1069
+ id: 9
1070
+ basic: f
1071
+ locale:
1072
+ num_code: "533"
1073
+ currencies_16:
1074
+ name: Burundian franc
1075
+ created_at: 2011-04-29 09:23:36.489093
1076
+ char_code: BIF
1077
+ updated_at: 2011-04-29 09:23:36.489093
1078
+ id: 16
1079
+ basic: f
1080
+ locale:
1081
+ num_code: "108"
1082
+ currencies_72:
1083
+ name: Jordanian dinar
1084
+ created_at: 2011-04-29 09:23:37.415190
1085
+ char_code: JOD
1086
+ updated_at: 2011-04-29 09:23:37.415190
1087
+ id: 72
1088
+ basic: f
1089
+ locale:
1090
+ num_code: "400"
1091
+ currencies_177:
1092
+ name: Zambian kwacha
1093
+ created_at: 2011-04-29 09:23:39.478933
1094
+ char_code: ZMK
1095
+ updated_at: 2011-04-29 09:23:39.478933
1096
+ id: 177
1097
+ basic: f
1098
+ locale:
1099
+ num_code: "894"
1100
+ currencies_149:
1101
+ name: United States dollar
1102
+ created_at: 2011-04-29 09:23:38.804944
1103
+ char_code: USD
1104
+ updated_at: 2011-04-29 09:31:05.245228
1105
+ id: 149
1106
+ basic: t
1107
+ locale: en
1108
+ num_code: "840"
1109
+ currencies_17:
1110
+ name: Bermudian dollar (customarily known as Bermuda dollar)
1111
+ created_at: 2011-04-29 09:23:36.506325
1112
+ char_code: BMD
1113
+ updated_at: 2011-04-29 09:23:36.506325
1114
+ id: 17
1115
+ basic: f
1116
+ locale:
1117
+ num_code: "060"
1118
+ currencies_73:
1119
+ name: Japanese yen
1120
+ created_at: 2011-04-29 09:23:37.431058
1121
+ char_code: JPY
1122
+ updated_at: 2011-04-29 09:23:37.431058
1123
+ id: 73
1124
+ basic: f
1125
+ locale:
1126
+ num_code: "392"
1127
+ currencies_45:
1128
+ name: Algerian dinar
1129
+ created_at: 2011-04-29 09:23:36.967234
1130
+ char_code: DZD
1131
+ updated_at: 2011-04-29 09:23:36.967234
1132
+ id: 45
1133
+ basic: f
1134
+ locale:
1135
+ num_code: "012"
1136
+ currencies_178:
1137
+ name: Zimbabwe dollar
1138
+ created_at: 2011-04-29 09:23:39.493765
1139
+ char_code: ZWL
1140
+ updated_at: 2011-04-29 09:23:39.493765
1141
+ id: 178
1142
+ basic: f
1143
+ locale:
1144
+ num_code: "932"
1145
+ currencies_120:
1146
+ name: Qatari rial
1147
+ created_at: 2011-04-29 09:23:38.314072
1148
+ char_code: QAR
1149
+ updated_at: 2011-04-29 09:23:38.314072
1150
+ id: 120
1151
+ basic: f
1152
+ locale:
1153
+ num_code: "634"
1154
+ currencies_18:
1155
+ name: Brunei dollar
1156
+ created_at: 2011-04-29 09:23:36.519992
1157
+ char_code: BND
1158
+ updated_at: 2011-04-29 09:23:36.519992
1159
+ id: 18
1160
+ basic: f
1161
+ locale:
1162
+ num_code: 096
1163
+ currencies_74:
1164
+ name: Kenyan shilling
1165
+ created_at: 2011-04-29 09:23:37.446954
1166
+ char_code: KES
1167
+ updated_at: 2011-04-29 09:23:37.446954
1168
+ id: 74
1169
+ basic: f
1170
+ locale:
1171
+ num_code: "404"
1172
+ currencies_46:
1173
+ name: Egyptian pound
1174
+ created_at: 2011-04-29 09:23:36.992699
1175
+ char_code: EGP
1176
+ updated_at: 2011-04-29 09:23:36.992699
1177
+ id: 46
1178
+ basic: f
1179
+ locale:
1180
+ num_code: "818"
1181
+ currencies_19:
1182
+ name: Boliviano
1183
+ created_at: 2011-04-29 09:23:36.536254
1184
+ char_code: BOB
1185
+ updated_at: 2011-04-29 09:23:36.536254
1186
+ id: 19
1187
+ basic: f
1188
+ locale:
1189
+ num_code: 068
1190
+ currencies_75:
1191
+ name: Kyrgyzstani som
1192
+ created_at: 2011-04-29 09:23:37.463358
1193
+ char_code: KGS
1194
+ updated_at: 2011-04-29 09:23:37.463358
1195
+ id: 75
1196
+ basic: f
1197
+ locale:
1198
+ num_code: "417"
1199
+ currencies_47:
1200
+ name: Eritrean nakfa
1201
+ created_at: 2011-04-29 09:23:37.011172
1202
+ char_code: ERN
1203
+ updated_at: 2011-04-29 09:23:37.011172
1204
+ id: 47
1205
+ basic: f
1206
+ locale:
1207
+ num_code: "232"
1208
+ currencies_150:
1209
+ name: United States dollar (next day) (funds code)
1210
+ created_at: 2011-04-29 09:23:38.818956
1211
+ char_code: USN
1212
+ updated_at: 2011-04-29 09:23:38.818956
1213
+ id: 150
1214
+ basic: f
1215
+ locale:
1216
+ num_code: "997"
1217
+ currencies_121:
1218
+ name: Romanian new leu
1219
+ created_at: 2011-04-29 09:23:38.331218
1220
+ char_code: RON
1221
+ updated_at: 2011-04-29 09:23:38.331218
1222
+ id: 121
1223
+ basic: f
1224
+ locale:
1225
+ num_code: "946"
1226
+ currencies_76:
1227
+ name: Cambodian riel
1228
+ created_at: 2011-04-29 09:23:37.480269
1229
+ char_code: KHR
1230
+ updated_at: 2011-04-29 09:23:37.480269
1231
+ id: 76
1232
+ basic: f
1233
+ locale:
1234
+ num_code: "116"
1235
+ currencies_48:
1236
+ name: Ethiopian birr
1237
+ created_at: 2011-04-29 09:23:37.027236
1238
+ char_code: ETB
1239
+ updated_at: 2011-04-29 09:23:37.027236
1240
+ id: 48
1241
+ basic: f
1242
+ locale:
1243
+ num_code: "230"
1244
+ currencies_151:
1245
+ name: United States dollar (same day) (funds code) (one source[who?] claims it is no longer used, but it is still on the ISO 4217-MA list)
1246
+ created_at: 2011-04-29 09:23:38.870967
1247
+ char_code: USS
1248
+ updated_at: 2011-04-29 09:23:38.870967
1249
+ id: 151
1250
+ basic: f
1251
+ locale:
1252
+ num_code: "998"
1253
+ currencies_122:
1254
+ name: Serbian dinar
1255
+ created_at: 2011-04-29 09:23:38.347172
1256
+ char_code: RSD
1257
+ updated_at: 2011-04-29 09:23:38.347172
1258
+ id: 122
1259
+ basic: f
1260
+ locale:
1261
+ num_code: "941"
1262
+ currencies_77:
1263
+ name: Comoro franc
1264
+ created_at: 2011-04-29 09:23:37.495520
1265
+ char_code: KMF
1266
+ updated_at: 2011-04-29 09:23:37.495520
1267
+ id: 77
1268
+ basic: f
1269
+ locale:
1270
+ num_code: "174"
1271
+ currencies_49:
1272
+ name: Euro
1273
+ created_at: 2011-04-29 09:23:37.044014
1274
+ char_code: EUR
1275
+ updated_at: 2011-04-29 09:23:37.044014
1276
+ id: 49
1277
+ basic: f
1278
+ locale:
1279
+ num_code: "978"
1280
+ currencies_152:
1281
+ name: Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code)
1282
+ created_at: 2011-04-29 09:23:38.893716
1283
+ char_code: UYI
1284
+ updated_at: 2011-04-29 09:23:38.893716
1285
+ id: 152
1286
+ basic: f
1287
+ locale:
1288
+ num_code: "940"
1289
+ currencies_123:
1290
+ name: Russian rouble
1291
+ created_at: 2011-04-29 09:23:38.363144
1292
+ char_code: RUB
1293
+ updated_at: 2011-04-29 09:31:54.895206
1294
+ id: 123
1295
+ basic: f
1296
+ locale: ru
1297
+ num_code: "643"
1298
+ currencies_78:
1299
+ name: North Korean won
1300
+ created_at: 2011-04-29 09:23:37.510967
1301
+ char_code: KPW
1302
+ updated_at: 2011-04-29 09:23:37.510967
1303
+ id: 78
1304
+ basic: f
1305
+ locale:
1306
+ num_code: "408"
1307
+ currencies_153:
1308
+ name: Uruguayan peso
1309
+ created_at: 2011-04-29 09:23:38.911636
1310
+ char_code: UYU
1311
+ updated_at: 2011-04-29 09:23:38.911636
1312
+ id: 153
1313
+ basic: f
1314
+ locale:
1315
+ num_code: "858"
1316
+ currencies_124:
1317
+ name: Rwandan franc
1318
+ created_at: 2011-04-29 09:23:38.386805
1319
+ char_code: RWF
1320
+ updated_at: 2011-04-29 09:23:38.386805
1321
+ id: 124
1322
+ basic: f
1323
+ locale:
1324
+ num_code: "646"
1325
+ currencies_20:
1326
+ name: Bolivian Mvdol (funds code)
1327
+ created_at: 2011-04-29 09:23:36.551841
1328
+ char_code: BOV
1329
+ updated_at: 2011-04-29 09:23:36.551841
1330
+ id: 20
1331
+ basic: f
1332
+ locale:
1333
+ num_code: "984"
1334
+ currencies_79:
1335
+ name: South Korean won
1336
+ created_at: 2011-04-29 09:23:37.527144
1337
+ char_code: KRW
1338
+ updated_at: 2011-04-29 09:23:37.527144
1339
+ id: 79
1340
+ basic: f
1341
+ locale:
1342
+ num_code: "410"
1343
+ currencies_125:
1344
+ name: Saudi riyal
1345
+ created_at: 2011-04-29 09:23:38.400152
1346
+ char_code: SAR
1347
+ updated_at: 2011-04-29 09:23:38.400152
1348
+ id: 125
1349
+ basic: f
1350
+ locale:
1351
+ num_code: "682"
1352
+ currencies_21:
1353
+ name: Brazilian real
1354
+ created_at: 2011-04-29 09:23:36.568198
1355
+ char_code: BRL
1356
+ updated_at: 2011-04-29 09:23:36.568198
1357
+ id: 21
1358
+ basic: f
1359
+ locale:
1360
+ num_code: "986"
1361
+ currencies_154:
1362
+ name: Uzbekistan som
1363
+ created_at: 2011-04-29 09:23:38.947854
1364
+ char_code: UZS
1365
+ updated_at: 2011-04-29 09:23:38.947854
1366
+ id: 154
1367
+ basic: f
1368
+ locale:
1369
+ num_code: "860"
1370
+ currencies_126:
1371
+ name: Solomon Islands dollar
1372
+ created_at: 2011-04-29 09:23:38.416063
1373
+ char_code: SBD
1374
+ updated_at: 2011-04-29 09:23:38.416063
1375
+ id: 126
1376
+ basic: f
1377
+ locale:
1378
+ num_code: 090
1379
+ currencies_22:
1380
+ name: Bahamian dollar
1381
+ created_at: 2011-04-29 09:23:36.584166
1382
+ char_code: BSD
1383
+ updated_at: 2011-04-29 09:23:36.584166
1384
+ id: 22
1385
+ basic: f
1386
+ locale:
1387
+ num_code: "044"
1388
+ currencies_50:
1389
+ name: Fiji dollar
1390
+ created_at: 2011-04-29 09:23:37.061236
1391
+ char_code: FJD
1392
+ updated_at: 2011-04-29 09:23:37.061236
1393
+ id: 50
1394
+ basic: f
1395
+ locale:
1396
+ num_code: "242"
1397
+ currencies_155:
1398
+ name: "Venezuelan bol\xC3\xADvar fuerte"
1399
+ created_at: 2011-04-29 09:23:39.045628
1400
+ char_code: VEF
1401
+ updated_at: 2011-04-29 09:23:39.045628
1402
+ id: 155
1403
+ basic: f
1404
+ locale:
1405
+ num_code: "937"
1406
+ currencies_127:
1407
+ name: Seychelles rupee
1408
+ created_at: 2011-04-29 09:23:38.431753
1409
+ char_code: SCR
1410
+ updated_at: 2011-04-29 09:23:38.431753
1411
+ id: 127
1412
+ basic: f
1413
+ locale:
1414
+ num_code: "690"
1415
+ currencies_23:
1416
+ name: Bhutanese ngultrum
1417
+ created_at: 2011-04-29 09:23:36.600468
1418
+ char_code: BTN
1419
+ updated_at: 2011-04-29 09:23:36.600468
1420
+ id: 23
1421
+ basic: f
1422
+ locale:
1423
+ num_code: "064"
1424
+ currencies_51:
1425
+ name: Falkland Islands pound
1426
+ created_at: 2011-04-29 09:23:37.077003
1427
+ char_code: FKP
1428
+ updated_at: 2011-04-29 09:23:37.077003
1429
+ id: 51
1430
+ basic: f
1431
+ locale:
1432
+ num_code: "238"
1433
+ currencies_156:
1434
+ name: "Vietnamese \xC4\x91\xE1\xBB\x93ng"
1435
+ created_at: 2011-04-29 09:23:39.062808
1436
+ char_code: VND
1437
+ updated_at: 2011-04-29 09:23:39.062808
1438
+ id: 156
1439
+ basic: f
1440
+ locale:
1441
+ num_code: "704"
1442
+ currencies_128:
1443
+ name: Sudanese pound
1444
+ created_at: 2011-04-29 09:23:38.445575
1445
+ char_code: SDG
1446
+ updated_at: 2011-04-29 09:23:38.445575
1447
+ id: 128
1448
+ basic: f
1449
+ locale:
1450
+ num_code: "938"
1451
+ currencies_80:
1452
+ name: Kuwaiti dinar
1453
+ created_at: 2011-04-29 09:23:37.551871
1454
+ char_code: KWD
1455
+ updated_at: 2011-04-29 09:23:37.551871
1456
+ id: 80
1457
+ basic: f
1458
+ locale:
1459
+ num_code: "414"
1460
+ currencies_52:
1461
+ name: Pound sterling
1462
+ created_at: 2011-04-29 09:23:37.093200
1463
+ char_code: GBP
1464
+ updated_at: 2011-04-29 09:23:37.093200
1465
+ id: 52
1466
+ basic: f
1467
+ locale:
1468
+ num_code: "826"
1469
+ currencies_24:
1470
+ name: Botswana pula
1471
+ created_at: 2011-04-29 09:23:36.618134
1472
+ char_code: BWP
1473
+ updated_at: 2011-04-29 09:23:36.618134
1474
+ id: 24
1475
+ basic: f
1476
+ locale:
1477
+ num_code: "072"
1478
+ currencies_157:
1479
+ name: Vanuatu vatu
1480
+ created_at: 2011-04-29 09:23:39.080968
1481
+ char_code: VUV
1482
+ updated_at: 2011-04-29 09:23:39.080968
1483
+ id: 157
1484
+ basic: f
1485
+ locale:
1486
+ num_code: "548"
1487
+ currencies_129:
1488
+ name: Swedish krona/kronor
1489
+ created_at: 2011-04-29 09:23:38.460038
1490
+ char_code: SEK
1491
+ updated_at: 2011-04-29 09:23:38.460038
1492
+ id: 129
1493
+ basic: f
1494
+ locale:
1495
+ num_code: "752"
1496
+ currencies_81:
1497
+ name: Cayman Islands dollar
1498
+ created_at: 2011-04-29 09:23:37.568851
1499
+ char_code: KYD
1500
+ updated_at: 2011-04-29 09:23:37.568851
1501
+ id: 81
1502
+ basic: f
1503
+ locale:
1504
+ num_code: "136"
1505
+ currencies_53:
1506
+ name: Georgian lari
1507
+ created_at: 2011-04-29 09:23:37.108997
1508
+ char_code: GEL
1509
+ updated_at: 2011-04-29 09:23:37.108997
1510
+ id: 53
1511
+ basic: f
1512
+ locale:
1513
+ num_code: "981"
1514
+ currencies_25:
1515
+ name: Belarusian ruble
1516
+ created_at: 2011-04-29 09:23:36.641953
1517
+ char_code: BYR
1518
+ updated_at: 2011-04-29 09:23:36.641953
1519
+ id: 25
1520
+ basic: f
1521
+ locale:
1522
+ num_code: "974"
1523
+ currencies_158:
1524
+ name: Samoan tala
1525
+ created_at: 2011-04-29 09:23:39.098484
1526
+ char_code: WST
1527
+ updated_at: 2011-04-29 09:23:39.098484
1528
+ id: 158
1529
+ basic: f
1530
+ locale:
1531
+ num_code: "882"
1532
+ currencies_82:
1533
+ name: Kazakhstani tenge
1534
+ created_at: 2011-04-29 09:23:37.582324
1535
+ char_code: KZT
1536
+ updated_at: 2011-04-29 09:23:37.582324
1537
+ id: 82
1538
+ basic: f
1539
+ locale:
1540
+ num_code: "398"
1541
+ currencies_54:
1542
+ name: Ghanaian cedi
1543
+ created_at: 2011-04-29 09:23:37.121674
1544
+ char_code: GHS
1545
+ updated_at: 2011-04-29 09:23:37.121674
1546
+ id: 54
1547
+ basic: f
1548
+ locale:
1549
+ num_code: "936"
1550
+ currencies_26:
1551
+ name: Belize dollar
1552
+ created_at: 2011-04-29 09:23:36.658136
1553
+ char_code: BZD
1554
+ updated_at: 2011-04-29 09:23:36.658136
1555
+ id: 26
1556
+ basic: f
1557
+ locale:
1558
+ num_code: 084
1559
+ currencies_159:
1560
+ name: CFA franc BEAC
1561
+ created_at: 2011-04-29 09:23:39.116275
1562
+ char_code: XAF
1563
+ updated_at: 2011-04-29 09:23:39.116275
1564
+ id: 159
1565
+ basic: f
1566
+ locale:
1567
+ num_code: "950"
1568
+ currencies_83:
1569
+ name: Lao kip
1570
+ created_at: 2011-04-29 09:23:37.598030
1571
+ char_code: LAK
1572
+ updated_at: 2011-04-29 09:23:37.598030
1573
+ id: 83
1574
+ basic: f
1575
+ locale:
1576
+ num_code: "418"
1577
+ currencies_55:
1578
+ name: Gibraltar pound
1579
+ created_at: 2011-04-29 09:23:37.133980
1580
+ char_code: GIP
1581
+ updated_at: 2011-04-29 09:23:37.133980
1582
+ id: 55
1583
+ basic: f
1584
+ locale:
1585
+ num_code: "292"
1586
+ currencies_27:
1587
+ name: Canadian dollar
1588
+ created_at: 2011-04-29 09:23:36.674247
1589
+ char_code: CAD
1590
+ updated_at: 2011-04-29 09:23:36.674247
1591
+ id: 27
1592
+ basic: f
1593
+ locale:
1594
+ num_code: "124"
1595
+ currencies_100:
1596
+ name: Maldivian rufiyaa
1597
+ created_at: 2011-04-29 09:23:37.992164
1598
+ char_code: MVR
1599
+ updated_at: 2011-04-29 09:23:37.992164
1600
+ id: 100
1601
+ basic: f
1602
+ locale:
1603
+ num_code: "462"