bs2_api 1.1.4 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33eb2925a576f4ed53581e7cd37ecbd79f27ef2b5c72fb9d3604204d3eebd564
4
- data.tar.gz: bd149acdb6681d54ccea187050dcda8aea5399f6fc96e9013e8002bc12f8f078
3
+ metadata.gz: 36180931b2458b20647c4502b35a3cc31bc6ab1b683e1162119bec53fb5e5010
4
+ data.tar.gz: 5d6d7af417105158da1ce1f1d90fb0980c32974ca9d1057b77323d570bf0e09c
5
5
  SHA512:
6
- metadata.gz: 93ca138407d10c46e3c4114b7990f32cd9532ad4a3fb65857cbb15facee4e4417d26c0315cfa8f87cbcf89e8ad40b9c4faaabc05ba2056601e0ddda3bd787f22
7
- data.tar.gz: 2996f7f2e22b260573e9e7fd23f924be0716f8a0ff4fce20a29b3eea39a9b055614d0c6bec1afd87a5e280f7ed94d0fd04d2f0dc859e5aa44c19bde58a7505e0
6
+ metadata.gz: 73090ceb182ed5569c12937540174a3bcd41e480bc92ffe4e88d0cc00f85d2796d76857d27b5099c3e5e54f7029a11d06433f6c57492a2fd042bc5eec118b439
7
+ data.tar.gz: d8996fb89daba65b337dfca59cf783c043db7b1c79891f88e9442f262fc9fcefd2eafd5ec5924bbfdb87b52740b8f33af74d45b8432033528d1f21a94644b0c3
data/.env.example CHANGED
@@ -1,3 +1,3 @@
1
1
  BS2_ENVIRONMENT=sandbox
2
2
  BS2_CLIENT_ID=123
3
- BS2_CLIENT_SECRET=123
3
+ BS2_CLIENT_SECRET=123
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bs2_api (1.1.1)
4
+ bs2_api (1.2.0)
5
5
  activesupport
6
6
  builder
7
7
  bundler
@@ -37,7 +37,7 @@ GEM
37
37
  method_source (1.0.0)
38
38
  mime-types (3.4.1)
39
39
  mime-types-data (~> 3.2015)
40
- mime-types-data (3.2021.1115)
40
+ mime-types-data (3.2022.0105)
41
41
  minitest (5.15.0)
42
42
  multi_xml (0.6.0)
43
43
  pry (0.13.1)
@@ -13,17 +13,17 @@ module Bs2Api
13
13
 
14
14
  def initialize(args = {})
15
15
  @bank_code = args.fetch(:bank_code, nil)
16
+ @bank_name = args.fetch(:bank_name, nil)
16
17
  @agency = args.fetch(:agency, nil)
17
18
  @number = args.fetch(:number, nil)
18
19
  @type = args.fetch(:type, nil)
19
- @bank_name = get_bank_name
20
20
  end
21
21
 
22
22
  def to_hash
23
23
  ActiveSupport::HashWithIndifferentAccess.new(
24
24
  {
25
25
  "banco": @bank_code,
26
- "bancoNome": get_bank_name,
26
+ "bancoNome": @bank_name,
27
27
  "agencia": @agency,
28
28
  "numero": @number,
29
29
  "tipo": @type
@@ -54,11 +54,6 @@ module Bs2Api
54
54
  def saving?
55
55
  @type == TYPES[:saving]
56
56
  end
57
-
58
- private
59
- def get_bank_name
60
- Bs2Api::Util::BankService.find_by_code(@bank_code)["name"]
61
- end
62
57
  end
63
58
  end
64
- end
59
+ end
@@ -14,7 +14,7 @@ module Bs2Api
14
14
  def to_hash
15
15
  ActiveSupport::HashWithIndifferentAccess.new(
16
16
  {
17
- "ispb": get_ispb,
17
+ "ispb": @ispb,
18
18
  "conta": @account.to_hash,
19
19
  "pessoa": @customer.to_hash
20
20
  }
@@ -31,11 +31,6 @@ module Bs2Api
31
31
  customer: Bs2Api::Entities::Customer.from_response(hash["pessoa"])
32
32
  )
33
33
  end
34
-
35
- private
36
- def get_ispb
37
- Bs2Api::Util::BankService.find_by_code(@account.bank_code)["ispb"]
38
- end
39
34
  end
40
35
  end
41
- end
36
+ end
@@ -62,4 +62,4 @@ module Bs2Api
62
62
  end
63
63
  end
64
64
  end
65
- end
65
+ end
@@ -27,7 +27,7 @@ module Bs2Api
27
27
  hash = ActiveSupport::HashWithIndifferentAccess.new(hash_payload)
28
28
 
29
29
  Bs2Api::Entities::Payment.new(
30
- payment_id: hash["pagamentoId"] || hash["cobranca"]["id"],
30
+ payment_id: hash["cobranca"]["id"] || hash["pagamentoId"],
31
31
  end_to_end_id: hash["endToEndId"],
32
32
  receiver: Bs2Api::Entities::Bank.from_response(hash["recebedor"]),
33
33
  payer: Bs2Api::Entities::Bank.from_response(hash["pagador"])
@@ -35,4 +35,4 @@ module Bs2Api
35
35
  end
36
36
  end
37
37
  end
38
- end
38
+ end
@@ -37,4 +37,4 @@ module Bs2Api
37
37
  end
38
38
  end
39
39
  end
40
- end
40
+ end
@@ -24,4 +24,4 @@ module Bs2Api
24
24
  end
25
25
  end
26
26
  end
27
- end
27
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bs2Api
4
- VERSION = "1.1.4"
4
+ VERSION = "1.2.0"
5
5
  end
data/lib/bs2_api.rb CHANGED
@@ -8,7 +8,6 @@ require "active_support/core_ext/object/blank"
8
8
  require 'bs2_api/version'
9
9
  require 'bs2_api/configuration'
10
10
 
11
- require 'bs2_api/util/bank_service'
12
11
  require 'bs2_api/util/response'
13
12
 
14
13
  require 'bs2_api/errors/base'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bs2_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kim Pastro
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-14 00:00:00.000000000 Z
11
+ date: 2022-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: builder
@@ -221,8 +221,6 @@ files:
221
221
  - lib/bs2_api/payment/key.rb
222
222
  - lib/bs2_api/payment/manual.rb
223
223
  - lib/bs2_api/request/auth.rb
224
- - lib/bs2_api/util/bank_service.rb
225
- - lib/bs2_api/util/banks.yml
226
224
  - lib/bs2_api/util/response.rb
227
225
  - lib/bs2_api/version.rb
228
226
  homepage: https://github.com/latamgateway/bs2_api
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'yaml'
4
-
5
- module Bs2Api
6
- module Util
7
- class BankService
8
- class << self
9
- def find_by_code code
10
- code = code.to_s.strip
11
- bank = bank_list.find {|b| b["code"] == code }
12
- raise Bs2Api::Errors::MissingBank, "Bank with code '#{code}' not registered into util/banks.yml file" if bank.blank?
13
- bank
14
- end
15
-
16
- def bank_list
17
- YAML.load_file(File.join(__dir__, 'banks.yml'))
18
- end
19
- end
20
- end
21
- end
22
- end
@@ -1,648 +0,0 @@
1
- - name: "BANCO DO BRASIL S.A (BB)"
2
- code: "001"
3
- ispb: "00000000"
4
- - name: "BRADESCO S.A"
5
- code: "237"
6
- ispb: "60746948"
7
- - name: "Banco Digio S.A"
8
- code: "335"
9
- ispb: "27098060"
10
- - name: "NU PAGAMENTOS S.A (NUBANK)"
11
- code: "260"
12
- ispb: "18236120"
13
- - name: "Pagseguro Internet S.A (PagBank)"
14
- code: "290"
15
- ispb: "08561701"
16
- - name: "PicPay Servicos S.A."
17
- code: "380"
18
- ispb: "22896431"
19
- - name: "Mercado Pago - conta do Mercado Livre"
20
- code: "323"
21
- ispb: "10573521"
22
- - name: "NEXT BANK (UTILIZAR O MESMO CÓDIGO DO BRADESCO)"
23
- code: "237"
24
- ispb: "60746948"
25
- - name: "BANCO SOFISA S.A (SOFISA DIRETO)"
26
- code: "637"
27
- ispb: "60889128"
28
- - name: "BANCO INTER S.A"
29
- code: "077"
30
- ispb: "00416968"
31
- - name: "ITAÚ UNIBANCO S.A"
32
- code: "341"
33
- ispb: "60701190"
34
- - name: "CAIXA ECONÔMICA FEDERAL (CEF)"
35
- code: "104"
36
- ispb: "00360305"
37
- - name: "BANCO SANTANDER BRASIL S.A"
38
- code: "033"
39
- ispb: "90400888"
40
- - name: "BANCO ORIGINAL S.A"
41
- code: "212"
42
- ispb: "92894922"
43
- - name: "BANCOOB (BANCO COOPERATIVO DO BRASIL)"
44
- code: "756"
45
- ispb: "02038232"
46
- - name: "BANCO VOTORANTIM S.A"
47
- code: "655"
48
- ispb: "59588111"
49
- - name: "NEON PAGAMENTOS S.A (OS MESMOS DADOS DO BANCO VOTORANTIM)"
50
- code: "655"
51
- ispb: "59588111"
52
- - name: "BANRISUL – BANCO DO ESTADO DO RIO GRANDE DO SUL S.A"
53
- code: "041"
54
- ispb: "92702067"
55
- - name: "BANCO MERCANTIL DO BRASIL S.A"
56
- code: "389"
57
- ispb: "17184037"
58
- - name: "BANCO SAFRA S.A"
59
- code: "422"
60
- ispb: "58160789"
61
- - name: "BANCO DE BRASÍLIA (BRB)"
62
- code: "070"
63
- ispb: "00000208"
64
- - name: "UNICRED COOPERATIVA"
65
- code: "136"
66
- ispb: "00315557"
67
- - name: "BANCO RIBEIRÃO PRETO"
68
- code: "741"
69
- ispb: "00517645"
70
- - name: "BANCO CETELEM S.A"
71
- code: "739"
72
- ispb: "00558456"
73
- - name: "BANCO SEMEAR S.A"
74
- code: "743"
75
- ispb: "00795423"
76
- - name: "PLANNER CORRETORA DE VALORES S.A"
77
- code: "100"
78
- ispb: "00806535"
79
- - name: "BANCO B3 S.A"
80
- code: "096"
81
- ispb: "00997185"
82
- - name: "Banco RABOBANK INTERNACIONAL DO BRASIL S.A"
83
- code: "747"
84
- ispb: "01023570"
85
- - name: "SICREDI S.A"
86
- code: "748"
87
- ispb: "01181521"
88
- - name: "BNP PARIBAS BRASIL S.A"
89
- code: "752"
90
- ispb: "01522368"
91
- - name: "UNICRED CENTRAL RS"
92
- code: "091"
93
- ispb: "01634601"
94
- - name: "KIRTON BANK"
95
- code: "399"
96
- ispb: "01701201"
97
- - name: "PORTOCRED S.A"
98
- code: "108"
99
- ispb: "01800019"
100
- - name: "BANCO KEB HANA DO BRASIL S.A"
101
- code: "757"
102
- ispb: "02318507"
103
- - name: "XP INVESTIMENTOS S.A"
104
- code: "102"
105
- ispb: "02332886"
106
- - name: "BANCO XP S/A"
107
- code: "348"
108
- ispb: "33264668"
109
- - name: "SUPER PAGAMENTOS S/A (SUPERDITAL)"
110
- code: "340"
111
- ispb: "09554480"
112
- - name: "GERENCIANET PAGAMENTOS DO BRASIL"
113
- code: "364"
114
- ispb: "09089356"
115
- - name: "UNIPRIME NORTE DO PARANÁ"
116
- code: "084"
117
- ispb: "02398976"
118
- - name: "CM CAPITAL MARKETS CCTVM LTDA"
119
- code: "180"
120
- ispb: "02685483"
121
- - name: "BANCO MORGAN STANLEY S.A"
122
- code: "066"
123
- ispb: "02801938"
124
- - name: "UBS BRASIL CCTVM S.A"
125
- code: "015"
126
- ispb: "02819125"
127
- - name: "TREVISO CC S.A"
128
- code: "143"
129
- ispb: "02992317"
130
- - name: "HIPERCARD BM S.A"
131
- code: "062"
132
- ispb: "03012230"
133
- - name: "BCO. J.SAFRA S.A"
134
- code: "074"
135
- ispb: "03017677"
136
- - name: "UNIPRIME CENTRAL CCC LTDA"
137
- code: "099"
138
- ispb: "03046391"
139
- - name: "BANCO ALFA S.A."
140
- code: "025"
141
- ispb: "03323840"
142
- - name: "BCO ABN AMRO S.A"
143
- code: "075"
144
- ispb: "03532415"
145
- - name: "BANCO CARGILL S.A"
146
- code: "040"
147
- ispb: "03609817"
148
- - name: "SERVICOOP"
149
- code: "190"
150
- ispb: "03973814"
151
- - name: "BANCO BRADESCARD"
152
- code: "063"
153
- ispb: "04184779"
154
- - name: "NOVA FUTURA CTVM LTDA"
155
- code: "191"
156
- ispb: "04257795"
157
- - name: "GOLDMAN SACHS DO BRASIL BM S.A"
158
- code: "064"
159
- ispb: "04332281"
160
- - name: "CCC NOROESTE BRASILEIRO LTDA"
161
- code: "097"
162
- ispb: "04632856"
163
- - name: "CCM DESP TRÂNS SC E RS"
164
- code: "016"
165
- ispb: "04715685"
166
- - name: "BANCO INBURSA"
167
- code: "012"
168
- ispb: "04866275"
169
- - name: "BANCO DA AMAZONIA S.A"
170
- code: "003"
171
- ispb: "04902979"
172
- - name: "CONFIDENCE CC S.A"
173
- code: "060"
174
- ispb: "04913129"
175
- - name: "BANCO DO ESTADO DO PARÁ S.A"
176
- code: "037"
177
- ispb: "04913711"
178
- - name: "CASA CREDITO S.A"
179
- code: "159"
180
- ispb: "05442029"
181
- - name: "ALBATROSS CCV S.A"
182
- code: "172"
183
- ispb: "05452073"
184
- - name: "COOP CENTRAL AILOS"
185
- code: "085"
186
- ispb: "05463212"
187
- - name: "CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO"
188
- code: "114"
189
- ispb: "05790149"
190
- - name: "BANCO BBI S.A"
191
- code: "036"
192
- ispb: "06271464"
193
- - name: "BANCO BRADESCO FINANCIAMENTOS S.A"
194
- code: "394"
195
- ispb: "07207996"
196
- - name: "BANCO DO NORDESTE DO BRASIL S.A."
197
- code: "004"
198
- ispb: "07237373"
199
- - name: "BANCO CCB BRASIL S.A"
200
- code: "320"
201
- ispb: "07450604"
202
- - name: "HS FINANCEIRA"
203
- code: "189"
204
- ispb: "07512441"
205
- - name: "LECCA CFI S.A"
206
- code: "105"
207
- ispb: "07652226"
208
- - name: "BANCO KDB BRASIL S.A."
209
- code: "076"
210
- ispb: "07656500"
211
- - name: "BANCO TOPÁZIO S.A"
212
- code: "082"
213
- ispb: "07679404"
214
- - name: "CCR DE OURO"
215
- code: "286"
216
- ispb: "07853842"
217
- - name: "PÓLOCRED SCMEPP LTDA"
218
- code: "093"
219
- ispb: "07945233"
220
- - name: "CCR DE SÃO MIGUEL DO OESTE"
221
- code: "273"
222
- ispb: "08253539"
223
- - name: "ICAP DO BRASIL CTVM LTDA"
224
- code: "157"
225
- ispb: "09105360"
226
- - name: "SOCRED S.A"
227
- code: "183"
228
- ispb: "09210106"
229
- - name: "NATIXIS BRASIL S.A"
230
- code: "014"
231
- ispb: "09274232"
232
- - name: "CARUANA SCFI"
233
- code: "130"
234
- ispb: "09313766"
235
- - name: "CODEPE CVC S.A"
236
- code: "127"
237
- ispb: "09512542"
238
- - name: "BANCO ORIGINAL DO AGRONEGÓCIO S.A"
239
- code: "079"
240
- ispb: "09516419"
241
- - name: "BBN BANCO BRASILEIRO DE NEGOCIOS S.A"
242
- code: "081"
243
- ispb: "10264663"
244
- - name: "STANDARD CHARTERED BI S.A"
245
- code: "118"
246
- ispb: "11932017"
247
- - name: "CRESOL CONFEDERAÇÃO"
248
- code: "133"
249
- ispb: "10398952"
250
- - name: "BANCO AGIBANK S.A"
251
- code: "121"
252
- ispb: "10664513"
253
- - name: "BANCO DA CHINA BRASIL S.A"
254
- code: "083"
255
- ispb: "10690848"
256
- - name: "GET MONEY CC LTDA"
257
- code: "138"
258
- ispb: "10853017"
259
- - name: "BCO BANDEPE S.A"
260
- code: "024"
261
- ispb: "10866788"
262
- - name: "BANCO CONFIDENCE DE CÂMBIO S.A"
263
- code: "095"
264
- ispb: "11703662"
265
- - name: "BANCO FINAXIS"
266
- code: "094"
267
- ispb: "11758741"
268
- - name: "SENFF S.A"
269
- code: "276"
270
- ispb: "11970623"
271
- - name: "MULTIMONEY CC LTDA"
272
- code: "137"
273
- ispb: "12586596"
274
- - name: "BRK S.A"
275
- code: "092"
276
- ispb: "12865507"
277
- - name: "BANCO BCO DO ESTADO DE SERGIPE S.A"
278
- code: "047"
279
- ispb: "13009717"
280
- - name: "BEXS BANCO DE CAMBIO S.A."
281
- code: "144"
282
- ispb: "13059145"
283
- - name: "BR PARTNERS BI"
284
- code: "126"
285
- ispb: "13220493"
286
- - name: "BPP INSTITUIÇÃO DE PAGAMENTOS S.A"
287
- code: "301"
288
- ispb: "13370835"
289
- - name: "BRL TRUST DTVM SA"
290
- code: "173"
291
- ispb: "13486793"
292
- - name: "BANCO WESTERN UNION"
293
- code: "119"
294
- ispb: "13720915"
295
- - name: "PARANA BANCO S.A"
296
- code: "254"
297
- ispb: "14388334"
298
- - name: "BARIGUI CH"
299
- code: "268"
300
- ispb: "14511781"
301
- - name: "BANCO BOCOM BBM S.A"
302
- code: "107"
303
- ispb: "15114366"
304
- - name: "BANCO CAPITAL S.A"
305
- code: "412"
306
- ispb: "15173776"
307
- - name: "BANCO WOORI BANK DO BRASIL S.A"
308
- code: "124"
309
- ispb: "15357060"
310
- - name: "FACTA S.A. CFI"
311
- code: "149"
312
- ispb: "15581638"
313
- - name: "STONE PAGAMENTOS S.A"
314
- code: "197"
315
- ispb: "16501555"
316
- - name: "BROKER BRASIL CC LTDA"
317
- code: "142"
318
- ispb: "16944141"
319
- - name: "BANCO MERCANTIL DO BRASIL S.A."
320
- code: "389"
321
- ispb: "17184037"
322
- - name: "BANCO ITAÚ BBA S.A"
323
- code: "184"
324
- ispb: "17298092"
325
- - name: "BANCO TRIANGULO S.A (BANCO TRIÂNGULO)"
326
- code: "634"
327
- ispb: "17351180"
328
- - name: "SENSO CCVM S.A"
329
- code: "545"
330
- ispb: "17352220"
331
- - name: "ICBC DO BRASIL BM S.A"
332
- code: "132"
333
- ispb: "17453575"
334
- - name: "VIPS CC LTDA"
335
- code: "298"
336
- ispb: "17772370"
337
- - name: "UBS BRASIL BI S.A"
338
- code: "129"
339
- ispb: "18520834"
340
- - name: "MS BANK S.A BANCO DE CÂMBIO"
341
- code: "128"
342
- ispb: "19307785"
343
- - name: "PARMETAL DTVM LTDA"
344
- code: "194"
345
- ispb: "20155248"
346
- - name: "VORTX DTVM LTDA"
347
- code: "310"
348
- ispb: "22610500"
349
- - name: "COMMERZBANK BRASIL S.A BANCO MÚLTIPLO"
350
- code: "163"
351
- ispb: "23522214"
352
- - name: "AVISTA S.A"
353
- code: "280"
354
- ispb: "23862762"
355
- - name: "GUITTA CC LTDA"
356
- code: "146"
357
- ispb: "24074692"
358
- - name: "CCR DE PRIMAVERA DO LESTE"
359
- code: "279"
360
- ispb: "26563270"
361
- - name: "DACASA FINANCEIRA S/A"
362
- code: "182"
363
- ispb: "27406222"
364
- - name: "GENIAL INVESTIMENTOS CVM S.A"
365
- code: "278"
366
- ispb: "27652684"
367
- - name: "IB CCTVM LTDA"
368
- code: "271"
369
- ispb: "27842177"
370
- - name: "BANCO BANESTES S.A"
371
- code: "021"
372
- ispb: "28127603"
373
- - name: "BANCO ABC BRASIL S.A"
374
- code: "246"
375
- ispb: "28195667"
376
- - name: "SCOTIABANK BRASIL"
377
- code: "751"
378
- ispb: "29030467"
379
- - name: "BANCO BTG PACTUAL S.A"
380
- code: "208"
381
- ispb: "30306294"
382
- - name: "BANCO MODAL S.A"
383
- code: "746"
384
- ispb: "30723886"
385
- - name: "BANCO CLASSICO S.A"
386
- code: "241"
387
- ispb: "31597552"
388
- - name: "BANCO GUANABARA S.A"
389
- code: "612"
390
- ispb: "31880826"
391
- - name: "BANCO INDUSTRIAL DO BRASIL S.A"
392
- code: "604"
393
- ispb: "31895683"
394
- - name: "BANCO CREDIT SUISSE (BRL) S.A"
395
- code: "505"
396
- ispb: "32062580"
397
- - name: "BANCO FAIR CC S.A"
398
- code: "196"
399
- ispb: "32648370"
400
- - name: "BANCO LA NACION ARGENTINA"
401
- code: "300"
402
- ispb: "33042151"
403
- - name: "CITIBANK N.A"
404
- code: "477"
405
- ispb: "33042953"
406
- - name: "BANCO CEDULA S.A"
407
- code: "266"
408
- ispb: "33132044"
409
- - name: "BANCO BRADESCO BERJ S.A"
410
- code: "122"
411
- ispb: "33147315"
412
- - name: "BANCO J.P. MORGAN S.A"
413
- code: "376"
414
- ispb: "33172537"
415
- - name: "BANCO CAIXA GERAL BRASIL S.A"
416
- code: "473"
417
- ispb: "33466988"
418
- - name: "BANCO CITIBANK S.A"
419
- code: "745"
420
- ispb: "33479023"
421
- - name: "BANCO RODOBENS S.A"
422
- code: "120"
423
- ispb: "33603457"
424
- - name: "BANCO FATOR S.A"
425
- code: "265"
426
- ispb: "33644196"
427
- - name: "BNDES (Banco Nacional do Desenvolvimento Social)"
428
- code: "007"
429
- ispb: "33657248"
430
- - name: "ATIVA S.A INVESTIMENTOS"
431
- code: "188"
432
- ispb: "33775974"
433
- - name: "BGC LIQUIDEZ DTVM LTDA"
434
- code: "134"
435
- ispb: "33862244"
436
- - name: "BANCO ALVORADA S.A"
437
- code: "641"
438
- ispb: "33870163"
439
- - name: "BANCO ITAÚ CONSIGNADO S.A"
440
- code: "029"
441
- ispb: "33885724"
442
- - name: "BANCO MÁXIMA S.A"
443
- code: "243"
444
- ispb: "33923798"
445
- - name: "HAITONG BI DO BRASIL S.A"
446
- code: "078"
447
- ispb: "34111187"
448
- - name: "BANCO OLIVEIRA TRUST DTVM S.A"
449
- code: "111"
450
- ispb: "36113876"
451
- - name: "BNY MELLON BANCO S.A"
452
- code: "017"
453
- ispb: "42272526"
454
- - name: "PERNAMBUCANAS FINANC S.A"
455
- code: "174"
456
- ispb: "43180355"
457
- - name: "LA PROVINCIA BUENOS AIRES BANCO"
458
- code: "495"
459
- ispb: "44189447"
460
- - name: "BRASIL PLURAL S.A BANCO"
461
- code: "125"
462
- ispb: "45246410"
463
- - name: "JPMORGAN CHASE BANK"
464
- code: "488"
465
- ispb: "46518205"
466
- - name: "BANCO ANDBANK S.A"
467
- code: "065"
468
- ispb: "48795256"
469
- - name: "ING BANK N.V"
470
- code: "492"
471
- ispb: "49336860"
472
- - name: "BANCO BCV"
473
- code: "250"
474
- ispb: "50585090"
475
- - name: "LEVYCAM CCV LTDA"
476
- code: "145"
477
- ispb: "50579044"
478
- - name: "BANCO REP ORIENTAL URUGUAY"
479
- code: "494"
480
- ispb: "51938876"
481
- - name: "BEXS CC S.A"
482
- code: "253"
483
- ispb: "52937216"
484
- - name: "HSBC BANCO DE INVESTIMENTO"
485
- code: "269"
486
- ispb: "53518684"
487
- - name: "BCO ARBI S.A"
488
- code: "213"
489
- ispb: "54403563"
490
- - name: "INTESA SANPAOLO BRASIL S.A"
491
- code: "139"
492
- ispb: "55230916"
493
- - name: "BANCO TRICURY S.A"
494
- code: "018"
495
- ispb: "57839805"
496
- - name: "BANCO INTERCAP S.A"
497
- code: "630"
498
- ispb: "58497702"
499
- - name: "BANCO FIBRA S.A"
500
- code: "224"
501
- ispb: "58616418"
502
- - name: "BANCO LUSO BRASILEIRO S.A"
503
- code: "600"
504
- ispb: "59118133"
505
- - name: "BANCO PAN"
506
- code: "623"
507
- ispb: "59285411"
508
- - name: "BANCO BRADESCO CARTOES S.A"
509
- code: "204"
510
- ispb: "59438325"
511
- - name: "BANCO ITAUBANK S.A"
512
- code: "479"
513
- ispb: "60394079"
514
- - name: "BANCO MUFG BRASIL S.A"
515
- code: "456"
516
- ispb: "60498557"
517
- - name: "BANCO SUMITOMO MITSUI BRASIL S.A"
518
- code: "464"
519
- ispb: "60518222"
520
- - name: "OMNI BANCO S.A"
521
- code: "613"
522
- ispb: "60850229"
523
- - name: "ITAÚ UNIBANCO HOLDING BM S.A"
524
- code: "652"
525
- ispb: "60872504"
526
- - name: "BANCO INDUSVAL S.A"
527
- code: "653"
528
- ispb: "61024352"
529
- - name: "BANCO CREFISA S.A"
530
- code: "069"
531
- ispb: "61033106"
532
- - name: "BANCO MIZUHO S.A"
533
- code: "370"
534
- ispb: "61088183"
535
- - name: "BANCO INVESTCRED UNIBANCO S.A"
536
- code: "249"
537
- ispb: "61182408"
538
- - name: "BANCO BMG S.A"
539
- code: "318"
540
- ispb: "61186680"
541
- - name: "BANCO FICSA S.A"
542
- code: "626"
543
- ispb: "61348538"
544
- - name: "SAGITUR CC LTDA"
545
- code: "270"
546
- ispb: "61444949"
547
- - name: "BANCO SOCIETE GENERALE BRASIL"
548
- code: "366"
549
- ispb: "61533584"
550
- - name: "MAGLIANO S.A"
551
- code: "113"
552
- ispb: "61723847"
553
- - name: "TULLETT PREBON BRASIL CVC LTDA"
554
- code: "131"
555
- ispb: "61747085"
556
- - name: "C.SUISSE HEDGING-GRIFFO CV S.A (Credit Suisse)"
557
- code: "011"
558
- ispb: "61809182"
559
- - name: "BANCO PAULISTA"
560
- code: "611"
561
- ispb: "61820817"
562
- - name: "BOFA MERRILL LYNCH BM S.A"
563
- code: "755"
564
- ispb: "62073200"
565
- - name: "CCR REG MOGIANA"
566
- code: "089"
567
- ispb: "62109566"
568
- - name: "BANCO PINE S.A"
569
- code: "643"
570
- ispb: "62144175"
571
- - name: "EASYNVEST - TÍTULO CV S.A"
572
- code: "140"
573
- ispb: "62169875"
574
- - name: "BANCO DAYCOVAL S.A"
575
- code: "707"
576
- ispb: "62232889"
577
- - name: "CAROL DTVM LTDA"
578
- code: "288"
579
- ispb: "62237649"
580
- - name: "RENASCENCA DTVM LTDA"
581
- code: "101"
582
- ispb: "62287735"
583
- - name: "DEUTSCHE BANK S.A BANCO ALEMÃO"
584
- code: "487"
585
- ispb: "62331228"
586
- - name: "BANCO CIFRA"
587
- code: "233"
588
- ispb: "62421979"
589
- - name: "GUIDE"
590
- code: "177"
591
- ispb: "65913436"
592
- - name: "BANCO RENDIMENTO S.A"
593
- code: "633"
594
- ispb: "68900810"
595
- - name: "BANCO BS2 S.A"
596
- code: "218"
597
- ispb: "71027866"
598
- - name: "BS2 DISTRIBUIDORA DE TÍTULOS E INVESTIMENTOS"
599
- code: "292"
600
- ispb: "28650236"
601
- - name: "BANCO OLÉ BONSUCESSO CONSIGNADO S.A"
602
- code: "169"
603
- ispb: "71371686"
604
- - name: "LASTRO RDV DTVM LTDA"
605
- code: "293"
606
- ispb: "71590442"
607
- - name: "FRENTE CC LTDA"
608
- code: "285"
609
- ispb: "71677850"
610
- - name: "B&T CC LTDA"
611
- code: "080"
612
- ispb: "73622748"
613
- - name: "NOVO BANCO CONTINENTAL S.A BM"
614
- code: "753"
615
- ispb: "74828799"
616
- - name: "BANCO CRÉDIT AGRICOLE BR S.A"
617
- code: "222"
618
- ispb: "75647891"
619
- - name: "BANCO SISTEMA"
620
- code: "754"
621
- ispb: "76543115"
622
- - name: "CREDIALIANÇA CCR"
623
- code: "098"
624
- ispb: "78157146"
625
- - name: "BANCO VR S.A"
626
- code: "610"
627
- ispb: "78626983"
628
- - name: "BANCO OURINVEST S.A"
629
- code: "712"
630
- ispb: "78632767"
631
- - name: "CREDICOAMO"
632
- code: "010"
633
- ispb: "81723108"
634
- - name: "RB CAPITAL INVESTIMENTOS DTVM LTDA"
635
- code: "283"
636
- ispb: "89960090"
637
- - name: "BANCO JOHN DEERE S.A"
638
- code: "217"
639
- ispb: "91884981"
640
- - name: "ADVANCED CC LTDA"
641
- code: "117"
642
- ispb: "92856905"
643
- - name: "BANCO C6 S.A - C6 BANK"
644
- code: "336"
645
- ispb: "28326000"
646
- - name: "BANCO DIGIMAIS S.A"
647
- code: "654"
648
- ispb: "92874270"