├── LICENSE ├── README.md └── bankcode.py /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BankCards 2 | 3 | 中国银行卡卡号类型查询 4 | 使用方法: 5 | ```python 6 | from bankcode import * 7 | print(card_type("6228480018357172571")) 8 | ``` 9 | -------------------------------------------------------------------------------- /bankcode.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | bankcode = { 4 | '621098' : u'邮储银行-绿卡通-借记卡', 5 | '622150' : u'邮储银行-绿卡银联标准卡-借记卡', 6 | '622151' : u'邮储银行-绿卡银联标准卡-借记卡', 7 | '622181' : u'邮储银行-绿卡专用卡-借记卡', 8 | '622188' : u'邮储银行-绿卡银联标准卡-借记卡', 9 | '955100' : u'邮储银行-绿卡(银联卡)-借记卡', 10 | '621095' : u'邮储银行-绿卡VIP卡-借记卡', 11 | '620062' : u'邮储银行-银联标准卡-借记卡', 12 | '621285' : u'邮储银行-中职学生资助卡-借记卡', 13 | '621798' : u'邮政储蓄银行-IC绿卡通VIP卡-借记卡', 14 | '621799' : u'邮政储蓄银行-IC绿卡通-借记卡', 15 | '621797' : u'邮政储蓄银行-IC联名卡-借记卡', 16 | '620529' : u'邮政储蓄银行-IC预付费卡-预付费卡', 17 | '622199' : u'邮储银行-绿卡银联标准卡-借记卡', 18 | '621096' : u'邮储银行-绿卡通-借记卡', 19 | '62215049' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 20 | '62215050' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 21 | '62215051' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 22 | '62218850' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 23 | '62218851' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 24 | '62218849' : u'邮储银行河南分行-绿卡储蓄卡(银联卡)-借记卡', 25 | '621622' : u'邮政储蓄银行-武警军人保障卡-借记卡', 26 | '623219' : u'邮政储蓄银行-中国旅游卡(金卡)-借记卡', 27 | '621674' : u'邮政储蓄银行-普通高中学生资助卡-借记卡', 28 | '623218' : u'邮政储蓄银行-中国旅游卡(普卡)-借记卡', 29 | '621599' : u'邮政储蓄银行-福农卡-借记卡', 30 | '370246' : u'工商银行-牡丹运通卡金卡-贷记卡', 31 | '370248' : u'工商银行-牡丹运通卡金卡-贷记卡', 32 | '370249' : u'工商银行-牡丹运通卡金卡-贷记卡', 33 | '427010' : u'工商银行-牡丹VISA卡(单位卡)-贷记卡', 34 | '427018' : u'工商银行-牡丹VISA信用卡-贷记卡', 35 | '427019' : u'工商银行-牡丹VISA卡(单位卡)-贷记卡', 36 | '427020' : u'工商银行-牡丹VISA信用卡-贷记卡', 37 | '427029' : u'工商银行-牡丹VISA信用卡-贷记卡', 38 | '427030' : u'工商银行-牡丹VISA信用卡-贷记卡', 39 | '427039' : u'工商银行-牡丹VISA信用卡-贷记卡', 40 | '370247' : u'工商银行-牡丹运通卡普通卡-贷记卡', 41 | '438125' : u'工商银行-牡丹VISA信用卡-贷记卡', 42 | '438126' : u'工商银行-牡丹VISA白金卡-贷记卡', 43 | '451804' : u'工商银行-牡丹贷记卡(银联卡)-贷记卡', 44 | '451810' : u'工商银行-牡丹贷记卡(银联卡)-贷记卡', 45 | '451811' : u'工商银行-牡丹贷记卡(银联卡)-贷记卡', 46 | '45806' : u'工商银行-牡丹信用卡(银联卡)-贷记卡', 47 | '458071' : u'工商银行-牡丹贷记卡(银联卡)-贷记卡', 48 | '489734' : u'工商银行-牡丹欧元卡-贷记卡', 49 | '489735' : u'工商银行-牡丹欧元卡-贷记卡', 50 | '489736' : u'工商银行-牡丹欧元卡-贷记卡', 51 | '510529' : u'工商银行-牡丹万事达国际借记卡-贷记卡', 52 | '427062' : u'工商银行-牡丹VISA信用卡-贷记卡', 53 | '524091' : u'工商银行-海航信用卡-贷记卡', 54 | '427064' : u'工商银行-牡丹VISA信用卡-贷记卡', 55 | '530970' : u'工商银行-牡丹万事达信用卡-贷记卡', 56 | '53098' : u'工商银行-牡丹信用卡(银联卡)-贷记卡', 57 | '530990' : u'工商银行-牡丹万事达信用卡-贷记卡', 58 | '558360' : u'工商银行-牡丹万事达信用卡-贷记卡', 59 | '620200' : u'工商银行-牡丹灵通卡-借记卡', 60 | '620302' : u'工商银行-牡丹灵通卡-借记卡', 61 | '620402' : u'工商银行-牡丹灵通卡-借记卡', 62 | '620403' : u'工商银行-牡丹灵通卡-借记卡', 63 | '620404' : u'工商银行-牡丹灵通卡-借记卡', 64 | '524047' : u'工商银行-牡丹万事达白金卡-贷记卡', 65 | '620406' : u'工商银行-牡丹灵通卡-借记卡', 66 | '620407' : u'工商银行-牡丹灵通卡-借记卡', 67 | '525498' : u'工商银行-海航信用卡个人普卡-贷记卡', 68 | '620409' : u'工商银行-牡丹灵通卡-借记卡', 69 | '620410' : u'工商银行-牡丹灵通卡-借记卡', 70 | '620411' : u'工商银行-牡丹灵通卡-借记卡', 71 | '620412' : u'工商银行-牡丹灵通卡-借记卡', 72 | '620502' : u'工商银行-牡丹灵通卡-借记卡', 73 | '620503' : u'工商银行-牡丹灵通卡-借记卡', 74 | '620405' : u'工商银行-牡丹灵通卡-借记卡', 75 | '620408' : u'工商银行-牡丹灵通卡-借记卡', 76 | '620512' : u'工商银行-牡丹灵通卡-借记卡', 77 | '620602' : u'工商银行-牡丹灵通卡-借记卡', 78 | '620604' : u'工商银行-牡丹灵通卡-借记卡', 79 | '620607' : u'工商银行-牡丹灵通卡-借记卡', 80 | '620611' : u'工商银行-牡丹灵通卡-借记卡', 81 | '620612' : u'工商银行-牡丹灵通卡-借记卡', 82 | '620704' : u'工商银行-牡丹灵通卡-借记卡', 83 | '620706' : u'工商银行-牡丹灵通卡-借记卡', 84 | '620707' : u'工商银行-牡丹灵通卡-借记卡', 85 | '620708' : u'工商银行-牡丹灵通卡-借记卡', 86 | '620709' : u'工商银行-牡丹灵通卡-借记卡', 87 | '620710' : u'工商银行-牡丹灵通卡-借记卡', 88 | '620609' : u'工商银行-牡丹灵通卡-借记卡', 89 | '620712' : u'工商银行-牡丹灵通卡-借记卡', 90 | '620713' : u'工商银行-牡丹灵通卡-借记卡', 91 | '620714' : u'工商银行-牡丹灵通卡-借记卡', 92 | '620802' : u'工商银行-牡丹灵通卡-借记卡', 93 | '620711' : u'工商银行-牡丹灵通卡-借记卡', 94 | '620904' : u'工商银行-牡丹灵通卡-借记卡', 95 | '620905' : u'工商银行-牡丹灵通卡-借记卡', 96 | '621001' : u'工商银行-牡丹灵通卡-借记卡', 97 | '620902' : u'工商银行-牡丹灵通卡-借记卡', 98 | '621103' : u'工商银行-牡丹灵通卡-借记卡', 99 | '621105' : u'工商银行-牡丹灵通卡-借记卡', 100 | '621106' : u'工商银行-牡丹灵通卡-借记卡', 101 | '621107' : u'工商银行-牡丹灵通卡-借记卡', 102 | '621102' : u'工商银行-牡丹灵通卡-借记卡', 103 | '621203' : u'工商银行-牡丹灵通卡-借记卡', 104 | '621204' : u'工商银行-牡丹灵通卡-借记卡', 105 | '621205' : u'工商银行-牡丹灵通卡-借记卡', 106 | '621206' : u'工商银行-牡丹灵通卡-借记卡', 107 | '621207' : u'工商银行-牡丹灵通卡-借记卡', 108 | '621208' : u'工商银行-牡丹灵通卡-借记卡', 109 | '621209' : u'工商银行-牡丹灵通卡-借记卡', 110 | '621210' : u'工商银行-牡丹灵通卡-借记卡', 111 | '621302' : u'工商银行-牡丹灵通卡-借记卡', 112 | '621303' : u'工商银行-牡丹灵通卡-借记卡', 113 | '621202' : u'工商银行-牡丹灵通卡-借记卡', 114 | '621305' : u'工商银行-牡丹灵通卡-借记卡', 115 | '621306' : u'工商银行-牡丹灵通卡-借记卡', 116 | '621307' : u'工商银行-牡丹灵通卡-借记卡', 117 | '621309' : u'工商银行-牡丹灵通卡-借记卡', 118 | '621311' : u'工商银行-牡丹灵通卡-借记卡', 119 | '621313' : u'工商银行-牡丹灵通卡-借记卡', 120 | '621211' : u'工商银行-牡丹灵通卡-借记卡', 121 | '621315' : u'工商银行-牡丹灵通卡-借记卡', 122 | '621304' : u'工商银行-牡丹灵通卡-借记卡', 123 | '621402' : u'工商银行-牡丹灵通卡-借记卡', 124 | '621404' : u'工商银行-牡丹灵通卡-借记卡', 125 | '621405' : u'工商银行-牡丹灵通卡-借记卡', 126 | '621406' : u'工商银行-牡丹灵通卡-借记卡', 127 | '621407' : u'工商银行-牡丹灵通卡-借记卡', 128 | '621408' : u'工商银行-牡丹灵通卡-借记卡', 129 | '621409' : u'工商银行-牡丹灵通卡-借记卡', 130 | '621410' : u'工商银行-牡丹灵通卡-借记卡', 131 | '621502' : u'工商银行-牡丹灵通卡-借记卡', 132 | '621317' : u'工商银行-牡丹灵通卡-借记卡', 133 | '621511' : u'工商银行-牡丹灵通卡-借记卡', 134 | '621602' : u'工商银行-牡丹灵通卡-借记卡', 135 | '621603' : u'工商银行-牡丹灵通卡-借记卡', 136 | '621604' : u'工商银行-牡丹灵通卡-借记卡', 137 | '621605' : u'工商银行-牡丹灵通卡-借记卡', 138 | '621608' : u'工商银行-牡丹灵通卡-借记卡', 139 | '621609' : u'工商银行-牡丹灵通卡-借记卡', 140 | '621610' : u'工商银行-牡丹灵通卡-借记卡', 141 | '621611' : u'工商银行-牡丹灵通卡-借记卡', 142 | '621612' : u'工商银行-牡丹灵通卡-借记卡', 143 | '621613' : u'工商银行-牡丹灵通卡-借记卡', 144 | '621614' : u'工商银行-牡丹灵通卡-借记卡', 145 | '621615' : u'工商银行-牡丹灵通卡-借记卡', 146 | '621616' : u'工商银行-牡丹灵通卡-借记卡', 147 | '621617' : u'工商银行-牡丹灵通卡-借记卡', 148 | '621607' : u'工商银行-牡丹灵通卡-借记卡', 149 | '621606' : u'工商银行-牡丹灵通卡-借记卡', 150 | '621804' : u'工商银行-牡丹灵通卡-借记卡', 151 | '621807' : u'工商银行-牡丹灵通卡-借记卡', 152 | '621813' : u'工商银行-牡丹灵通卡-借记卡', 153 | '621814' : u'工商银行-牡丹灵通卡-借记卡', 154 | '621817' : u'工商银行-牡丹灵通卡-借记卡', 155 | '621901' : u'工商银行-牡丹灵通卡-借记卡', 156 | '621904' : u'工商银行-牡丹灵通卡-借记卡', 157 | '621905' : u'工商银行-牡丹灵通卡-借记卡', 158 | '621906' : u'工商银行-牡丹灵通卡-借记卡', 159 | '621907' : u'工商银行-牡丹灵通卡-借记卡', 160 | '621908' : u'工商银行-牡丹灵通卡-借记卡', 161 | '621909' : u'工商银行-牡丹灵通卡-借记卡', 162 | '621910' : u'工商银行-牡丹灵通卡-借记卡', 163 | '621911' : u'工商银行-牡丹灵通卡-借记卡', 164 | '621912' : u'工商银行-牡丹灵通卡-借记卡', 165 | '621913' : u'工商银行-牡丹灵通卡-借记卡', 166 | '621915' : u'工商银行-牡丹灵通卡-借记卡', 167 | '622002' : u'工商银行-牡丹灵通卡-借记卡', 168 | '621903' : u'工商银行-牡丹灵通卡-借记卡', 169 | '622004' : u'工商银行-牡丹灵通卡-借记卡', 170 | '622005' : u'工商银行-牡丹灵通卡-借记卡', 171 | '622006' : u'工商银行-牡丹灵通卡-借记卡', 172 | '622007' : u'工商银行-牡丹灵通卡-借记卡', 173 | '622008' : u'工商银行-牡丹灵通卡-借记卡', 174 | '622010' : u'工商银行-牡丹灵通卡-借记卡', 175 | '622011' : u'工商银行-牡丹灵通卡-借记卡', 176 | '622012' : u'工商银行-牡丹灵通卡-借记卡', 177 | '621914' : u'工商银行-牡丹灵通卡-借记卡', 178 | '622015' : u'工商银行-牡丹灵通卡-借记卡', 179 | '622016' : u'工商银行-牡丹灵通卡-借记卡', 180 | '622003' : u'工商银行-牡丹灵通卡-借记卡', 181 | '622018' : u'工商银行-牡丹灵通卡-借记卡', 182 | '622019' : u'工商银行-牡丹灵通卡-借记卡', 183 | '622020' : u'工商银行-牡丹灵通卡-借记卡', 184 | '622102' : u'工商银行-牡丹灵通卡-借记卡', 185 | '622103' : u'工商银行-牡丹灵通卡-借记卡', 186 | '622104' : u'工商银行-牡丹灵通卡-借记卡', 187 | '622105' : u'工商银行-牡丹灵通卡-借记卡', 188 | '622013' : u'工商银行-牡丹灵通卡-借记卡', 189 | '622111' : u'工商银行-牡丹灵通卡-借记卡', 190 | '622114' : u'工商银行-牡丹灵通卡-借记卡', 191 | '622200' : u'工商银行-灵通卡-借记卡', 192 | '622017' : u'工商银行-牡丹灵通卡-借记卡', 193 | '622202' : u'工商银行-E时代卡-借记卡', 194 | '622203' : u'工商银行-E时代卡-借记卡', 195 | '622208' : u'工商银行-理财金卡-借记卡', 196 | '622210' : u'工商银行-准贷记卡(个普)-准贷记卡', 197 | '622211' : u'工商银行-准贷记卡(个普)-准贷记卡', 198 | '622212' : u'工商银行-准贷记卡(个普)-准贷记卡', 199 | '622213' : u'工商银行-准贷记卡(个普)-准贷记卡', 200 | '622214' : u'工商银行-准贷记卡(个普)-准贷记卡', 201 | '622110' : u'工商银行-牡丹灵通卡-借记卡', 202 | '622220' : u'工商银行-准贷记卡(商普)-准贷记卡', 203 | '622223' : u'工商银行-牡丹卡(商务卡)-准贷记卡', 204 | '622225' : u'工商银行-准贷记卡(商金)-准贷记卡', 205 | '622229' : u'工商银行-牡丹卡(商务卡)-准贷记卡', 206 | '622230' : u'工商银行-贷记卡(个普)-贷记卡', 207 | '622231' : u'工商银行-牡丹卡(个人卡)-贷记卡', 208 | '622232' : u'工商银行-牡丹卡(个人卡)-贷记卡', 209 | '622233' : u'工商银行-牡丹卡(个人卡)-贷记卡', 210 | '622234' : u'工商银行-牡丹卡(个人卡)-贷记卡', 211 | '622235' : u'工商银行-贷记卡(个金)-贷记卡', 212 | '622237' : u'工商银行-牡丹交通卡-贷记卡', 213 | '622215' : u'工商银行-准贷记卡(个金)-准贷记卡', 214 | '622239' : u'工商银行-牡丹交通卡-贷记卡', 215 | '622240' : u'工商银行-贷记卡(商普)-贷记卡', 216 | '622245' : u'工商银行-贷记卡(商金)-贷记卡', 217 | '622224' : u'工商银行-牡丹卡(商务卡)-准贷记卡', 218 | '622303' : u'工商银行-牡丹灵通卡-借记卡', 219 | '622304' : u'工商银行-牡丹灵通卡-借记卡', 220 | '622305' : u'工商银行-牡丹灵通卡-借记卡', 221 | '622306' : u'工商银行-牡丹灵通卡-借记卡', 222 | '622307' : u'工商银行-牡丹灵通卡-借记卡', 223 | '622308' : u'工商银行-牡丹灵通卡-借记卡', 224 | '622309' : u'工商银行-牡丹灵通卡-借记卡', 225 | '622238' : u'工商银行-牡丹交通卡-贷记卡', 226 | '622314' : u'工商银行-牡丹灵通卡-借记卡', 227 | '622315' : u'工商银行-牡丹灵通卡-借记卡', 228 | '622317' : u'工商银行-牡丹灵通卡-借记卡', 229 | '622302' : u'工商银行-牡丹灵通卡-借记卡', 230 | '622402' : u'工商银行-牡丹灵通卡-借记卡', 231 | '622403' : u'工商银行-牡丹灵通卡-借记卡', 232 | '622404' : u'工商银行-牡丹灵通卡-借记卡', 233 | '622313' : u'工商银行-牡丹灵通卡-借记卡', 234 | '622504' : u'工商银行-牡丹灵通卡-借记卡', 235 | '622505' : u'工商银行-牡丹灵通卡-借记卡', 236 | '622509' : u'工商银行-牡丹灵通卡-借记卡', 237 | '622513' : u'工商银行-牡丹灵通卡-借记卡', 238 | '622517' : u'工商银行-牡丹灵通卡-借记卡', 239 | '622502' : u'工商银行-牡丹灵通卡-借记卡', 240 | '622604' : u'工商银行-牡丹灵通卡-借记卡', 241 | '622605' : u'工商银行-牡丹灵通卡-借记卡', 242 | '622606' : u'工商银行-牡丹灵通卡-借记卡', 243 | '622510' : u'工商银行-牡丹灵通卡-借记卡', 244 | '622703' : u'工商银行-牡丹灵通卡-借记卡', 245 | '622715' : u'工商银行-牡丹灵通卡-借记卡', 246 | '622806' : u'工商银行-牡丹灵通卡-借记卡', 247 | '622902' : u'工商银行-牡丹灵通卡-借记卡', 248 | '622903' : u'工商银行-牡丹灵通卡-借记卡', 249 | '622706' : u'工商银行-牡丹灵通卡-借记卡', 250 | '623002' : u'工商银行-牡丹灵通卡-借记卡', 251 | '623006' : u'工商银行-牡丹灵通卡-借记卡', 252 | '623008' : u'工商银行-牡丹灵通卡-借记卡', 253 | '623011' : u'工商银行-牡丹灵通卡-借记卡', 254 | '623012' : u'工商银行-牡丹灵通卡-借记卡', 255 | '622904' : u'工商银行-牡丹灵通卡-借记卡', 256 | '623015' : u'工商银行-牡丹灵通卡-借记卡', 257 | '623100' : u'工商银行-牡丹灵通卡-借记卡', 258 | '623202' : u'工商银行-牡丹灵通卡-借记卡', 259 | '623301' : u'工商银行-牡丹灵通卡-借记卡', 260 | '623400' : u'工商银行-牡丹灵通卡-借记卡', 261 | '623500' : u'工商银行-牡丹灵通卡-借记卡', 262 | '623602' : u'工商银行-牡丹灵通卡-借记卡', 263 | '623803' : u'工商银行-牡丹灵通卡-借记卡', 264 | '623901' : u'工商银行-牡丹灵通卡-借记卡', 265 | '623014' : u'工商银行-牡丹灵通卡-借记卡', 266 | '624100' : u'工商银行-牡丹灵通卡-借记卡', 267 | '624200' : u'工商银行-牡丹灵通卡-借记卡', 268 | '624301' : u'工商银行-牡丹灵通卡-借记卡', 269 | '624402' : u'工商银行-牡丹灵通卡-借记卡', 270 | '62451804' : u'工商银行-牡丹贷记卡-贷记卡', 271 | '62451810' : u'工商银行-牡丹贷记卡-贷记卡', 272 | '62451811' : u'工商银行-牡丹贷记卡-贷记卡', 273 | '6245806' : u'工商银行-牡丹信用卡-贷记卡', 274 | '62458071' : u'工商银行-牡丹贷记卡-贷记卡', 275 | '6253098' : u'工商银行-牡丹信用卡-贷记卡', 276 | '623700' : u'工商银行-牡丹灵通卡-借记卡', 277 | '628288' : u'工商银行-中央预算单位公务卡-贷记卡', 278 | '624000' : u'工商银行-牡丹灵通卡-借记卡', 279 | '9558' : u'工商银行-牡丹灵通卡(银联卡)-借记卡', 280 | '628286' : u'工商银行-财政预算单位公务卡-贷记卡', 281 | '622206' : u'工商银行-牡丹卡白金卡-贷记卡', 282 | '621225' : u'工商银行-牡丹卡普卡-借记卡', 283 | '526836' : u'工商银行-国航知音牡丹信用卡-贷记卡', 284 | '513685' : u'工商银行-国航知音牡丹信用卡-贷记卡', 285 | '543098' : u'工商银行-国航知音牡丹信用卡-贷记卡', 286 | '458441' : u'工商银行-国航知音牡丹信用卡-贷记卡', 287 | '620058' : u'工商银行-银联标准卡-借记卡', 288 | '621281' : u'工商银行-中职学生资助卡-借记卡', 289 | '622246' : u'工商银行-专用信用消费卡-贷记卡', 290 | '900000' : u'工商银行-牡丹社会保障卡-借记卡', 291 | '544210' : u'中国工商银行-牡丹东航联名卡-贷记卡', 292 | '548943' : u'中国工商银行-牡丹东航联名卡-贷记卡', 293 | '370267' : u'中国工商银行-牡丹运通白金卡-贷记卡', 294 | '621558' : u'中国工商银行-福农灵通卡-借记卡', 295 | '621559' : u'中国工商银行-福农灵通卡-借记卡', 296 | '621722' : u'工商银行-灵通卡-借记卡', 297 | '621723' : u'工商银行-灵通卡-借记卡', 298 | '620086' : u'中国工商银行-中国旅行卡-借记卡', 299 | '621226' : u'工商银行-牡丹卡普卡-借记卡', 300 | '402791' : u'工商银行-国际借记卡-借记卡', 301 | '427028' : u'工商银行-国际借记卡-借记卡', 302 | '427038' : u'工商银行-国际借记卡-借记卡', 303 | '548259' : u'工商银行-国际借记卡-借记卡', 304 | '356879' : u'中国工商银行-牡丹JCB信用卡-贷记卡', 305 | '356880' : u'中国工商银行-牡丹JCB信用卡-贷记卡', 306 | '356881' : u'中国工商银行-牡丹JCB信用卡-贷记卡', 307 | '356882' : u'中国工商银行-牡丹JCB信用卡-贷记卡', 308 | '528856' : u'中国工商银行-牡丹多币种卡-贷记卡', 309 | '621618' : u'中国工商银行-武警军人保障卡-借记卡', 310 | '620516' : u'工商银行-预付芯片卡-借记卡', 311 | '621227' : u'工商银行-理财金账户金卡-借记卡', 312 | '621721' : u'工商银行-灵通卡-借记卡', 313 | '900010' : u'工商银行-牡丹宁波市民卡-借记卡', 314 | '625330' : u'中国工商银行-中国旅游卡-贷记卡', 315 | '625331' : u'中国工商银行-中国旅游卡-贷记卡', 316 | '625332' : u'中国工商银行-中国旅游卡-贷记卡', 317 | '623062' : u'中国工商银行-借记卡-借记卡', 318 | '622236' : u'中国工商银行-借贷合一卡-贷记卡', 319 | '621670' : u'中国工商银行-普通高中学生资助卡-借记卡', 320 | '524374' : u'中国工商银行-牡丹多币种卡-贷记卡', 321 | '550213' : u'中国工商银行-牡丹多币种卡-贷记卡', 322 | '374738' : u'中国工商银行-牡丹百夫长信用卡-贷记卡', 323 | '374739' : u'中国工商银行-牡丹百夫长信用卡-贷记卡', 324 | '621288' : u'工商银行-工银财富卡-借记卡', 325 | '625708' : u'中国工商银行-中小商户采购卡-贷记卡', 326 | '625709' : u'中国工商银行-中小商户采购卡-贷记卡', 327 | '622597' : u'中国工商银行-环球旅行金卡-贷记卡', 328 | '622599' : u'中国工商银行-环球旅行白金卡-贷记卡', 329 | '360883' : u'中国工商银行-牡丹工银大来卡-贷记卡', 330 | '360884' : u'中国工商银行-牡丹工银大莱卡-贷记卡', 331 | '625865' : u'中国工商银行-IC金卡-贷记卡', 332 | '625866' : u'中国工商银行-IC白金卡-贷记卡', 333 | '625899' : u'中国工商银行-工行IC卡(红卡)-贷记卡', 334 | '625929' : u'工行布鲁塞尔-贷记卡-贷记卡', 335 | '621376' : u'中国工商银行布鲁塞尔分行-借记卡-借记卡', 336 | '620054' : u'中国工商银行布鲁塞尔分行-预付卡-预付费卡', 337 | '620142' : u'中国工商银行布鲁塞尔分行-预付卡-预付费卡', 338 | '621423' : u'中国工商银行(巴西)-借记卡-借记卡', 339 | '625927' : u'中国工商银行(巴西)-贷记卡-贷记卡', 340 | '621428' : u'中国工商银行金边分行-借记卡-借记卡', 341 | '625939' : u'中国工商银行金边分行-信用卡-贷记卡', 342 | '621434' : u'中国工商银行金边分行-借记卡-借记卡', 343 | '625987' : u'中国工商银行金边分行-信用卡-贷记卡', 344 | '621761' : u'中国工商银行加拿大分行-借记卡-借记卡', 345 | '621749' : u'中国工商银行加拿大分行-借记卡-借记卡', 346 | '620184' : u'中国工商银行加拿大分行-预付卡-预付费卡', 347 | '625930' : u'工行加拿大-贷记卡-贷记卡', 348 | '621300' : u'中国工商银行巴黎分行-借记卡-借记卡', 349 | '621378' : u'中国工商银行巴黎分行-借记卡-借记卡', 350 | '625114' : u'中国工商银行巴黎分行-贷记卡-贷记卡', 351 | '622159' : u'中国工商银行法兰克福分行-贷记卡-贷记卡', 352 | '621720' : u'中国工商银行法兰克福分行-借记卡-借记卡', 353 | '625021' : u'中国工商银行法兰克福分行-贷记卡-贷记卡', 354 | '625022' : u'中国工商银行法兰克福分行-贷记卡-贷记卡', 355 | '625932' : u'工银法兰克福-贷记卡-贷记卡', 356 | '621379' : u'中国工商银行法兰克福分行-借记卡-借记卡', 357 | '620114' : u'中国工商银行法兰克福分行-预付卡-预付费卡', 358 | '620146' : u'中国工商银行法兰克福分行-预付卡-预付费卡', 359 | '622889' : u'中国工商银行(亚洲)有限公司-ICBC(Asia) Credit-贷记卡', 360 | '625900' : u'中国工商银行(亚洲)有限公司-ICBC Credit Card-贷记卡', 361 | '622949' : u'中国工商银行(亚洲)有限公司-EliteClubATMCard-借记卡', 362 | '625915' : u'中国工商银行(亚洲)有限公司-港币信用卡-贷记卡', 363 | '625916' : u'中国工商银行(亚洲)有限公司-港币信用卡-贷记卡', 364 | '620030' : u'中国工商银行(亚洲)有限公司-工银亚洲预付卡-预付费卡', 365 | '620050' : u'中国工商银行(亚洲)有限公司-预付卡-预付费卡', 366 | '622944' : u'中国工商银行(亚洲)有限公司-CNYEasylinkCard-借记卡', 367 | '625115' : u'中国工商银行(亚洲)有限公司-工银银联公司卡-贷记卡', 368 | '620101' : u'中国工商银行(亚洲)有限公司--预付费卡', 369 | '623335' : u'中国工商银行(亚洲)有限公司--预付费卡', 370 | '622171' : u'中国工商银行(印尼)-印尼盾复合卡-贷记卡', 371 | '621240' : u'中国工商银行(印尼)-借记卡-借记卡', 372 | '621724' : u'中国工商银行印尼分行-借记卡-借记卡', 373 | '625931' : u'工银印尼-贷记卡-贷记卡', 374 | '621762' : u'中国工商银行(印度尼西亚)-借记卡-借记卡', 375 | '625918' : u'中国工商银行印尼分行-信用卡-贷记卡', 376 | '625113' : u'工行米兰-贷记卡-贷记卡', 377 | '621371' : u'中国工商银行米兰分行-借记卡-借记卡', 378 | '620143' : u'中国工商银行米兰分行-预付卡-预付费卡', 379 | '620149' : u'中国工商银行米兰分行-预付卡-预付费卡', 380 | '621730' : u'工行东京分行-工行东京借记卡-借记卡', 381 | '625928' : u'工行阿拉木图-贷记卡-贷记卡', 382 | '621414' : u'中国工商银行阿拉木图子行-借记卡-借记卡', 383 | '625914' : u'中国工商银行阿拉木图子行-贷记卡-贷记卡', 384 | '621375' : u'中国工商银行阿拉木图子行-借记卡-借记卡', 385 | '620187' : u'中国工商银行阿拉木图子行-预付卡-预付费卡', 386 | '621734' : u'工行首尔-借记卡-借记卡', 387 | '621433' : u'中国工商银行万象分行-借记卡-借记卡', 388 | '625986' : u'中国工商银行万象分行-贷记卡-贷记卡', 389 | '621370' : u'中国工商银行卢森堡分行-借记卡-借记卡', 390 | '625925' : u'中国工商银行卢森堡分行-贷记卡-贷记卡', 391 | '622926' : u'中国工商银行澳门分行-E时代卡-借记卡', 392 | '622927' : u'中国工商银行澳门分行-E时代卡-借记卡', 393 | '622928' : u'中国工商银行澳门分行-E时代卡-借记卡', 394 | '622929' : u'中国工商银行澳门分行-理财金账户-借记卡', 395 | '622930' : u'中国工商银行澳门分行-理财金账户-借记卡', 396 | '622931' : u'中国工商银行澳门分行-理财金账户-借记卡', 397 | '621733' : u'中国工商银行(澳门)-借记卡-借记卡', 398 | '621732' : u'中国工商银行(澳门)-借记卡-借记卡', 399 | '620124' : u'中国工商银行澳门分行-预付卡-预付费卡', 400 | '620183' : u'中国工商银行澳门分行-预付卡-预付费卡', 401 | '620561' : u'中国工商银行澳门分行-工银闪付预付卡-预付费卡', 402 | '625116' : u'中国工商银行澳门分行-工银银联公司卡-贷记卡', 403 | '622227' : u'中国工商银行澳门分行-Diamond-贷记卡', 404 | '625921' : u'工行马来西亚-贷记卡-贷记卡', 405 | '621764' : u'工银马来西亚-借记卡-借记卡', 406 | '625926' : u'工行阿姆斯特丹-贷记卡-贷记卡', 407 | '621372' : u'中国工商银行阿姆斯特丹-借记卡-借记卡', 408 | '623034' : u'工银新西兰-借记卡-借记卡', 409 | '625110' : u'工银新西兰-信用卡-贷记卡', 410 | '621464' : u'中国工商银行卡拉奇分行-借记卡-借记卡', 411 | '625942' : u'中国工商银行卡拉奇分行-贷记卡-贷记卡', 412 | '622158' : u'中国工商银行新加坡分行-贷记卡-贷记卡', 413 | '625917' : u'中国工商银行新加坡分行-贷记卡-贷记卡', 414 | '621765' : u'中国工商银行新加坡分行-借记卡-借记卡', 415 | '620094' : u'中国工商银行新加坡分行-预付卡-预付费卡', 416 | '620186' : u'中国工商银行新加坡分行-预付卡-预付费卡', 417 | '621719' : u'中国工商银行新加坡分行-借记卡-借记卡', 418 | '625922' : u'工行河内-贷记卡-贷记卡', 419 | '621369' : u'工银河内-借记卡-借记卡', 420 | '621763' : u'工银河内-工银越南盾借记卡-借记卡', 421 | '625934' : u'工银河内-工银越南盾信用卡-贷记卡', 422 | '620046' : u'工银河内-预付卡-预付费卡', 423 | '621750' : u'中国工商银行马德里分行-借记卡-借记卡', 424 | '625933' : u'工行马德里-贷记卡-贷记卡', 425 | '621377' : u'中国工商银行马德里分行-借记卡-借记卡', 426 | '620148' : u'中国工商银行马德里分行-预付卡-预付费卡', 427 | '620185' : u'中国工商银行马德里分行-预付卡-预付费卡', 428 | '625920' : u'工银泰国-贷记卡-贷记卡', 429 | '621367' : u'工银泰国-借记卡-借记卡', 430 | '625924' : u'工行伦敦-贷记卡-贷记卡', 431 | '621374' : u'中国工商银行伦敦子行-借记卡-借记卡', 432 | '621731' : u'中国工商银行伦敦子行-工银伦敦借记卡-借记卡', 433 | '621781' : u'中国工商银行伦敦子行-借记卡-借记卡', 434 | '103' : u'农业银行-金穗借记卡-借记卡', 435 | '552599' : u'农业银行-金穗贷记卡-贷记卡', 436 | '6349102' : u'农业银行-金穗信用卡-准贷记卡', 437 | '6353591' : u'农业银行-金穗信用卡-准贷记卡', 438 | '623206' : u'农业银行-中国旅游卡-借记卡', 439 | '621671' : u'农业银行-普通高中学生资助卡-借记卡', 440 | '620059' : u'农业银行-银联标准卡-借记卡', 441 | '403361' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 442 | '404117' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 443 | '404118' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 444 | '404119' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 445 | '404120' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 446 | '404121' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 447 | '463758' : u'农业银行-VISA白金卡-贷记卡', 448 | '49102' : u'农业银行-金穗信用卡(银联卡)-准贷记卡', 449 | '514027' : u'农业银行-万事达白金卡-贷记卡', 450 | '519412' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 451 | '519413' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 452 | '520082' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 453 | '520083' : u'农业银行-金穗贷记卡(银联卡)-贷记卡', 454 | '53591' : u'农业银行-金穗信用卡(银联卡)-准贷记卡', 455 | '558730' : u'农业银行-金穗贷记卡-贷记卡', 456 | '621282' : u'农业银行-中职学生资助卡-借记卡', 457 | '621336' : u'农业银行-专用惠农卡-借记卡', 458 | '621619' : u'农业银行-武警军人保障卡-借记卡', 459 | '622821' : u'农业银行-金穗校园卡(银联卡)-借记卡', 460 | '622822' : u'农业银行-金穗星座卡(银联卡)-借记卡', 461 | '622823' : u'农业银行-金穗社保卡(银联卡)-借记卡', 462 | '622824' : u'农业银行-金穗旅游卡(银联卡)-借记卡', 463 | '622825' : u'农业银行-金穗青年卡(银联卡)-借记卡', 464 | '622826' : u'农业银行-复合介质金穗通宝卡-借记卡', 465 | '622827' : u'农业银行-金穗海通卡-借记卡', 466 | '622828' : u'农业银行-退役金卡-借记卡', 467 | '622836' : u'农业银行-金穗贷记卡-贷记卡', 468 | '622837' : u'农业银行-金穗贷记卡-贷记卡', 469 | '622840' : u'农业银行-金穗通宝卡(银联卡)-借记卡', 470 | '622841' : u'农业银行-金穗惠农卡-借记卡', 471 | '622843' : u'农业银行-金穗通宝银卡-借记卡', 472 | '622844' : u'农业银行-金穗通宝卡(银联卡)-借记卡', 473 | '622845' : u'农业银行-金穗通宝卡(银联卡)-借记卡', 474 | '622846' : u'农业银行-金穗通宝卡-借记卡', 475 | '622847' : u'农业银行-金穗通宝卡(银联卡)-借记卡', 476 | '622848' : u'农业银行-金穗通宝卡(银联卡)-借记卡', 477 | '622849' : u'农业银行-金穗通宝钻石卡-借记卡', 478 | '623018' : u'农业银行-掌尚钱包-借记卡', 479 | '625996' : u'农业银行-银联IC卡金卡-贷记卡', 480 | '625997' : u'农业银行-银联预算单位公务卡金卡-贷记卡', 481 | '625998' : u'农业银行-银联IC卡白金卡-贷记卡', 482 | '628268' : u'农业银行-金穗公务卡-贷记卡', 483 | '95595' : u'农业银行-借记卡(银联卡)-借记卡', 484 | '95596' : u'农业银行-借记卡(银联卡)-借记卡', 485 | '95597' : u'农业银行-借记卡(银联卡)-借记卡', 486 | '95598' : u'农业银行-借记卡(银联卡)-借记卡', 487 | '95599' : u'农业银行-借记卡(银联卡)-借记卡', 488 | '625826' : u'中国农业银行贷记卡-IC普卡-贷记卡', 489 | '625827' : u'中国农业银行贷记卡-IC金卡-贷记卡', 490 | '548478' : u'中国农业银行贷记卡-澳元卡-贷记卡', 491 | '544243' : u'中国农业银行贷记卡-欧元卡-贷记卡', 492 | '622820' : u'中国农业银行贷记卡-金穗通商卡-准贷记卡', 493 | '622830' : u'中国农业银行贷记卡-金穗通商卡-准贷记卡', 494 | '622838' : u'中国农业银行贷记卡-银联白金卡-贷记卡', 495 | '625336' : u'中国农业银行贷记卡-中国旅游卡-贷记卡', 496 | '628269' : u'中国农业银行贷记卡-银联IC公务卡-贷记卡', 497 | '620501' : u'宁波市农业银行-市民卡B卡-借记卡', 498 | '621660' : u'中国银行-联名卡-借记卡', 499 | '621661' : u'中国银行-个人普卡-借记卡', 500 | '621662' : u'中国银行-个人金卡-借记卡', 501 | '621663' : u'中国银行-员工普卡-借记卡', 502 | '621665' : u'中国银行-员工金卡-借记卡', 503 | '621667' : u'中国银行-理财普卡-借记卡', 504 | '621668' : u'中国银行-理财金卡-借记卡', 505 | '621669' : u'中国银行-理财银卡-借记卡', 506 | '621666' : u'中国银行-理财白金卡-借记卡', 507 | '625908' : u'中国银行-中行金融IC卡白金卡-贷记卡', 508 | '625910' : u'中国银行-中行金融IC卡普卡-贷记卡', 509 | '625909' : u'中国银行-中行金融IC卡金卡-贷记卡', 510 | '356833' : u'中国银行-中银JCB卡金卡-贷记卡', 511 | '356835' : u'中国银行-中银JCB卡普卡-贷记卡', 512 | '409665' : u'中国银行-员工普卡-贷记卡', 513 | '409666' : u'中国银行-个人普卡-贷记卡', 514 | '409668' : u'中国银行-中银威士信用卡员-贷记卡', 515 | '409669' : u'中国银行-中银威士信用卡员-贷记卡', 516 | '409670' : u'中国银行-个人白金卡-贷记卡', 517 | '409671' : u'中国银行-中银威士信用卡-贷记卡', 518 | '409672' : u'中国银行-长城公务卡-贷记卡', 519 | '456351' : u'中国银行-长城电子借记卡-借记卡', 520 | '512315' : u'中国银行-中银万事达信用卡-贷记卡', 521 | '512316' : u'中国银行-中银万事达信用卡-贷记卡', 522 | '512411' : u'中国银行-中银万事达信用卡-贷记卡', 523 | '512412' : u'中国银行-中银万事达信用卡-贷记卡', 524 | '514957' : u'中国银行-中银万事达信用卡-贷记卡', 525 | '409667' : u'中国银行-中银威士信用卡员-贷记卡', 526 | '518378' : u'中国银行-长城万事达信用卡-准贷记卡', 527 | '518379' : u'中国银行-长城万事达信用卡-准贷记卡', 528 | '518474' : u'中国银行-长城万事达信用卡-准贷记卡', 529 | '518475' : u'中国银行-长城万事达信用卡-准贷记卡', 530 | '518476' : u'中国银行-长城万事达信用卡-准贷记卡', 531 | '438088' : u'中国银行-中银奥运信用卡-贷记卡', 532 | '524865' : u'中国银行-长城信用卡-准贷记卡', 533 | '525745' : u'中国银行-长城信用卡-准贷记卡', 534 | '525746' : u'中国银行-长城信用卡-准贷记卡', 535 | '547766' : u'中国银行-长城万事达信用卡-准贷记卡', 536 | '552742' : u'中国银行-长城公务卡-贷记卡', 537 | '553131' : u'中国银行-长城公务卡-贷记卡', 538 | '558868' : u'中国银行-中银万事达信用卡-准贷记卡', 539 | '514958' : u'中国银行-中银万事达信用卡-贷记卡', 540 | '622752' : u'中国银行-长城人民币信用卡-准贷记卡', 541 | '622753' : u'中国银行-长城人民币信用卡-准贷记卡', 542 | '622755' : u'中国银行-长城人民币信用卡-准贷记卡', 543 | '524864' : u'中国银行-长城信用卡-准贷记卡', 544 | '622757' : u'中国银行-长城人民币信用卡-准贷记卡', 545 | '622758' : u'中国银行-长城人民币信用卡-准贷记卡', 546 | '622759' : u'中国银行-长城信用卡-准贷记卡', 547 | '622760' : u'中国银行-银联单币贷记卡-贷记卡', 548 | '622761' : u'中国银行-长城信用卡-准贷记卡', 549 | '622762' : u'中国银行-长城信用卡-准贷记卡', 550 | '622763' : u'中国银行-长城信用卡-准贷记卡', 551 | '601382' : u'中国银行-长城电子借记卡-借记卡', 552 | '622756' : u'中国银行-长城人民币信用卡-准贷记卡', 553 | '628388' : u'中国银行-银联标准公务卡-贷记卡', 554 | '621256' : u'中国银行-一卡双账户普卡-借记卡', 555 | '621212' : u'中国银行-财互通卡-借记卡', 556 | '620514' : u'中国银行-电子现金卡-预付费卡', 557 | '622754' : u'中国银行-长城人民币信用卡-准贷记卡', 558 | '622764' : u'中国银行-长城单位信用卡普卡-准贷记卡', 559 | '518377' : u'中国银行-中银女性主题信用卡-贷记卡', 560 | '622765' : u'中国银行-长城单位信用卡金卡-准贷记卡', 561 | '622788' : u'中国银行-白金卡-贷记卡', 562 | '621283' : u'中国银行-中职学生资助卡-借记卡', 563 | '620061' : u'中国银行-银联标准卡-借记卡', 564 | '621725' : u'中国银行-金融IC卡-借记卡', 565 | '620040' : u'中国银行-长城社会保障卡-预付费卡', 566 | '558869' : u'中国银行-世界卡-准贷记卡', 567 | '621330' : u'中国银行-社保联名卡-借记卡', 568 | '621331' : u'中国银行-社保联名卡-借记卡', 569 | '621332' : u'中国银行-医保联名卡-借记卡', 570 | '621333' : u'中国银行-医保联名卡-借记卡', 571 | '621297' : u'中国银行-公司借记卡-借记卡', 572 | '377677' : u'中国银行-银联美运顶级卡-准贷记卡', 573 | '621568' : u'中国银行-长城福农借记卡金卡-借记卡', 574 | '621569' : u'中国银行-长城福农借记卡普卡-借记卡', 575 | '625905' : u'中国银行-中行金融IC卡普卡-准贷记卡', 576 | '625906' : u'中国银行-中行金融IC卡金卡-准贷记卡', 577 | '625907' : u'中国银行-中行金融IC卡白金卡-准贷记卡', 578 | '628313' : u'中国银行-长城银联公务IC卡白金卡-贷记卡', 579 | '625333' : u'中国银行-中银旅游信用卡-准贷记卡', 580 | '628312' : u'中国银行-长城银联公务IC卡金卡-贷记卡', 581 | '623208' : u'中国银行-中国旅游卡-借记卡', 582 | '621620' : u'中国银行-武警军人保障卡-借记卡', 583 | '621756' : u'中国银行-社保联名借记IC卡-借记卡', 584 | '621757' : u'中国银行-社保联名借记IC卡-借记卡', 585 | '621758' : u'中国银行-医保联名借记IC卡-借记卡', 586 | '621759' : u'中国银行-医保联名借记IC卡-借记卡', 587 | '621785' : u'中国银行-借记IC个人普卡-借记卡', 588 | '621786' : u'中国银行-借记IC个人金卡-借记卡', 589 | '621787' : u'中国银行-借记IC个人普卡-借记卡', 590 | '621788' : u'中国银行-借记IC白金卡-借记卡', 591 | '621789' : u'中国银行-借记IC钻石卡-借记卡', 592 | '621790' : u'中国银行-借记IC联名卡-借记卡', 593 | '621672' : u'中国银行-普通高中学生资助卡-借记卡', 594 | '625337' : u'中国银行-长城环球通港澳台旅游金卡-准贷记卡', 595 | '625338' : u'中国银行-长城环球通港澳台旅游白金卡-准贷记卡', 596 | '625568' : u'中国银行-中银福农信用卡-准贷记卡', 597 | '620025' : u'中国银行(澳大利亚)-预付卡-预付费卡', 598 | '620026' : u'中国银行(澳大利亚)-预付卡-预付费卡', 599 | '621293' : u'中国银行(澳大利亚)-借记卡-借记卡', 600 | '621294' : u'中国银行(澳大利亚)-借记卡-借记卡', 601 | '621342' : u'中国银行(澳大利亚)-借记卡-借记卡', 602 | '621343' : u'中国银行(澳大利亚)-借记卡-借记卡', 603 | '621364' : u'中国银行(澳大利亚)-借记卡-借记卡', 604 | '621394' : u'中国银行(澳大利亚)-借记卡-借记卡', 605 | '621648' : u'中国银行金边分行-借记卡-借记卡', 606 | '621248' : u'中国银行雅加达分行-借记卡-借记卡', 607 | '621215' : u'中银东京分行-借记卡普卡-借记卡', 608 | '621249' : u'中国银行首尔分行-借记卡-借记卡', 609 | '622750' : u'中国银行澳门分行-人民币信用卡-贷记卡', 610 | '622751' : u'中国银行澳门分行-人民币信用卡-贷记卡', 611 | '622771' : u'中国银行澳门分行-中银卡-借记卡', 612 | '622772' : u'中国银行澳门分行-中银卡-借记卡', 613 | '622770' : u'中国银行澳门分行-中银卡-借记卡', 614 | '625145' : u'中国银行澳门分行-中银银联双币商务卡-贷记卡', 615 | '620531' : u'中国银行澳门分行-预付卡-预付费卡', 616 | '620210' : u'中国银行澳门分行-澳门中国银行银联预付卡-预付费卡', 617 | '620211' : u'中国银行澳门分行-澳门中国银行银联预付卡-预付费卡', 618 | '622479' : u'中国银行澳门分行-熊猫卡-贷记卡', 619 | '622480' : u'中国银行澳门分行-财富卡-贷记卡', 620 | '622273' : u'中国银行澳门分行-银联港币卡-借记卡', 621 | '622274' : u'中国银行澳门分行-银联澳门币卡-借记卡', 622 | '620019' : u'中国银行(马来西亚)-预付卡-预付费卡', 623 | '620035' : u'中国银行(马来西亚)-预付卡-预付费卡', 624 | '621231' : u'中国银行马尼拉分行-双币种借记卡-借记卡', 625 | '622789' : u'中行新加坡分行-BOCCUPPLATINUMCARD-贷记卡', 626 | '621638' : u'中国银行胡志明分行-借记卡-借记卡', 627 | '621334' : u'中国银行曼谷分行-借记卡-借记卡', 628 | '625140' : u'中国银行曼谷分行-长城信用卡环球通-贷记卡', 629 | '621395' : u'中国银行曼谷分行-借记卡-借记卡', 630 | '620513' : u'中行宁波分行-长城宁波市民卡-预付费卡', 631 | '5453242' : u'建设银行-龙卡信用卡-贷记卡', 632 | '5491031' : u'建设银行-龙卡信用卡-贷记卡', 633 | '5544033' : u'建设银行-龙卡信用卡-贷记卡', 634 | '622725' : u'建设银行-龙卡准贷记卡-准贷记卡', 635 | '622728' : u'建设银行-龙卡准贷记卡金卡-准贷记卡', 636 | '621284' : u'建设银行-中职学生资助卡-借记卡', 637 | '421349' : u'建设银行-乐当家银卡VISA-借记卡', 638 | '434061' : u'建设银行-乐当家金卡VISA-借记卡', 639 | '434062' : u'建设银行-乐当家白金卡-借记卡', 640 | '436728' : u'建设银行-龙卡普通卡VISA-准贷记卡', 641 | '436742' : u'建设银行-龙卡储蓄卡-借记卡', 642 | '453242' : u'建设银行-VISA准贷记卡(银联卡)-准贷记卡', 643 | '491031' : u'建设银行-VISA准贷记金卡-准贷记卡', 644 | '524094' : u'建设银行-乐当家-借记卡', 645 | '526410' : u'建设银行-乐当家-借记卡', 646 | '53242' : u'建设银行-MASTER准贷记卡-准贷记卡', 647 | '53243' : u'建设银行-乐当家-准贷记卡', 648 | '544033' : u'建设银行-准贷记金卡-准贷记卡', 649 | '552245' : u'建设银行-乐当家白金卡-借记卡', 650 | '589970' : u'建设银行-金融复合IC卡-借记卡', 651 | '620060' : u'建设银行-银联标准卡-借记卡', 652 | '621080' : u'建设银行-银联理财钻石卡-借记卡', 653 | '621081' : u'建设银行-金融IC卡-借记卡', 654 | '621466' : u'建设银行-理财白金卡-借记卡', 655 | '621467' : u'建设银行-社保IC卡-借记卡', 656 | '621488' : u'建设银行-财富卡私人银行卡-借记卡', 657 | '621499' : u'建设银行-理财金卡-借记卡', 658 | '621598' : u'建设银行-福农卡-借记卡', 659 | '621621' : u'建设银行-武警军人保障卡-借记卡', 660 | '621700' : u'建设银行-龙卡通-借记卡', 661 | '622280' : u'建设银行-银联储蓄卡-借记卡', 662 | '622700' : u'建设银行-龙卡储蓄卡(银联卡)-借记卡', 663 | '622707' : u'建设银行-准贷记卡-准贷记卡', 664 | '622966' : u'建设银行-理财白金卡-借记卡', 665 | '622988' : u'建设银行-理财金卡-借记卡', 666 | '625955' : u'建设银行-准贷记卡普卡-准贷记卡', 667 | '625956' : u'建设银行-准贷记卡金卡-准贷记卡', 668 | '553242' : u'建设银行-龙卡信用卡-贷记卡', 669 | '621082' : u'建设银行-建行陆港通龙卡-借记卡', 670 | '621673' : u'中国建设银行-普通高中学生资助卡-借记卡', 671 | '623211' : u'中国建设银行-中国旅游卡-借记卡', 672 | '436742193' : u'建行厦门分行-龙卡储蓄卡-借记卡', 673 | '622280193' : u'建行厦门分行-银联储蓄卡-借记卡', 674 | '356896' : u'中国建设银行-龙卡JCB金卡-贷记卡', 675 | '356899' : u'中国建设银行-龙卡JCB白金卡-贷记卡', 676 | '356895' : u'中国建设银行-龙卡JCB普卡-贷记卡', 677 | '436718' : u'中国建设银行-龙卡贷记卡公司卡-贷记卡', 678 | '436738' : u'中国建设银行-龙卡贷记卡-贷记卡', 679 | '436745' : u'中国建设银行-龙卡国际普通卡VISA-贷记卡', 680 | '436748' : u'中国建设银行-龙卡国际金卡VISA-贷记卡', 681 | '489592' : u'中国建设银行-VISA白金信用卡-贷记卡', 682 | '531693' : u'中国建设银行-龙卡国际白金卡-贷记卡', 683 | '532450' : u'中国建设银行-龙卡国际普通卡MASTER-贷记卡', 684 | '532458' : u'中国建设银行-龙卡国际金卡MASTER-贷记卡', 685 | '544887' : u'中国建设银行-龙卡万事达金卡-贷记卡', 686 | '552801' : u'中国建设银行-龙卡贷记卡-贷记卡', 687 | '557080' : u'中国建设银行-龙卡万事达白金卡-贷记卡', 688 | '558895' : u'中国建设银行-龙卡贷记卡-贷记卡', 689 | '559051' : u'中国建设银行-龙卡万事达信用卡-贷记卡', 690 | '622166' : u'中国建设银行-龙卡人民币信用卡-贷记卡', 691 | '622168' : u'中国建设银行-龙卡人民币信用金卡-贷记卡', 692 | '622708' : u'中国建设银行-龙卡人民币白金卡-贷记卡', 693 | '625964' : u'中国建设银行-龙卡IC信用卡普卡-贷记卡', 694 | '625965' : u'中国建设银行-龙卡IC信用卡金卡-贷记卡', 695 | '625966' : u'中国建设银行-龙卡IC信用卡白金卡-贷记卡', 696 | '628266' : u'中国建设银行-龙卡银联公务卡普卡-贷记卡', 697 | '628366' : u'中国建设银行-龙卡银联公务卡金卡-贷记卡', 698 | '625362' : u'中国建设银行-中国旅游卡-贷记卡', 699 | '625363' : u'中国建设银行-中国旅游卡-贷记卡', 700 | '628316' : u'中国建设银行-龙卡IC公务卡-贷记卡', 701 | '628317' : u'中国建设银行-龙卡IC公务卡-贷记卡', 702 | '620021' : u'交通银行-交行预付卡-预付费卡', 703 | '620521' : u'交通银行-世博预付IC卡-预付费卡', 704 | '00405512' : u'交通银行-太平洋互连卡-借记卡', 705 | '0049104' : u'交通银行-太平洋信用卡-贷记卡', 706 | '0053783' : u'交通银行-太平洋信用卡-贷记卡', 707 | '00601428' : u'交通银行-太平洋万事顺卡-借记卡', 708 | '405512' : u'交通银行-太平洋互连卡(银联卡)-借记卡', 709 | '434910' : u'交通银行-太平洋白金信用卡-贷记卡', 710 | '458123' : u'交通银行-太平洋双币贷记卡-贷记卡', 711 | '458124' : u'交通银行-太平洋双币贷记卡-贷记卡', 712 | '49104' : u'交通银行-太平洋信用卡-贷记卡', 713 | '520169' : u'交通银行-太平洋双币贷记卡-贷记卡', 714 | '522964' : u'交通银行-太平洋白金信用卡-贷记卡', 715 | '53783' : u'交通银行-太平洋信用卡-贷记卡', 716 | '552853' : u'交通银行-太平洋双币贷记卡-贷记卡', 717 | '601428' : u'交通银行-太平洋万事顺卡-借记卡', 718 | '622250' : u'交通银行-太平洋人民币贷记卡-贷记卡', 719 | '622251' : u'交通银行-太平洋人民币贷记卡-贷记卡', 720 | '521899' : u'交通银行-太平洋双币贷记卡-贷记卡', 721 | '622254' : u'交通银行-太平洋准贷记卡-准贷记卡', 722 | '622255' : u'交通银行-太平洋准贷记卡-准贷记卡', 723 | '622256' : u'交通银行-太平洋准贷记卡-准贷记卡', 724 | '622257' : u'交通银行-太平洋准贷记卡-准贷记卡', 725 | '622258' : u'交通银行-太平洋借记卡-借记卡', 726 | '622259' : u'交通银行-太平洋借记卡-借记卡', 727 | '622253' : u'交通银行-太平洋人民币贷记卡-贷记卡', 728 | '622261' : u'交通银行-太平洋借记卡-借记卡', 729 | '622284' : u'交通银行-太平洋MORE卡-准贷记卡', 730 | '622656' : u'交通银行-白金卡-贷记卡', 731 | '628216' : u'交通银行-交通银行公务卡普卡-贷记卡', 732 | '622252' : u'交通银行-太平洋人民币贷记卡-贷记卡', 733 | '66405512' : u'交通银行-太平洋互连卡-借记卡', 734 | '6649104' : u'交通银行-太平洋信用卡-贷记卡', 735 | '622260' : u'交通银行-太平洋借记卡-借记卡', 736 | '66601428' : u'交通银行-太平洋万事顺卡-借记卡', 737 | '955590' : u'交通银行-太平洋贷记卡(银联卡)-贷记卡', 738 | '955591' : u'交通银行-太平洋贷记卡(银联卡)-贷记卡', 739 | '955592' : u'交通银行-太平洋贷记卡(银联卡)-贷记卡', 740 | '955593' : u'交通银行-太平洋贷记卡(银联卡)-贷记卡', 741 | '6653783' : u'交通银行-太平洋信用卡-贷记卡', 742 | '628218' : u'交通银行-交通银行公务卡金卡-贷记卡', 743 | '622262' : u'交通银行-交银IC卡-借记卡', 744 | '621069' : u'交通银行香港分行-交通银行港币借记卡-借记卡', 745 | '620013' : u'交通银行香港分行-港币礼物卡-借记卡', 746 | '625028' : u'交通银行香港分行-双币种信用卡-贷记卡', 747 | '625029' : u'交通银行香港分行-双币种信用卡-贷记卡', 748 | '621436' : u'交通银行香港分行-双币卡-借记卡', 749 | '621002' : u'交通银行香港分行-银联人民币卡-借记卡', 750 | '621335' : u'交通银行澳门分行-银联借记卡-借记卡', 751 | '433670' : u'中信银行-中信借记卡-借记卡', 752 | '433680' : u'中信银行-中信借记卡-借记卡', 753 | '442729' : u'中信银行-中信国际借记卡-借记卡', 754 | '442730' : u'中信银行-中信国际借记卡-借记卡', 755 | '620082' : u'中信银行-中国旅行卡-借记卡', 756 | '622690' : u'中信银行-中信借记卡(银联卡)-借记卡', 757 | '622691' : u'中信银行-中信借记卡(银联卡)-借记卡', 758 | '622692' : u'中信银行-中信贵宾卡(银联卡)-借记卡', 759 | '622696' : u'中信银行-中信理财宝金卡-借记卡', 760 | '622698' : u'中信银行-中信理财宝白金卡-借记卡', 761 | '622998' : u'中信银行-中信钻石卡-借记卡', 762 | '622999' : u'中信银行-中信钻石卡-借记卡', 763 | '433671' : u'中信银行-中信借记卡-借记卡', 764 | '968807' : u'中信银行-中信理财宝(银联卡)-借记卡', 765 | '968808' : u'中信银行-中信理财宝(银联卡)-借记卡', 766 | '968809' : u'中信银行-中信理财宝(银联卡)-借记卡', 767 | '621771' : u'中信银行-借记卡-借记卡', 768 | '621767' : u'中信银行-理财宝IC卡-借记卡', 769 | '621768' : u'中信银行-理财宝IC卡-借记卡', 770 | '621770' : u'中信银行-理财宝IC卡-借记卡', 771 | '621772' : u'中信银行-理财宝IC卡-借记卡', 772 | '621773' : u'中信银行-理财宝IC卡-借记卡', 773 | '620527' : u'中信银行-主账户复合电子现金卡-借记卡', 774 | '303' : u'光大银行-阳光卡-借记卡', 775 | '356837' : u'光大银行-阳光商旅信用卡-贷记卡', 776 | '356838' : u'光大银行-阳光商旅信用卡-贷记卡', 777 | '486497' : u'光大银行-阳光商旅信用卡-贷记卡', 778 | '622660' : u'光大银行-阳光卡(银联卡)-借记卡', 779 | '622662' : u'光大银行-阳光卡(银联卡)-借记卡', 780 | '622663' : u'光大银行-阳光卡(银联卡)-借记卡', 781 | '622664' : u'光大银行-阳光卡(银联卡)-借记卡', 782 | '622665' : u'光大银行-阳光卡(银联卡)-借记卡', 783 | '622666' : u'光大银行-阳光卡(银联卡)-借记卡', 784 | '622667' : u'光大银行-阳光卡(银联卡)-借记卡', 785 | '622669' : u'光大银行-阳光卡(银联卡)-借记卡', 786 | '622670' : u'光大银行-阳光卡(银联卡)-借记卡', 787 | '622671' : u'光大银行-阳光卡(银联卡)-借记卡', 788 | '622672' : u'光大银行-阳光卡(银联卡)-借记卡', 789 | '622668' : u'光大银行-阳光卡(银联卡)-借记卡', 790 | '622661' : u'光大银行-阳光卡(银联卡)-借记卡', 791 | '622674' : u'光大银行-阳光卡(银联卡)-借记卡', 792 | '90030' : u'光大银行-阳光卡(银联卡)-借记卡', 793 | '622673' : u'光大银行-阳光卡(银联卡)-借记卡', 794 | '620518' : u'光大银行-借记卡普卡-借记卡', 795 | '621489' : u'光大银行-社会保障IC卡-借记卡', 796 | '621492' : u'光大银行-IC借记卡普卡-借记卡', 797 | '620535' : u'光大银行-手机支付卡-借记卡', 798 | '623156' : u'光大银行-联名IC卡普卡-借记卡', 799 | '621490' : u'光大银行-借记IC卡白金卡-借记卡', 800 | '621491' : u'光大银行-借记IC卡金卡-借记卡', 801 | '620085' : u'光大银行-阳光旅行卡-借记卡', 802 | '623155' : u'光大银行-借记IC卡钻石卡-借记卡', 803 | '623157' : u'光大银行-联名IC卡金卡-借记卡', 804 | '623158' : u'光大银行-联名IC卡白金卡-借记卡', 805 | '623159' : u'光大银行-联名IC卡钻石卡-借记卡', 806 | '999999' : u'华夏银行-华夏卡(银联卡)-借记卡', 807 | '621222' : u'华夏银行-华夏白金卡-借记卡', 808 | '623020' : u'华夏银行-华夏普卡-借记卡', 809 | '623021' : u'华夏银行-华夏金卡-借记卡', 810 | '623022' : u'华夏银行-华夏白金卡-借记卡', 811 | '623023' : u'华夏银行-华夏钻石卡-借记卡', 812 | '622630' : u'华夏银行-华夏卡(银联卡)-借记卡', 813 | '622631' : u'华夏银行-华夏至尊金卡(银联卡)-借记卡', 814 | '622632' : u'华夏银行-华夏丽人卡(银联卡)-借记卡', 815 | '622633' : u'华夏银行-华夏万通卡-借记卡', 816 | '622615' : u'民生银行-民生借记卡(银联卡)-借记卡', 817 | '622616' : u'民生银行-民生银联借记卡-金卡-借记卡', 818 | '622618' : u'民生银行-钻石卡-借记卡', 819 | '622622' : u'民生银行-民生借记卡(银联卡)-借记卡', 820 | '622617' : u'民生银行-民生借记卡(银联卡)-借记卡', 821 | '622619' : u'民生银行-民生借记卡(银联卡)-借记卡', 822 | '415599' : u'民生银行-民生借记卡-借记卡', 823 | '421393' : u'民生银行-民生国际卡-借记卡', 824 | '421865' : u'民生银行-民生国际卡(银卡)-借记卡', 825 | '427570' : u'民生银行-民生国际卡(欧元卡)-借记卡', 826 | '427571' : u'民生银行-民生国际卡(澳元卡)-借记卡', 827 | '472067' : u'民生银行-民生国际卡-借记卡', 828 | '472068' : u'民生银行-民生国际卡-借记卡', 829 | '622620' : u'民生银行-薪资理财卡-借记卡', 830 | '621691' : u'民生银行-借记卡普卡-借记卡', 831 | '545392' : u'民生银行-民生MasterCard-贷记卡', 832 | '545393' : u'民生银行-民生MasterCard-贷记卡', 833 | '545431' : u'民生银行-民生MasterCard-贷记卡', 834 | '545447' : u'民生银行-民生MasterCard-贷记卡', 835 | '356859' : u'民生银行-民生JCB信用卡-贷记卡', 836 | '356857' : u'民生银行-民生JCB金卡-贷记卡', 837 | '407405' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 838 | '421869' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 839 | '421870' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 840 | '421871' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 841 | '512466' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 842 | '356856' : u'民生银行-民生JCB普卡-贷记卡', 843 | '528948' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 844 | '552288' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 845 | '622600' : u'民生银行-民生信用卡(银联卡)-贷记卡', 846 | '622601' : u'民生银行-民生信用卡(银联卡)-贷记卡', 847 | '622602' : u'民生银行-民生银联白金信用卡-贷记卡', 848 | '517636' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 849 | '622621' : u'民生银行-民生银联个人白金卡-贷记卡', 850 | '628258' : u'民生银行-公务卡金卡-贷记卡', 851 | '556610' : u'民生银行-民生贷记卡(银联卡)-贷记卡', 852 | '622603' : u'民生银行-民生银联商务信用卡-贷记卡', 853 | '464580' : u'民生银行-民VISA无限卡-贷记卡', 854 | '464581' : u'民生银行-民生VISA商务白金卡-贷记卡', 855 | '523952' : u'民生银行-民生万事达钛金卡-贷记卡', 856 | '545217' : u'民生银行-民生万事达世界卡-贷记卡', 857 | '553161' : u'民生银行-民生万事达白金公务卡-贷记卡', 858 | '356858' : u'民生银行-民生JCB白金卡-贷记卡', 859 | '622623' : u'民生银行-银联标准金卡-贷记卡', 860 | '625911' : u'民生银行-银联芯片普卡-贷记卡', 861 | '377152' : u'民生银行-民生运通双币信用卡普卡-贷记卡', 862 | '377153' : u'民生银行-民生运通双币信用卡金卡-贷记卡', 863 | '377158' : u'民生银行-民生运通双币信用卡钻石卡-贷记卡', 864 | '377155' : u'民生银行-民生运通双币标准信用卡白金卡-贷记卡', 865 | '625912' : u'民生银行-银联芯片金卡-贷记卡', 866 | '625913' : u'民生银行-银联芯片白金卡-贷记卡', 867 | '406365' : u'广发银行股份有限公司-广发VISA信用卡-贷记卡', 868 | '406366' : u'广发银行股份有限公司-广发VISA信用卡-贷记卡', 869 | '428911' : u'广发银行股份有限公司-广发信用卡-贷记卡', 870 | '436768' : u'广发银行股份有限公司-广发信用卡-贷记卡', 871 | '436769' : u'广发银行股份有限公司-广发信用卡-贷记卡', 872 | '487013' : u'广发银行股份有限公司-广发VISA信用卡-贷记卡', 873 | '491032' : u'广发银行股份有限公司-广发信用卡-贷记卡', 874 | '491034' : u'广发银行股份有限公司-广发信用卡-贷记卡', 875 | '491035' : u'广发银行股份有限公司-广发信用卡-贷记卡', 876 | '491036' : u'广发银行股份有限公司-广发信用卡-贷记卡', 877 | '491037' : u'广发银行股份有限公司-广发信用卡-贷记卡', 878 | '491038' : u'广发银行股份有限公司-广发信用卡-贷记卡', 879 | '518364' : u'广发银行股份有限公司-广发信用卡-贷记卡', 880 | '520152' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 881 | '520382' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 882 | '548844' : u'广发银行股份有限公司-广发信用卡-贷记卡', 883 | '552794' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 884 | '622555' : u'广发银行股份有限公司-广发银联标准金卡-贷记卡', 885 | '622556' : u'广发银行股份有限公司-广发银联标准普卡-贷记卡', 886 | '622557' : u'广发银行股份有限公司-广发银联标准真情金卡-贷记卡', 887 | '622558' : u'广发银行股份有限公司-广发银联标准白金卡-贷记卡', 888 | '622559' : u'广发银行股份有限公司-广发银联标准真情普卡-贷记卡', 889 | '622560' : u'广发银行股份有限公司-广发真情白金卡-贷记卡', 890 | '622568' : u'广发银行股份有限公司-广发理财通卡-借记卡', 891 | '528931' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 892 | '9111' : u'广发银行股份有限公司-广发理财通(银联卡)-借记卡', 893 | '558894' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 894 | '625072' : u'广发银行股份有限公司-银联标准金卡-贷记卡', 895 | '625071' : u'广发银行股份有限公司-银联标准普卡-贷记卡', 896 | '628260' : u'广发银行股份有限公司-银联公务金卡-贷记卡', 897 | '628259' : u'广发银行股份有限公司-银联公务普卡-贷记卡', 898 | '621462' : u'广发银行股份有限公司-理财通卡-借记卡', 899 | '625805' : u'广发银行股份有限公司-银联真情普卡-贷记卡', 900 | '625806' : u'广发银行股份有限公司-银联真情金卡-贷记卡', 901 | '625807' : u'广发银行股份有限公司-银联真情白金卡-贷记卡', 902 | '625808' : u'广发银行股份有限公司-银联标准普卡-贷记卡', 903 | '625809' : u'广发银行股份有限公司-银联标准金卡-贷记卡', 904 | '625810' : u'广发银行股份有限公司-银联标准白金卡-贷记卡', 905 | '685800' : u'广发银行股份有限公司-广发万事达信用卡-贷记卡', 906 | '620037' : u'广发银行股份有限公司-广发青年银行预付卡-预付费卡', 907 | '6858000' : u'广发银行股份有限公司-广发理财通-贷记卡', 908 | '6858001' : u'广发银行股份有限公司-广发理财通-借记卡', 909 | '6858009' : u'广发银行股份有限公司-广发理财通-借记卡', 910 | '623506' : u'广发银行股份有限公司-广发财富管理多币IC卡-借记卡', 911 | '412963' : u'平安银行(借记卡)-发展借记卡-借记卡', 912 | '415752' : u'平安银行(借记卡)-国际借记卡-借记卡', 913 | '415753' : u'平安银行(借记卡)-国际借记卡-借记卡', 914 | '622535' : u'平安银行(借记卡)-聚财卡金卡-借记卡', 915 | '622536' : u'平安银行(借记卡)-聚财卡VIP金卡-借记卡', 916 | '622538' : u'平安银行(借记卡)-发展卡(银联卡)-借记卡', 917 | '622539' : u'平安银行(借记卡)-聚财卡白金卡和钻石卡-借记卡', 918 | '998800' : u'平安银行(借记卡)-发展借记卡(银联卡)-借记卡', 919 | '412962' : u'平安银行(借记卡)-发展借记卡-借记卡', 920 | '622983' : u'平安银行(借记卡)-聚财卡钻石卡-借记卡', 921 | '620010' : u'平安银行(借记卡)-公益预付卡-预付费卡', 922 | '356885' : u'招商银行-招商银行信用卡-贷记卡', 923 | '356886' : u'招商银行-招商银行信用卡-贷记卡', 924 | '356887' : u'招商银行-招商银行信用卡-贷记卡', 925 | '356888' : u'招商银行-招商银行信用卡-贷记卡', 926 | '356890' : u'招商银行-招商银行信用卡-贷记卡', 927 | '402658' : u'招商银行-两地一卡通-借记卡', 928 | '410062' : u'招商银行-招行国际卡(银联卡)-借记卡', 929 | '439188' : u'招商银行-招商银行信用卡-贷记卡', 930 | '439227' : u'招商银行-VISA商务信用卡-贷记卡', 931 | '468203' : u'招商银行-招行国际卡(银联卡)-借记卡', 932 | '479228' : u'招商银行-招商银行信用卡-贷记卡', 933 | '479229' : u'招商银行-招商银行信用卡-贷记卡', 934 | '512425' : u'招商银行-招行国际卡(银联卡)-借记卡', 935 | '521302' : u'招商银行-世纪金花联名信用卡-贷记卡', 936 | '524011' : u'招商银行-招行国际卡(银联卡)-借记卡', 937 | '356889' : u'招商银行-招商银行信用卡-贷记卡', 938 | '545620' : u'招商银行-万事达信用卡-贷记卡', 939 | '545621' : u'招商银行-万事达信用卡-贷记卡', 940 | '545947' : u'招商银行-万事达信用卡-贷记卡', 941 | '545948' : u'招商银行-万事达信用卡-贷记卡', 942 | '552534' : u'招商银行-招商银行信用卡-贷记卡', 943 | '552587' : u'招商银行-招商银行信用卡-贷记卡', 944 | '622575' : u'招商银行-招商银行信用卡-贷记卡', 945 | '622576' : u'招商银行-招商银行信用卡-贷记卡', 946 | '622577' : u'招商银行-招商银行信用卡-贷记卡', 947 | '622579' : u'招商银行-招商银行信用卡-贷记卡', 948 | '622580' : u'招商银行-一卡通(银联卡)-借记卡', 949 | '545619' : u'招商银行-万事达信用卡-贷记卡', 950 | '622581' : u'招商银行-招商银行信用卡-贷记卡', 951 | '622582' : u'招商银行-招商银行信用卡-贷记卡', 952 | '622588' : u'招商银行-一卡通(银联卡)-借记卡', 953 | '622598' : u'招商银行-公司卡(银联卡)-借记卡', 954 | '622609' : u'招商银行-金卡-借记卡', 955 | '690755' : u'招商银行-招行一卡通-借记卡', 956 | '95555' : u'招商银行-一卡通(银联卡)-借记卡', 957 | '545623' : u'招商银行-万事达信用卡-贷记卡', 958 | '621286' : u'招商银行-金葵花卡-借记卡', 959 | '620520' : u'招商银行-电子现金卡-预付费卡', 960 | '621483' : u'招商银行-银联IC普卡-借记卡', 961 | '621485' : u'招商银行-银联IC金卡-借记卡', 962 | '621486' : u'招商银行-银联金葵花IC卡-借记卡', 963 | '628290' : u'招商银行-IC公务卡-贷记卡', 964 | '622578' : u'招商银行-招商银行信用卡-贷记卡', 965 | '370285' : u'招商银行信用卡中心-美国运通绿卡-贷记卡', 966 | '370286' : u'招商银行信用卡中心-美国运通金卡-贷记卡', 967 | '370287' : u'招商银行信用卡中心-美国运通商务绿卡-贷记卡', 968 | '370289' : u'招商银行信用卡中心-美国运通商务金卡-贷记卡', 969 | '439225' : u'招商银行信用卡中心-VISA信用卡-贷记卡', 970 | '518710' : u'招商银行信用卡中心-MASTER信用卡-贷记卡', 971 | '518718' : u'招商银行信用卡中心-MASTER信用金卡-贷记卡', 972 | '628362' : u'招商银行信用卡中心-银联标准公务卡(金卡)-贷记卡', 973 | '439226' : u'招商银行信用卡中心-VISA信用卡-贷记卡', 974 | '628262' : u'招商银行信用卡中心-银联标准财政公务卡-贷记卡', 975 | '625802' : u'招商银行信用卡中心-芯片IC信用卡-贷记卡', 976 | '625803' : u'招商银行信用卡中心-芯片IC信用卡-贷记卡', 977 | '621299' : u'招商银行香港分行-香港一卡通-借记卡', 978 | '90592' : u'兴业银行-兴业卡-借记卡', 979 | '966666' : u'兴业银行-兴业卡(银联卡)-借记卡', 980 | '622909' : u'兴业银行-兴业卡(银联标准卡)-借记卡', 981 | '622908' : u'兴业银行-兴业自然人生理财卡-借记卡', 982 | '438588' : u'兴业银行-兴业智能卡(银联卡)-借记卡', 983 | '438589' : u'兴业银行-兴业智能卡-借记卡', 984 | '461982' : u'兴业银行-visa标准双币个人普卡-贷记卡', 985 | '486493' : u'兴业银行-VISA商务普卡-贷记卡', 986 | '486494' : u'兴业银行-VISA商务金卡-贷记卡', 987 | '486861' : u'兴业银行-VISA运动白金信用卡-贷记卡', 988 | '523036' : u'兴业银行-万事达信用卡(银联卡)-贷记卡', 989 | '451289' : u'兴业银行-VISA信用卡(银联卡)-贷记卡', 990 | '527414' : u'兴业银行-加菲猫信用卡-贷记卡', 991 | '528057' : u'兴业银行-个人白金卡-贷记卡', 992 | '622901' : u'兴业银行-银联信用卡(银联卡)-贷记卡', 993 | '622922' : u'兴业银行-银联白金信用卡-贷记卡', 994 | '628212' : u'兴业银行-银联标准公务卡-贷记卡', 995 | '451290' : u'兴业银行-VISA信用卡(银联卡)-贷记卡', 996 | '524070' : u'兴业银行-万事达信用卡(银联卡)-贷记卡', 997 | '625084' : u'兴业银行-银联标准贷记普卡-贷记卡', 998 | '625085' : u'兴业银行-银联标准贷记金卡-贷记卡', 999 | '625086' : u'兴业银行-银联标准贷记金卡-贷记卡', 1000 | '625087' : u'兴业银行-银联标准贷记金卡-贷记卡', 1001 | '548738' : u'兴业银行-兴业信用卡-贷记卡', 1002 | '549633' : u'兴业银行-兴业信用卡-贷记卡', 1003 | '552398' : u'兴业银行-兴业信用卡-贷记卡', 1004 | '625082' : u'兴业银行-银联标准贷记普卡-贷记卡', 1005 | '625083' : u'兴业银行-银联标准贷记普卡-贷记卡', 1006 | '625960' : u'兴业银行-兴业芯片普卡-贷记卡', 1007 | '625961' : u'兴业银行-兴业芯片金卡-贷记卡', 1008 | '625962' : u'兴业银行-兴业芯片白金卡-贷记卡', 1009 | '625963' : u'兴业银行-兴业芯片钻石卡-贷记卡', 1010 | '356851' : u'浦东发展银行-浦发JCB金卡-贷记卡', 1011 | '356852' : u'浦东发展银行-浦发JCB白金卡-贷记卡', 1012 | '404738' : u'浦东发展银行-信用卡VISA普通-贷记卡', 1013 | '404739' : u'浦东发展银行-信用卡VISA金卡-贷记卡', 1014 | '456418' : u'浦东发展银行-浦发银行VISA年青卡-贷记卡', 1015 | '498451' : u'浦东发展银行-VISA白金信用卡-贷记卡', 1016 | '515672' : u'浦东发展银行-浦发万事达白金卡-贷记卡', 1017 | '356850' : u'浦东发展银行-浦发JCB普卡-贷记卡', 1018 | '517650' : u'浦东发展银行-浦发万事达金卡-贷记卡', 1019 | '525998' : u'浦东发展银行-浦发万事达普卡-贷记卡', 1020 | '622177' : u'浦东发展银行-浦发单币卡-贷记卡', 1021 | '622277' : u'浦东发展银行-浦发银联单币麦兜普卡-贷记卡', 1022 | '622516' : u'浦东发展银行-东方轻松理财卡-借记卡', 1023 | '622518' : u'浦东发展银行-东方轻松理财卡-借记卡', 1024 | '622520' : u'浦东发展银行-东方轻松理财智业金卡-准贷记卡', 1025 | '622521' : u'浦东发展银行-东方卡(银联卡)-借记卡', 1026 | '622522' : u'浦东发展银行-东方卡(银联卡)-借记卡', 1027 | '622523' : u'浦东发展银行-东方卡(银联卡)-借记卡', 1028 | '628222' : u'浦东发展银行-公务卡金卡-贷记卡', 1029 | '84301' : u'浦东发展银行-东方卡-借记卡', 1030 | '84336' : u'浦东发展银行-东方卡-借记卡', 1031 | '84373' : u'浦东发展银行-东方卡-借记卡', 1032 | '628221' : u'浦东发展银行-公务卡普卡-贷记卡', 1033 | '84385' : u'浦东发展银行-东方卡-借记卡', 1034 | '84390' : u'浦东发展银行-东方卡-借记卡', 1035 | '87000' : u'浦东发展银行-东方卡-借记卡', 1036 | '87010' : u'浦东发展银行-东方卡-借记卡', 1037 | '87030' : u'浦东发展银行-东方卡-借记卡', 1038 | '87040' : u'浦东发展银行-东方卡-借记卡', 1039 | '84380' : u'浦东发展银行-东方卡-借记卡', 1040 | '984301' : u'浦东发展银行-东方卡-借记卡', 1041 | '984303' : u'浦东发展银行-东方卡-借记卡', 1042 | '84361' : u'浦东发展银行-东方卡-借记卡', 1043 | '87050' : u'浦东发展银行-东方卡-借记卡', 1044 | '622176' : u'浦东发展银行-浦发单币卡-贷记卡', 1045 | '622276' : u'浦东发展银行-浦发联名信用卡-贷记卡', 1046 | '622228' : u'浦东发展银行-浦发银联白金卡-贷记卡', 1047 | '621352' : u'浦东发展银行-轻松理财普卡-借记卡', 1048 | '621351' : u'浦东发展银行-移动联名卡-借记卡', 1049 | '621390' : u'浦东发展银行-轻松理财消贷易卡-借记卡', 1050 | '621792' : u'浦东发展银行-轻松理财普卡(复合卡)-借记卡', 1051 | '625957' : u'浦东发展银行-贷记卡-贷记卡', 1052 | '625958' : u'浦东发展银行-贷记卡-贷记卡', 1053 | '621791' : u'浦东发展银行-东方借记卡(复合卡)-借记卡', 1054 | '84342' : u'浦东发展银行-东方卡-借记卡', 1055 | '620530' : u'浦东发展银行-电子现金卡(IC卡)-预付费卡', 1056 | '625993' : u'浦东发展银行-移动浦发联名卡-贷记卡', 1057 | '622519' : u'浦东发展银行-东方-标准准贷记卡-准贷记卡', 1058 | '621793' : u'浦东发展银行-轻松理财金卡(复合卡)-借记卡', 1059 | '621795' : u'浦东发展银行-轻松理财白金卡(复合卡)-借记卡', 1060 | '621796' : u'浦东发展银行-轻松理财钻石卡(复合卡)-借记卡', 1061 | '622500' : u'浦东发展银行-东方卡-贷记卡', 1062 | '623078' : u'恒丰银行-九州IC卡-借记卡', 1063 | '622384' : u'恒丰银行-九州借记卡(银联卡)-借记卡', 1064 | '940034' : u'恒丰银行-九州借记卡(银联卡)-借记卡', 1065 | '6091201' : u'天津市商业银行-津卡-借记卡', 1066 | '940015' : u'天津市商业银行-银联卡(银联卡)-借记卡', 1067 | '940008' : u'齐鲁银行股份有限公司-齐鲁卡(银联卡)-借记卡', 1068 | '622379' : u'齐鲁银行股份有限公司-齐鲁卡(银联卡)-借记卡', 1069 | '622886' : u'烟台商业银行-金通卡-借记卡', 1070 | '622391' : u'潍坊银行-鸢都卡(银联卡)-借记卡', 1071 | '940072' : u'潍坊银行-鸳都卡(银联卡)-借记卡', 1072 | '622359' : u'临沂商业银行-沂蒙卡(银联卡)-借记卡', 1073 | '940066' : u'临沂商业银行-沂蒙卡(银联卡)-借记卡', 1074 | '622857' : u'日照市商业银行-黄海卡-借记卡', 1075 | '940065' : u'日照市商业银行-黄海卡(银联卡)-借记卡', 1076 | '621019' : u'浙商银行-商卡-借记卡', 1077 | '6223091100' : u'浙商银行天津分行-商卡-借记卡', 1078 | '6223092900' : u'浙商银行上海分行-商卡-借记卡', 1079 | '6223093310' : u'浙商银行营业部-商卡(银联卡)-借记卡', 1080 | '6223093320' : u'浙商银行宁波分行-商卡(银联卡)-借记卡', 1081 | '6223093330' : u'浙商银行温州分行-商卡(银联卡)-借记卡', 1082 | '6223093370' : u'浙商银行绍兴分行-商卡-借记卡', 1083 | '6223093380' : u'浙商银行义乌分行-商卡(银联卡)-借记卡', 1084 | '6223096510' : u'浙商银行成都分行-商卡(银联卡)-借记卡', 1085 | '6223097910' : u'浙商银行西安分行-商卡-借记卡', 1086 | '621268' : u'渤海银行-浩瀚金卡-借记卡', 1087 | '622884' : u'渤海银行-渤海银行借记卡-借记卡', 1088 | '621453' : u'渤海银行-金融IC卡-借记卡', 1089 | '622684' : u'渤海银行-渤海银行公司借记卡-借记卡', 1090 | '621062' : u'花旗银行(中国)有限公司-借记卡普卡-借记卡', 1091 | '621063' : u'花旗银行(中国)有限公司-借记卡高端卡-借记卡', 1092 | '625076' : u'花旗中国-花旗礼享卡-贷记卡', 1093 | '625077' : u'花旗中国-花旗礼享卡-贷记卡', 1094 | '625074' : u'花旗中国-花旗礼享卡-贷记卡', 1095 | '625075' : u'花旗中国-花旗礼享卡-贷记卡', 1096 | '622933' : u'东亚银行中国有限公司-紫荆卡-借记卡', 1097 | '622938' : u'东亚银行中国有限公司-显卓理财卡-借记卡', 1098 | '623031' : u'东亚银行中国有限公司-借记卡-借记卡', 1099 | '622946' : u'汇丰银(中国)有限公司-汇丰中国卓越理财卡-借记卡', 1100 | '622942' : u'渣打银行中国有限公司-渣打银行智通借记卡-借记卡', 1101 | '622994' : u'渣打银行中国有限公司-渣打银行白金借记卡-借记卡', 1102 | '621016' : u'星展银行-星展银行借记卡-借记卡', 1103 | '621015' : u'星展银行-星展银行借记卡-借记卡', 1104 | '622950' : u'恒生银行-恒生通财卡-借记卡', 1105 | '622951' : u'恒生银行-恒生优越通财卡-借记卡', 1106 | '621060' : u'友利银行(中国)有限公司-友利借记卡-借记卡', 1107 | '621072' : u'新韩银行-新韩卡-借记卡', 1108 | '621201' : u'韩亚银行(中国)-韩亚卡-借记卡', 1109 | '621077' : u'华侨银行(中国)-卓锦借记卡-借记卡', 1110 | '621298' : u'永亨银行(中国)有限公司-永亨卡-借记卡', 1111 | '621213' : u'南洋商业银行(中国)-借记卡-借记卡', 1112 | '621289' : u'南洋商业银行(中国)-财互通卡-借记卡', 1113 | '621290' : u'南洋商业银行(中国)-财互通卡-借记卡', 1114 | '621291' : u'南洋商业银行(中国)-财互通卡-借记卡', 1115 | '621292' : u'南洋商业银行(中国)-财互通卡-借记卡', 1116 | '621245' : u'法国兴业银行(中国)-法兴标准借记卡-借记卡', 1117 | '621328' : u'大华银行(中国)-尊享理财卡-借记卡', 1118 | '621277' : u'大新银行(中国)-借记卡-借记卡', 1119 | '621651' : u'企业银行(中国)-瑞卡-借记卡', 1120 | '623183' : u'上海银行-慧通钻石卡-借记卡', 1121 | '623185' : u'上海银行-慧通金卡-借记卡', 1122 | '621005' : u'上海银行-私人银行卡-借记卡', 1123 | '622172' : u'上海银行-综合保险卡-借记卡', 1124 | '622985' : u'上海银行-申卡社保副卡(有折)-借记卡', 1125 | '622987' : u'上海银行-申卡社保副卡(无折)-借记卡', 1126 | '622267' : u'上海银行-白金IC借记卡-借记卡', 1127 | '622278' : u'上海银行-慧通白金卡(配折)-借记卡', 1128 | '622279' : u'上海银行-慧通白金卡(不配折)-借记卡', 1129 | '622468' : u'上海银行-申卡(银联卡)-借记卡', 1130 | '622892' : u'上海银行-申卡借记卡-借记卡', 1131 | '940021' : u'上海银行-银联申卡(银联卡)-借记卡', 1132 | '621050' : u'上海银行-单位借记卡-借记卡', 1133 | '620522' : u'上海银行-首发纪念版IC卡-借记卡', 1134 | '356827' : u'上海银行-申卡贷记卡-贷记卡', 1135 | '356828' : u'上海银行-申卡贷记卡-贷记卡', 1136 | '356830' : u'上海银行-J分期付款信用卡-贷记卡', 1137 | '402673' : u'上海银行-申卡贷记卡-贷记卡', 1138 | '402674' : u'上海银行-申卡贷记卡-贷记卡', 1139 | '438600' : u'上海银行-上海申卡IC-借记卡', 1140 | '486466' : u'上海银行-申卡贷记卡-贷记卡', 1141 | '519498' : u'上海银行-申卡贷记卡普通卡-贷记卡', 1142 | '520131' : u'上海银行-申卡贷记卡金卡-贷记卡', 1143 | '524031' : u'上海银行-万事达白金卡-贷记卡', 1144 | '548838' : u'上海银行-万事达星运卡-贷记卡', 1145 | '622148' : u'上海银行-申卡贷记卡金卡-贷记卡', 1146 | '622149' : u'上海银行-申卡贷记卡普通卡-贷记卡', 1147 | '622268' : u'上海银行-安融卡-贷记卡', 1148 | '356829' : u'上海银行-分期付款信用卡-贷记卡', 1149 | '622300' : u'上海银行-信用卡-贷记卡', 1150 | '628230' : u'上海银行-个人公务卡-贷记卡', 1151 | '622269' : u'上海银行-安融卡-贷记卡', 1152 | '625099' : u'上海银行-上海银行银联白金卡-贷记卡', 1153 | '625953' : u'上海银行-贷记IC卡-贷记卡', 1154 | '625350' : u'上海银行-中国旅游卡(IC普卡)-贷记卡', 1155 | '625351' : u'上海银行-中国旅游卡(IC金卡)-贷记卡', 1156 | '625352' : u'上海银行-中国旅游卡(IC白金卡)-贷记卡', 1157 | '519961' : u'上海银行-万事达钻石卡-贷记卡', 1158 | '625839' : u'上海银行-淘宝IC普卡-贷记卡', 1159 | '622393' : u'厦门银行股份有限公司-银鹭借记卡(银联卡)-借记卡', 1160 | '6886592' : u'厦门银行股份有限公司-银鹭卡-借记卡', 1161 | '940023' : u'厦门银行股份有限公司-银联卡(银联卡)-借记卡', 1162 | '623019' : u'厦门银行股份有限公司-凤凰花卡-借记卡', 1163 | '621600' : u'厦门银行股份有限公司-凤凰花卡-借记卡', 1164 | '421317' : u'北京银行-京卡借记卡-借记卡', 1165 | '602969' : u'北京银行-京卡(银联卡)-借记卡', 1166 | '621030' : u'北京银行-京卡借记卡-借记卡', 1167 | '621420' : u'北京银行-京卡-借记卡', 1168 | '621468' : u'北京银行-京卡-借记卡', 1169 | '623111' : u'北京银行-借记IC卡-借记卡', 1170 | '422160' : u'北京银行-京卡贵宾金卡-借记卡', 1171 | '422161' : u'北京银行-京卡贵宾白金卡-借记卡', 1172 | '622388' : u'福建海峡银行股份有限公司-榕城卡(银联卡)-借记卡', 1173 | '621267' : u'福建海峡银行股份有限公司-福州市民卡-借记卡', 1174 | '620043' : u'福建海峡银行股份有限公司-福州市民卡-预付费卡', 1175 | '623063' : u'福建海峡银行股份有限公司-海福卡(IC卡)-借记卡', 1176 | '622865' : u'吉林银行-君子兰一卡通(银联卡)-借记卡', 1177 | '940012' : u'吉林银行-君子兰卡(银联卡)-借记卡', 1178 | '623131' : u'吉林银行-长白山金融IC卡-借记卡', 1179 | '622178' : u'吉林银行-信用卡-贷记卡', 1180 | '622179' : u'吉林银行-信用卡-贷记卡', 1181 | '628358' : u'吉林银行-公务卡-贷记卡', 1182 | '622394' : u'镇江市商业银行-金山灵通卡(银联卡)-借记卡', 1183 | '940025' : u'镇江市商业银行-金山灵通卡(银联卡)-借记卡', 1184 | '621279' : u'宁波银行-银联标准卡-借记卡', 1185 | '622281' : u'宁波银行-汇通借记卡-借记卡', 1186 | '622316' : u'宁波银行-汇通卡(银联卡)-借记卡', 1187 | '940022' : u'宁波银行-明州卡-借记卡', 1188 | '621418' : u'宁波银行-汇通借记卡-借记卡', 1189 | '512431' : u'宁波银行-汇通国际卡银联双币卡-贷记卡', 1190 | '520194' : u'宁波银行-汇通国际卡银联双币卡-贷记卡', 1191 | '621626' : u'平安银行-新磁条借记卡-借记卡', 1192 | '623058' : u'平安银行-平安银行IC借记卡-借记卡', 1193 | '602907' : u'平安银行-万事顺卡-借记卡', 1194 | '622986' : u'平安银行-平安银行借记卡-借记卡', 1195 | '622989' : u'平安银行-平安银行借记卡-借记卡', 1196 | '622298' : u'平安银行-万事顺借记卡-借记卡', 1197 | '622338' : u'焦作市商业银行-月季借记卡(银联卡)-借记卡', 1198 | '940032' : u'焦作市商业银行-月季城市通(银联卡)-借记卡', 1199 | '623205' : u'焦作市商业银行-中国旅游卡-借记卡', 1200 | '621977' : u'温州银行-金鹿卡-借记卡', 1201 | '603445' : u'广州银行股份有限公司-羊城借记卡-借记卡', 1202 | '622467' : u'广州银行股份有限公司-羊城借记卡(银联卡)-借记卡', 1203 | '940016' : u'广州银行股份有限公司-羊城借记卡(银联卡)-借记卡', 1204 | '621463' : u'广州银行股份有限公司-金融IC借记卡-借记卡', 1205 | '990027' : u'汉口银行-九通卡(银联卡)-借记卡', 1206 | '622325' : u'汉口银行-九通卡-借记卡', 1207 | '623029' : u'汉口银行-借记卡-借记卡', 1208 | '623105' : u'汉口银行-借记卡-借记卡', 1209 | '622475' : u'龙江银行股份有限公司-金鹤卡-借记卡', 1210 | '621244' : u'盛京银行-玫瑰卡-借记卡', 1211 | '623081' : u'盛京银行-玫瑰IC卡-借记卡', 1212 | '623108' : u'盛京银行-玫瑰IC卡-借记卡', 1213 | '566666' : u'盛京银行-玫瑰卡-借记卡', 1214 | '622455' : u'盛京银行-玫瑰卡-借记卡', 1215 | '940039' : u'盛京银行-玫瑰卡(银联卡)-借记卡', 1216 | '622466' : u'盛京银行-玫瑰卡(银联卡)-贷记卡', 1217 | '628285' : u'盛京银行-盛京银行公务卡-贷记卡', 1218 | '622420' : u'洛阳银行-都市一卡通(银联卡)-借记卡', 1219 | '940041' : u'洛阳银行-都市一卡通(银联卡)-借记卡', 1220 | '623118' : u'洛阳银行----借记卡', 1221 | '622399' : u'辽阳银行股份有限公司-新兴卡(银联卡)-借记卡', 1222 | '940043' : u'辽阳银行股份有限公司-新兴卡(银联卡)-借记卡', 1223 | '628309' : u'辽阳银行股份有限公司-公务卡-贷记卡', 1224 | '623151' : u'辽阳银行股份有限公司-新兴卡-借记卡', 1225 | '603708' : u'大连银行-北方明珠卡-借记卡', 1226 | '622993' : u'大连银行-人民币借记卡-借记卡', 1227 | '623070' : u'大连银行-金融IC借记卡-借记卡', 1228 | '623069' : u'大连银行-大连市社会保障卡-借记卡', 1229 | '623172' : u'大连银行-借记IC卡-借记卡', 1230 | '623173' : u'大连银行-借记IC卡-借记卡', 1231 | '622383' : u'大连银行-大连市商业银行贷记卡-贷记卡', 1232 | '622385' : u'大连银行-大连市商业银行贷记卡-贷记卡', 1233 | '628299' : u'大连银行-银联标准公务卡-贷记卡', 1234 | '603506' : u'苏州市商业银行-姑苏卡-借记卡', 1235 | '622498' : u'河北银行股份有限公司-如意借记卡(银联卡)-借记卡', 1236 | '622499' : u'河北银行股份有限公司-如意借记卡(银联卡)-借记卡', 1237 | '940046' : u'河北银行股份有限公司-如意卡(银联卡)-借记卡', 1238 | '623000' : u'河北银行股份有限公司-借记IC卡-借记卡', 1239 | '603367' : u'杭州商业银行-西湖卡-借记卡', 1240 | '622878' : u'杭州商业银行-西湖卡-借记卡', 1241 | '623061' : u'杭州商业银行-借记IC卡-借记卡', 1242 | '623209' : u'杭州商业银行--借记卡', 1243 | '628242' : u'南京银行-梅花信用卡公务卡-贷记卡', 1244 | '622595' : u'南京银行-梅花信用卡商务卡-贷记卡', 1245 | '621259' : u'南京银行-白金卡-借记卡', 1246 | '622596' : u'南京银行-商务卡-贷记卡', 1247 | '622333' : u'东莞市商业银行-万顺通卡(银联卡)-借记卡', 1248 | '940050' : u'东莞市商业银行-万顺通卡(银联卡)-借记卡', 1249 | '621439' : u'东莞市商业银行-万顺通借记卡-借记卡', 1250 | '623010' : u'东莞市商业银行-社会保障卡-借记卡', 1251 | '940051' : u'金华银行股份有限公司-双龙卡(银联卡)-借记卡', 1252 | '628204' : u'金华银行股份有限公司-公务卡-贷记卡', 1253 | '622449' : u'金华银行股份有限公司-双龙借记卡-借记卡', 1254 | '623067' : u'金华银行股份有限公司-双龙社保卡-借记卡', 1255 | '622450' : u'金华银行股份有限公司-双龙贷记卡(银联卡)-贷记卡', 1256 | '621751' : u'乌鲁木齐市商业银行-雪莲借记IC卡-借记卡', 1257 | '628278' : u'乌鲁木齐市商业银行-乌鲁木齐市公务卡-贷记卡', 1258 | '625502' : u'乌鲁木齐市商业银行-福农卡贷记卡-贷记卡', 1259 | '625503' : u'乌鲁木齐市商业银行-福农卡准贷记卡-准贷记卡', 1260 | '625135' : u'乌鲁木齐市商业银行-雪莲准贷记卡-准贷记卡', 1261 | '622476' : u'乌鲁木齐市商业银行-雪莲贷记卡(银联卡)-贷记卡', 1262 | '621754' : u'乌鲁木齐市商业银行-雪莲借记IC卡-借记卡', 1263 | '622143' : u'乌鲁木齐市商业银行-雪莲借记卡(银联卡)-借记卡', 1264 | '940001' : u'乌鲁木齐市商业银行-雪莲卡(银联卡)-借记卡', 1265 | '622486' : u'绍兴银行股份有限公司-兰花卡(银联卡)-借记卡', 1266 | '603602' : u'绍兴银行股份有限公司-兰花卡-借记卡', 1267 | '623026' : u'绍兴银行-兰花IC借记卡-借记卡', 1268 | '623086' : u'绍兴银行-社保IC借记卡-借记卡', 1269 | '628291' : u'绍兴银行-兰花公务卡-贷记卡', 1270 | '621532' : u'成都商业银行-芙蓉锦程福农卡-借记卡', 1271 | '621482' : u'成都商业银行-芙蓉锦程天府通卡-借记卡', 1272 | '622135' : u'成都商业银行-锦程卡(银联卡)-借记卡', 1273 | '622152' : u'成都商业银行-锦程卡金卡-借记卡', 1274 | '622153' : u'成都商业银行-锦程卡定活一卡通金卡-借记卡', 1275 | '622154' : u'成都商业银行-锦程卡定活一卡通-借记卡', 1276 | '622996' : u'成都商业银行-锦程力诚联名卡-借记卡', 1277 | '622997' : u'成都商业银行-锦程力诚联名卡-借记卡', 1278 | '940027' : u'成都商业银行-锦程卡(银联卡)-借记卡', 1279 | '622442' : u'抚顺银行股份有限公司-绿叶卡(银联卡)-借记卡', 1280 | '940053' : u'抚顺银行股份有限公司-绿叶卡(银联卡)-借记卡', 1281 | '623099' : u'抚顺银行-借记IC卡-借记卡', 1282 | '623007' : u'临商银行-借记卡-借记卡', 1283 | '940055' : u'宜昌市商业银行-三峡卡(银联卡)-借记卡', 1284 | '622397' : u'宜昌市商业银行-信用卡(银联卡)-贷记卡', 1285 | '622398' : u'葫芦岛市商业银行-一通卡-借记卡', 1286 | '940054' : u'葫芦岛市商业银行-一卡通(银联卡)-借记卡', 1287 | '622331' : u'天津市商业银行-津卡-借记卡', 1288 | '622426' : u'天津市商业银行-津卡贷记卡(银联卡)-贷记卡', 1289 | '625995' : u'天津市商业银行-贷记IC卡-贷记卡', 1290 | '621452' : u'天津市商业银行----借记卡', 1291 | '628205' : u'天津银行-商务卡-贷记卡', 1292 | '622421' : u'郑州银行股份有限公司-世纪一卡通(银联卡)-借记卡', 1293 | '940056' : u'郑州银行股份有限公司-世纪一卡通-借记卡', 1294 | '96828' : u'郑州银行股份有限公司-世纪一卡通-借记卡', 1295 | '628214' : u'宁夏银行-宁夏银行公务卡-贷记卡', 1296 | '625529' : u'宁夏银行-宁夏银行福农贷记卡-贷记卡', 1297 | '622428' : u'宁夏银行-如意卡(银联卡)-贷记卡', 1298 | '621529' : u'宁夏银行-宁夏银行福农借记卡-借记卡', 1299 | '622429' : u'宁夏银行-如意借记卡-借记卡', 1300 | '621417' : u'宁夏银行-如意IC卡-借记卡', 1301 | '623089' : u'宁夏银行-宁夏银行如意借记卡-借记卡', 1302 | '623200' : u'宁夏银行-中国旅游卡-借记卡', 1303 | '622363' : u'珠海华润银行股份有限公司-万事顺卡-借记卡', 1304 | '940048' : u'珠海华润银行股份有限公司-万事顺卡(银联卡)-借记卡', 1305 | '621455' : u'珠海华润银行股份有限公司-珠海华润银行IC借记卡-借记卡', 1306 | '940057' : u'齐商银行-金达卡(银联卡)-借记卡', 1307 | '622311' : u'齐商银行-金达借记卡(银联卡)-借记卡', 1308 | '623119' : u'齐商银行-金达IC卡-借记卡', 1309 | '622990' : u'锦州银行股份有限公司-7777卡-借记卡', 1310 | '940003' : u'锦州银行股份有限公司-万通卡(银联卡)-借记卡', 1311 | '622877' : u'徽商银行-黄山卡-借记卡', 1312 | '622879' : u'徽商银行-黄山卡-借记卡', 1313 | '621775' : u'徽商银行-借记卡-借记卡', 1314 | '623203' : u'徽商银行-徽商银行中国旅游卡(安徽)-借记卡', 1315 | '603601' : u'徽商银行合肥分行-黄山卡-借记卡', 1316 | '622137' : u'徽商银行芜湖分行-黄山卡(银联卡)-借记卡', 1317 | '622327' : u'徽商银行马鞍山分行-黄山卡(银联卡)-借记卡', 1318 | '622340' : u'徽商银行淮北分行-黄山卡(银联卡)-借记卡', 1319 | '622366' : u'徽商银行安庆分行-黄山卡(银联卡)-借记卡', 1320 | '9896' : u'重庆银行-长江卡-借记卡', 1321 | '622134' : u'重庆银行-长江卡(银联卡)-借记卡', 1322 | '940018' : u'重庆银行-长江卡(银联卡)-借记卡', 1323 | '623016' : u'重庆银行-长江卡-借记卡', 1324 | '623096' : u'重庆银行-借记IC卡-借记卡', 1325 | '940049' : u'哈尔滨银行-丁香一卡通(银联卡)-借记卡', 1326 | '622425' : u'哈尔滨银行-丁香借记卡(银联卡)-借记卡', 1327 | '621577' : u'哈尔滨银行-福农借记卡-借记卡', 1328 | '622133' : u'贵阳银行股份有限公司-甲秀银联借记卡-借记卡', 1329 | '888' : u'贵阳银行股份有限公司-甲秀卡-借记卡', 1330 | '621735' : u'贵阳银行股份有限公司-一卡通-借记卡', 1331 | '622170' : u'贵阳银行股份有限公司--借记卡', 1332 | '622136' : u'西安银行股份有限公司-福瑞卡-借记卡', 1333 | '622981' : u'西安银行股份有限公司-金丝路卡-借记卡', 1334 | '60326500' : u'无锡市商业银行-太湖卡-借记卡', 1335 | '60326513' : u'无锡市商业银行-太湖卡-借记卡', 1336 | '622485' : u'无锡市商业银行-太湖金保卡(银联卡)-借记卡', 1337 | '622415' : u'丹东银行股份有限公司-银杏卡(银联卡)-借记卡', 1338 | '940060' : u'丹东银行股份有限公司-银杏卡(银联卡)-借记卡', 1339 | '623098' : u'丹东银行-借记IC卡-借记卡', 1340 | '628329' : u'丹东银行-丹东银行公务卡-贷记卡', 1341 | '622139' : u'兰州银行股份有限公司-敦煌国际卡(银联卡)-借记卡', 1342 | '940040' : u'兰州银行股份有限公司-敦煌卡-借记卡', 1343 | '621242' : u'兰州银行股份有限公司-敦煌卡-借记卡', 1344 | '621538' : u'兰州银行-敦煌卡-借记卡', 1345 | '621496' : u'兰州银行股份有限公司-敦煌金融IC卡-借记卡', 1346 | '623129' : u'兰州银行股份有限公司-金融社保卡-借记卡', 1347 | '940006' : u'南昌银行-金瑞卡(银联卡)-借记卡', 1348 | '621269' : u'南昌银行-南昌银行借记卡-借记卡', 1349 | '622275' : u'南昌银行-金瑞卡-借记卡', 1350 | '621216' : u'晋商银行-晋龙一卡通-借记卡', 1351 | '622465' : u'晋商银行-晋龙一卡通-借记卡', 1352 | '940031' : u'晋商银行-晋龙卡(银联卡)-借记卡', 1353 | '621252' : u'青岛银行-金桥通卡-借记卡', 1354 | '622146' : u'青岛银行-金桥卡(银联卡)-借记卡', 1355 | '940061' : u'青岛银行-金桥卡(银联卡)-借记卡', 1356 | '621419' : u'青岛银行-金桥卡-借记卡', 1357 | '623170' : u'青岛银行-借记IC卡-借记卡', 1358 | '622440' : u'吉林银行-雾凇卡(银联卡)-借记卡', 1359 | '940047' : u'吉林银行-雾凇卡(银联卡)-借记卡', 1360 | '69580' : u'南通商业银行-金桥卡-借记卡', 1361 | '940017' : u'南通商业银行-金桥卡(银联卡)-借记卡', 1362 | '622418' : u'南通商业银行-金桥卡(银联卡)-借记卡', 1363 | '622162' : u'九江银行股份有限公司-庐山卡-借记卡', 1364 | '623077' : u'日照银行-黄海卡、财富卡借记卡-借记卡', 1365 | '622413' : u'鞍山银行-千山卡(银联卡)-借记卡', 1366 | '940002' : u'鞍山银行-千山卡(银联卡)-借记卡', 1367 | '623188' : u'鞍山银行-千山卡-借记卡', 1368 | '621237' : u'秦皇岛银行股份有限公司-秦卡-借记卡', 1369 | '62249802' : u'秦皇岛银行股份有限公司-秦卡-借记卡', 1370 | '94004602' : u'秦皇岛银行股份有限公司-秦卡-借记卡', 1371 | '623003' : u'秦皇岛银行股份有限公司-秦卡-IC卡-借记卡', 1372 | '622310' : u'青海银行-三江银行卡(银联卡)-借记卡', 1373 | '940068' : u'青海银行-三江卡-借记卡', 1374 | '622321' : u'台州银行-大唐贷记卡-贷记卡', 1375 | '625001' : u'台州银行-大唐准贷记卡-准贷记卡', 1376 | '622427' : u'台州银行-大唐卡(银联卡)-借记卡', 1377 | '940069' : u'台州银行-大唐卡-借记卡', 1378 | '623039' : u'台州银行-借记卡-借记卡', 1379 | '628273' : u'台州银行-公务卡-贷记卡', 1380 | '940070' : u'盐城商行-金鹤卡(银联卡)-借记卡', 1381 | '694301' : u'长沙银行股份有限公司-芙蓉卡-借记卡', 1382 | '940071' : u'长沙银行股份有限公司-芙蓉卡(银联卡)-借记卡', 1383 | '622368' : u'长沙银行股份有限公司-芙蓉卡(银联卡)-借记卡', 1384 | '621446' : u'长沙银行股份有限公司-芙蓉金融IC卡-借记卡', 1385 | '625901' : u'长沙银行股份有限公司-市民卡-贷记卡', 1386 | '622898' : u'长沙银行股份有限公司-芙蓉贷记卡-贷记卡', 1387 | '622900' : u'长沙银行股份有限公司-芙蓉贷记卡-贷记卡', 1388 | '628281' : u'长沙银行股份有限公司-公务卡钻石卡-贷记卡', 1389 | '628282' : u'长沙银行股份有限公司-公务卡金卡-贷记卡', 1390 | '628283' : u'长沙银行股份有限公司-公务卡普卡-贷记卡', 1391 | '620519' : u'长沙银行股份有限公司-市民卡-预付费卡', 1392 | '621739' : u'长沙银行股份有限公司-借记IC卡-借记卡', 1393 | '622967' : u'赣州银行股份有限公司-长征卡-借记卡', 1394 | '940073' : u'赣州银行股份有限公司-长征卡(银联卡)-借记卡', 1395 | '622370' : u'泉州银行-海峡银联卡(银联卡)-借记卡', 1396 | '683970' : u'泉州银行-海峡储蓄卡-借记卡', 1397 | '940074' : u'泉州银行-海峡银联卡(银联卡)-借记卡', 1398 | '621437' : u'泉州银行-海峡卡-借记卡', 1399 | '628319' : u'泉州银行-公务卡-贷记卡', 1400 | '622400' : u'营口银行股份有限公司-辽河一卡通(银联卡)-借记卡', 1401 | '623177' : u'营口银行股份有限公司-营银卡-借记卡', 1402 | '990871' : u'昆明商业银行-春城卡(银联卡)-借记卡', 1403 | '621415' : u'昆明商业银行-富滇IC卡(复合卡)-借记卡', 1404 | '622126' : u'阜新银行股份有限公司-金通卡(银联卡)-借记卡', 1405 | '623166' : u'阜新银行-借记IC卡-借记卡', 1406 | '622132' : u'嘉兴银行-南湖借记卡(银联卡)-借记卡', 1407 | '621340' : u'廊坊银行-白金卡-借记卡', 1408 | '621341' : u'廊坊银行-金卡-借记卡', 1409 | '622140' : u'廊坊银行-银星卡(银联卡)-借记卡', 1410 | '623073' : u'廊坊银行-龙凤呈祥卡-借记卡', 1411 | '622141' : u'泰隆城市信用社-泰隆卡(银联卡)-借记卡', 1412 | '621480' : u'泰隆城市信用社-借记IC卡-借记卡', 1413 | '622147' : u'内蒙古银行-百灵卡(银联卡)-借记卡', 1414 | '621633' : u'内蒙古银行-成吉思汗卡-借记卡', 1415 | '622301' : u'湖州市商业银行-百合卡-借记卡', 1416 | '623171' : u'湖州市商业银行--借记卡', 1417 | '621266' : u'沧州银行股份有限公司-狮城卡-借记卡', 1418 | '62249804' : u'沧州银行股份有限公司-狮城卡-借记卡', 1419 | '94004604' : u'沧州银行股份有限公司-狮城卡-借记卡', 1420 | '621422' : u'沧州银行-狮城卡-借记卡', 1421 | '622335' : u'南宁市商业银行-桂花卡(银联卡)-借记卡', 1422 | '622336' : u'包商银行-雄鹰卡(银联卡)-借记卡', 1423 | '622165' : u'包商银行-包头市商业银行借记卡-借记卡', 1424 | '628295' : u'包商银行-包商银行内蒙古自治区公务卡-贷记卡', 1425 | '625950' : u'包商银行-贷记卡-贷记卡', 1426 | '621760' : u'包商银行-借记卡-借记卡', 1427 | '622337' : u'连云港市商业银行-金猴神通借记卡-借记卡', 1428 | '622411' : u'威海商业银行-通达卡(银联卡)-借记卡', 1429 | '623102' : u'威海市商业银行-通达借记IC卡-借记卡', 1430 | '622342' : u'攀枝花市商业银行-攀枝花卡(银联卡)-借记卡', 1431 | '623048' : u'攀枝花市商业银行-攀枝花卡-借记卡', 1432 | '622367' : u'绵阳市商业银行-科技城卡(银联卡)-借记卡', 1433 | '622392' : u'泸州市商业银行-酒城卡(银联卡)-借记卡', 1434 | '623085' : u'泸州市商业银行-酒城IC卡-借记卡', 1435 | '622395' : u'大同市商业银行-云冈卡(银联卡)-借记卡', 1436 | '622441' : u'三门峡银行-天鹅卡(银联卡)-借记卡', 1437 | '622448' : u'广东南粤银行-南珠卡(银联卡)-借记卡', 1438 | '622982' : u'张家口市商业银行股份有限公司-如意借记卡-借记卡', 1439 | '621413' : u'张家口市商业银行-好运IC借记卡-借记卡', 1440 | '622856' : u'桂林市商业银行-漓江卡(银联卡)-借记卡', 1441 | '621037' : u'龙江银行-福农借记卡-借记卡', 1442 | '621097' : u'龙江银行-联名借记卡-借记卡', 1443 | '621588' : u'龙江银行-福农借记卡-借记卡', 1444 | '62321601' : u'龙江银行-中国旅游卡-借记卡', 1445 | '623032' : u'龙江银行-龙江IC卡-借记卡', 1446 | '622644' : u'龙江银行-社会保障卡-借记卡', 1447 | '623518' : u'龙江银行----借记卡', 1448 | '622860' : u'龙江银行股份有限公司-玉兔卡(银联卡)-借记卡', 1449 | '622870' : u'江苏长江商业银行-长江卡-借记卡', 1450 | '622866' : u'徐州市商业银行-彭城借记卡(银联卡)-借记卡', 1451 | '622292' : u'柳州银行股份有限公司-龙城卡-借记卡', 1452 | '622291' : u'柳州银行股份有限公司-龙城卡-借记卡', 1453 | '621412' : u'柳州银行股份有限公司-龙城IC卡-借记卡', 1454 | '622880' : u'柳州银行股份有限公司-龙城卡VIP卡-借记卡', 1455 | '622881' : u'柳州银行股份有限公司-龙城致富卡-借记卡', 1456 | '620118' : u'柳州银行股份有限公司-东盟商旅卡-预付费卡', 1457 | '623072' : u'南充市商业银行-借记IC卡-借记卡', 1458 | '622897' : u'南充市商业银行-熊猫团团卡-借记卡', 1459 | '628279' : u'莱商银行-银联标准卡-贷记卡', 1460 | '622864' : u'莱芜银行-金凤卡-借记卡', 1461 | '621403' : u'莱商银行-借记IC卡-借记卡', 1462 | '622561' : u'德阳银行-锦程卡定活一卡通-借记卡', 1463 | '622562' : u'德阳银行-锦程卡定活一卡通金卡-借记卡', 1464 | '622563' : u'德阳银行-锦程卡定活一卡通-借记卡', 1465 | '622167' : u'唐山市商业银行-唐山市城通卡-借记卡', 1466 | '622508' : u'六盘水商行-凉都卡-借记卡', 1467 | '622777' : u'曲靖市商业银行-珠江源卡-借记卡', 1468 | '621497' : u'曲靖市商业银行-珠江源IC卡-借记卡', 1469 | '622532' : u'晋城银行股份有限公司-珠联璧合卡-借记卡', 1470 | '622888' : u'东莞商行-恒通贷记卡-贷记卡', 1471 | '628398' : u'东莞商行-公务卡-贷记卡', 1472 | '622868' : u'温州银行-金鹿信用卡-贷记卡', 1473 | '622899' : u'温州银行-金鹿信用卡-贷记卡', 1474 | '628255' : u'温州银行-金鹿公务卡-贷记卡', 1475 | '625988' : u'温州银行-贷记IC卡-贷记卡', 1476 | '622566' : u'汉口银行-汉口银行贷记卡-贷记卡', 1477 | '622567' : u'汉口银行-汉口银行贷记卡-贷记卡', 1478 | '622625' : u'汉口银行-九通香港旅游贷记普卡-贷记卡', 1479 | '622626' : u'汉口银行-九通香港旅游贷记金卡-贷记卡', 1480 | '625946' : u'汉口银行-贷记卡-贷记卡', 1481 | '628200' : u'汉口银行-九通公务卡-贷记卡', 1482 | '621076' : u'江苏银行-聚宝借记卡-借记卡', 1483 | '504923' : u'江苏银行-月季卡-借记卡', 1484 | '622173' : u'江苏银行-紫金卡-借记卡', 1485 | '622422' : u'江苏银行-绿扬卡(银联卡)-借记卡', 1486 | '622447' : u'江苏银行-月季卡(银联卡)-借记卡', 1487 | '622131' : u'江苏银行-九州借记卡(银联卡)-借记卡', 1488 | '940076' : u'江苏银行-月季卡(银联卡)-借记卡', 1489 | '621579' : u'江苏银行-聚宝惠民福农卡-借记卡', 1490 | '622876' : u'江苏银行-江苏银行聚宝IC借记卡-借记卡', 1491 | '622873' : u'江苏银行-聚宝IC借记卡VIP卡-借记卡', 1492 | '531659' : u'平安银行股份有限公司-白金信用卡-贷记卡', 1493 | '622157' : u'平安银行股份有限公司-白金信用卡-贷记卡', 1494 | '435744' : u'平安银行股份有限公司-沃尔玛百分卡-贷记卡', 1495 | '435745' : u'平安银行股份有限公司-沃尔玛百分卡-贷记卡', 1496 | '483536' : u'平安银行股份有限公司-VISA白金卡-贷记卡', 1497 | '622525' : u'平安银行股份有限公司-人民币信用卡金卡-贷记卡', 1498 | '622526' : u'平安银行股份有限公司-人民币信用卡普卡-贷记卡', 1499 | '998801' : u'平安银行股份有限公司-发展信用卡(银联卡)-贷记卡', 1500 | '998802' : u'平安银行股份有限公司-发展信用卡(银联卡)-贷记卡', 1501 | '528020' : u'平安银行股份有限公司-平安银行信用卡-贷记卡', 1502 | '622155' : u'平安银行股份有限公司-平安银行信用卡-贷记卡', 1503 | '622156' : u'平安银行股份有限公司-平安银行信用卡-贷记卡', 1504 | '526855' : u'平安银行股份有限公司-平安银行信用卡-贷记卡', 1505 | '356869' : u'平安银行股份有限公司-信用卡-贷记卡', 1506 | '356868' : u'平安银行股份有限公司-信用卡-贷记卡', 1507 | '625360' : u'平安银行股份有限公司-平安中国旅游信用卡-贷记卡', 1508 | '625361' : u'平安银行股份有限公司-平安中国旅游白金信用卡-贷记卡', 1509 | '628296' : u'平安银行股份有限公司-公务卡-贷记卡', 1510 | '625825' : u'平安银行股份有限公司-白金IC卡-贷记卡', 1511 | '625823' : u'平安银行股份有限公司-贷记IC卡-贷记卡', 1512 | '622962' : u'长治市商业银行-长治商行银联晋龙卡-借记卡', 1513 | '622936' : u'承德市商业银行-热河卡-借记卡', 1514 | '623060' : u'承德银行-借记IC卡-借记卡', 1515 | '622937' : u'德州银行-长河借记卡-借记卡', 1516 | '623101' : u'德州银行----借记卡', 1517 | '621460' : u'遵义市商业银行-社保卡-借记卡', 1518 | '622939' : u'遵义市商业银行-尊卡-借记卡', 1519 | '622960' : u'邯郸市商业银行-邯银卡-借记卡', 1520 | '623523' : u'邯郸市商业银行-邯郸银行贵宾IC借记卡-借记卡', 1521 | '621591' : u'安顺市商业银行-黄果树福农卡-借记卡', 1522 | '622961' : u'安顺市商业银行-黄果树借记卡-借记卡', 1523 | '628210' : u'江苏银行-紫金信用卡(公务卡)-贷记卡', 1524 | '622283' : u'江苏银行-紫金信用卡-贷记卡', 1525 | '625902' : u'江苏银行-天翼联名信用卡-贷记卡', 1526 | '621010' : u'平凉市商业银行-广成卡-借记卡', 1527 | '622980' : u'玉溪市商业银行-红塔卡-借记卡', 1528 | '623135' : u'玉溪市商业银行-红塔卡-借记卡', 1529 | '621726' : u'浙江民泰商业银行-金融IC卡-借记卡', 1530 | '621088' : u'浙江民泰商业银行-民泰借记卡-借记卡', 1531 | '620517' : u'浙江民泰商业银行-金融IC卡C卡-预付费卡', 1532 | '622740' : u'浙江民泰商业银行-银联标准普卡金卡-贷记卡', 1533 | '625036' : u'浙江民泰商业银行-商惠通-准贷记卡', 1534 | '621014' : u'上饶市商业银行-三清山卡-借记卡', 1535 | '621004' : u'东营银行-胜利卡-借记卡', 1536 | '622972' : u'泰安市商业银行-岱宗卡-借记卡', 1537 | '623196' : u'泰安市商业银行-市民一卡通-借记卡', 1538 | '621028' : u'浙江稠州商业银行-义卡-借记卡', 1539 | '623083' : u'浙江稠州商业银行-义卡借记IC卡-借记卡', 1540 | '628250' : u'浙江稠州商业银行-公务卡-贷记卡', 1541 | '622973' : u'乌海银行股份有限公司-狮城借记卡-借记卡', 1542 | '623153' : u'乌海银行股份有限公司----借记卡', 1543 | '623121' : u'自贡市商业银行-借记IC卡-借记卡', 1544 | '621070' : u'自贡市商业银行-锦程卡-借记卡', 1545 | '622977' : u'龙江银行股份有限公司-万通卡-借记卡', 1546 | '622978' : u'鄂尔多斯银行股份有限公司-天骄卡-借记卡', 1547 | '628253' : u'鄂尔多斯银行-天骄公务卡-贷记卡', 1548 | '623093' : u'鄂尔多斯银行股份有限公司-天骄借记复合卡-借记卡', 1549 | '628378' : u'鄂尔多斯银行股份有限公司----贷记卡', 1550 | '622979' : u'鹤壁银行-鹤卡-借记卡', 1551 | '621035' : u'许昌银行-连城卡-借记卡', 1552 | '621200' : u'济宁银行股份有限公司-儒商卡-借记卡', 1553 | '623116' : u'济宁银行股份有限公司----借记卡', 1554 | '621038' : u'铁岭银行-龙凤卡-借记卡', 1555 | '621086' : u'乐山市商业银行-大福卡-借记卡', 1556 | '621498' : u'乐山市商业银行----借记卡', 1557 | '621296' : u'长安银行-长长卡-借记卡', 1558 | '621448' : u'长安银行-借记IC卡-借记卡', 1559 | '621044' : u'宝鸡商行-姜炎卡-借记卡', 1560 | '622945' : u'重庆三峡银行-财富人生卡-借记卡', 1561 | '621755' : u'重庆三峡银行-借记卡-借记卡', 1562 | '622940' : u'石嘴山银行-麒麟借记卡-借记卡', 1563 | '623120' : u'石嘴山银行-麒麟借记卡-借记卡', 1564 | '628355' : u'石嘴山银行-麒麟公务卡-贷记卡', 1565 | '621089' : u'盘锦市商业银行-鹤卡-借记卡', 1566 | '623161' : u'盘锦市商业银行-盘锦市商业银行鹤卡-借记卡', 1567 | '621029' : u'昆仑银行股份有限公司-瑞卡-借记卡', 1568 | '621766' : u'昆仑银行股份有限公司-金融IC卡-借记卡', 1569 | '623139' : u'昆仑银行股份有限公司--借记卡', 1570 | '621071' : u'平顶山银行股份有限公司-佛泉卡-借记卡', 1571 | '623152' : u'平顶山银行股份有限公司----借记卡', 1572 | '628339' : u'平顶山银行-平顶山银行公务卡-贷记卡', 1573 | '621074' : u'朝阳银行-鑫鑫通卡-借记卡', 1574 | '621515' : u'朝阳银行-朝阳银行福农卡-借记卡', 1575 | '623030' : u'朝阳银行-红山卡-借记卡', 1576 | '621345' : u'宁波东海银行-绿叶卡-借记卡', 1577 | '621090' : u'遂宁市商业银行-锦程卡-借记卡', 1578 | '623178' : u'遂宁是商业银行-金荷卡-借记卡', 1579 | '621091' : u'保定银行-直隶卡-借记卡', 1580 | '623168' : u'保定银行-直隶卡-借记卡', 1581 | '621238' : u'邢台银行股份有限公司-金牛卡-借记卡', 1582 | '621057' : u'凉山州商业银行-锦程卡-借记卡', 1583 | '623199' : u'凉山州商业银行-金凉山卡-借记卡', 1584 | '621075' : u'漯河银行-福卡-借记卡', 1585 | '623037' : u'漯河银行-福源卡-借记卡', 1586 | '628303' : u'漯河银行-福源公务卡-贷记卡', 1587 | '621233' : u'达州市商业银行-锦程卡-借记卡', 1588 | '621235' : u'新乡市商业银行-新卡-借记卡', 1589 | '621223' : u'晋中银行-九州方圆借记卡-借记卡', 1590 | '621780' : u'晋中银行-九州方圆卡-借记卡', 1591 | '621221' : u'驻马店银行-驿站卡-借记卡', 1592 | '623138' : u'驻马店银行-驿站卡-借记卡', 1593 | '628389' : u'驻马店银行-公务卡-贷记卡', 1594 | '621239' : u'衡水银行-金鼎卡-借记卡', 1595 | '623068' : u'衡水银行-借记IC卡-借记卡', 1596 | '621271' : u'周口银行-如愿卡-借记卡', 1597 | '628315' : u'周口银行-公务卡-贷记卡', 1598 | '621272' : u'阳泉市商业银行-金鼎卡-借记卡', 1599 | '621738' : u'阳泉市商业银行-金鼎卡-借记卡', 1600 | '621273' : u'宜宾市商业银行-锦程卡-借记卡', 1601 | '623079' : u'宜宾市商业银行-借记IC卡-借记卡', 1602 | '621263' : u'库尔勒市商业银行-孔雀胡杨卡-借记卡', 1603 | '621325' : u'雅安市商业银行-锦城卡-借记卡', 1604 | '623084' : u'雅安市商业银行----借记卡', 1605 | '621337' : u'商丘商行-百汇卡-借记卡', 1606 | '621327' : u'安阳银行-安鼎卡-借记卡', 1607 | '621753' : u'信阳银行-信阳卡-借记卡', 1608 | '628331' : u'信阳银行-公务卡-贷记卡', 1609 | '623160' : u'信阳银行-信阳卡-借记卡', 1610 | '621366' : u'华融湘江银行-华融卡-借记卡', 1611 | '621388' : u'华融湘江银行-华融卡-借记卡', 1612 | '621348' : u'营口沿海银行-祥云借记卡-借记卡', 1613 | '621359' : u'景德镇商业银行-瓷都卡-借记卡', 1614 | '621360' : u'哈密市商业银行-瓜香借记卡-借记卡', 1615 | '621217' : u'湖北银行-金牛卡-借记卡', 1616 | '622959' : u'湖北银行-汉江卡-借记卡', 1617 | '621270' : u'湖北银行-借记卡-借记卡', 1618 | '622396' : u'湖北银行-三峡卡-借记卡', 1619 | '622511' : u'湖北银行-至尊卡-借记卡', 1620 | '623076' : u'湖北银行-金融IC卡-借记卡', 1621 | '621391' : u'西藏银行-借记IC卡-借记卡', 1622 | '621339' : u'新疆汇和银行-汇和卡-借记卡', 1623 | '621469' : u'广东华兴银行-借记卡-借记卡', 1624 | '621625' : u'广东华兴银行-华兴银联公司卡-借记卡', 1625 | '623688' : u'广东华兴银行-华兴联名IC卡-借记卡', 1626 | '623113' : u'广东华兴银行-华兴金融IC借记卡-借记卡', 1627 | '621601' : u'濮阳银行-龙翔卡-借记卡', 1628 | '621655' : u'宁波通商银行-借记卡-借记卡', 1629 | '621636' : u'甘肃银行-神舟兴陇借记卡-借记卡', 1630 | '623182' : u'甘肃银行-甘肃银行神州兴陇IC卡-借记卡', 1631 | '623087' : u'枣庄银行-借记IC卡-借记卡', 1632 | '621696' : u'本溪市商业银行-借记卡-借记卡', 1633 | '627069' : u'平安银行股份有限公司-一账通借贷合一钻石卡-借记卡', 1634 | '627068' : u'平安银行股份有限公司-一账通借贷合一白金卡-借记卡', 1635 | '627066' : u'平安银行股份有限公司-一账通借贷合一卡普卡-借记卡', 1636 | '627067' : u'平安银行股份有限公司-一账通借贷合一卡金卡-借记卡', 1637 | '622955' : u'盛京银行-医保卡-借记卡', 1638 | '622478' : u'上海农商银行-如意卡(银联卡)-借记卡', 1639 | '940013' : u'上海农商银行-如意卡(银联卡)-借记卡', 1640 | '621495' : u'上海农商银行-鑫通卡-借记卡', 1641 | '621688' : u'上海农商银行-国际如意卡-借记卡', 1642 | '623162' : u'上海农商银行-借记IC卡-借记卡', 1643 | '622443' : u'昆山农信社-江通卡(银联卡)-借记卡', 1644 | '940029' : u'昆山农信社-银联汇通卡(银联卡)-借记卡', 1645 | '623132' : u'昆山农信社-琼花卡-借记卡', 1646 | '622462' : u'常熟市农村商业银行-粒金贷记卡(银联卡)-贷记卡', 1647 | '628272' : u'常熟市农村商业银行-公务卡-贷记卡', 1648 | '625101' : u'常熟市农村商业银行-粒金准贷卡-准贷记卡', 1649 | '622323' : u'常熟农村商业银行-粒金借记卡(银联卡)-借记卡', 1650 | '9400301' : u'常熟农村商业银行-粒金卡(银联卡)-借记卡', 1651 | '623071' : u'常熟农村商业银行-粒金IC卡-借记卡', 1652 | '603694' : u'常熟农村商业银行-粒金卡-借记卡', 1653 | '622128' : u'深圳农村商业银行-信通卡(银联卡)-借记卡', 1654 | '622129' : u'深圳农村商业银行-信通商务卡(银联卡)-借记卡', 1655 | '623035' : u'深圳农村商业银行-信通卡-借记卡', 1656 | '623186' : u'深圳农村商业银行-信通商务卡-借记卡', 1657 | '909810' : u'广州农村商业银行股份有限公司-麒麟卡-借记卡', 1658 | '940035' : u'广州农村商业银行股份有限公司-麒麟卡(银联卡)-借记卡', 1659 | '621522' : u'广州农村商业银行-福农太阳卡-借记卡', 1660 | '622439' : u'广州农村商业银行股份有限公司-麒麟储蓄卡-借记卡', 1661 | '622271' : u'广东南海农村商业银行-盛通卡-借记卡', 1662 | '940037' : u'广东南海农村商业银行-盛通卡(银联卡)-借记卡', 1663 | '940038' : u'佛山顺德农村商业银行-恒通卡(银联卡)-借记卡', 1664 | '985262' : u'佛山顺德农村商业银行-恒通卡-借记卡', 1665 | '622322' : u'佛山顺德农村商业银行-恒通卡(银联卡)-借记卡', 1666 | '621017' : u'昆明农联社-金碧白金卡-借记卡', 1667 | '018572' : u'昆明农联社-金碧卡-借记卡', 1668 | '622369' : u'昆明农联社-金碧一卡通(银联卡)-借记卡', 1669 | '940042' : u'昆明农联社-银联卡(银联卡)-借记卡', 1670 | '623190' : u'昆明农联社-金碧卡一卡通-借记卡', 1671 | '622412' : u'湖北农信社-信通卡-借记卡', 1672 | '621523' : u'湖北农信-福农小康卡-借记卡', 1673 | '623055' : u'湖北农信社-福卡IC借记卡-借记卡', 1674 | '621013' : u'湖北农信社-福卡(VIP卡)-借记卡', 1675 | '940044' : u'武汉农信-信通卡(银联卡)-借记卡', 1676 | '622312' : u'徐州市郊农村信用合作联社-信通卡(银联卡)-借记卡', 1677 | '628381' : u'江阴农村商业银行-暨阳公务卡-贷记卡', 1678 | '622481' : u'江阴市农村商业银行-合作贷记卡(银联卡)-贷记卡', 1679 | '622341' : u'江阴农村商业银行-合作借记卡-借记卡', 1680 | '940058' : u'江阴农村商业银行-合作卡(银联卡)-借记卡', 1681 | '623115' : u'江阴农村商业银行-暨阳卡-借记卡', 1682 | '622867' : u'重庆农村商业银行股份有限公司-信合平安卡-借记卡', 1683 | '622885' : u'重庆农村商业银行股份有限公司-信合希望卡-借记卡', 1684 | '940020' : u'重庆农村商业银行股份有限公司-信合一卡通(银联卡)-借记卡', 1685 | '621258' : u'重庆农村商业银行-江渝借记卡VIP卡-借记卡', 1686 | '621465' : u'重庆农村商业银行-江渝IC借记卡-借记卡', 1687 | '621528' : u'重庆农村商业银行-江渝乡情福农卡-借记卡', 1688 | '900105' : u'山东农村信用联合社-信通卡-借记卡', 1689 | '900205' : u'山东农村信用联合社-信通卡-借记卡', 1690 | '622319' : u'山东农村信用联合社-信通卡-借记卡', 1691 | '621521' : u'山东省农村信用社联合社-泰山福农卡-借记卡', 1692 | '621690' : u'山东省农村信用社联合社-VIP卡-借记卡', 1693 | '622320' : u'山东省农村信用社联合社-泰山如意卡-借记卡', 1694 | '62231902' : u'青岛农信-信通卡-借记卡', 1695 | '90010502' : u'青岛农信-信通卡-借记卡', 1696 | '90020502' : u'青岛农信-信通卡-借记卡', 1697 | '622328' : u'东莞农村商业银行-信通卡(银联卡)-借记卡', 1698 | '940062' : u'东莞农村商业银行-信通卡(银联卡)-借记卡', 1699 | '625288' : u'东莞农村商业银行-信通信用卡-贷记卡', 1700 | '623038' : u'东莞农村商业银行-信通借记卡-借记卡', 1701 | '625888' : u'东莞农村商业银行-贷记IC卡-贷记卡', 1702 | '622332' : u'张家港农村商业银行-一卡通(银联卡)-借记卡', 1703 | '940063' : u'张家港农村商业银行-一卡通(银联卡)-借记卡', 1704 | '623123' : u'张家港农村商业银行--借记卡', 1705 | '622127' : u'福建省农村信用社联合社-万通(借记)卡-借记卡', 1706 | '622184' : u'福建省农村信用社联合社-万通(借记)卡-借记卡', 1707 | '621251' : u'福建省农村信用社联合社-福建海峡旅游卡-借记卡', 1708 | '621589' : u'福建省农村信用社联合社-福万通福农卡-借记卡', 1709 | '623036' : u'福建省农村信用社联合社-借记卡-借记卡', 1710 | '621701' : u'福建省农村信用社联合社-社保卡-借记卡', 1711 | '622138' : u'北京农村商业银行-信通卡-借记卡', 1712 | '621066' : u'北京农村商业银行-惠通卡-借记卡', 1713 | '621560' : u'北京农村商业银行-凤凰福农卡-借记卡', 1714 | '621068' : u'北京农村商业银行-惠通卡-借记卡', 1715 | '620088' : u'北京农村商业银行-中国旅行卡-借记卡', 1716 | '621067' : u'北京农村商业银行-凤凰卡-借记卡', 1717 | '625186' : u'北京农商行-凤凰标准卡-贷记卡', 1718 | '628336' : u'北京农商行-凤凰公务卡-贷记卡', 1719 | '625526' : u'北京农商行-凤凰福农卡-贷记卡', 1720 | '622531' : u'天津农村商业银行-吉祥商联IC卡-借记卡', 1721 | '622329' : u'天津农村商业银行-信通借记卡(银联卡)-借记卡', 1722 | '623103' : u'天津农村商业银行-借记IC卡-借记卡', 1723 | '622339' : u'鄞州农村合作银行-蜜蜂借记卡(银联卡)-借记卡', 1724 | '620500' : u'宁波鄞州农村合作银行-蜜蜂电子钱包(IC)-借记卡', 1725 | '621024' : u'宁波鄞州农村合作银行-蜜蜂IC借记卡-借记卡', 1726 | '622289' : u'宁波鄞州农村合作银行-蜜蜂贷记IC卡-贷记卡', 1727 | '622389' : u'宁波鄞州农村合作银行-蜜蜂贷记卡-贷记卡', 1728 | '628300' : u'宁波鄞州农村合作银行-公务卡-贷记卡', 1729 | '622343' : u'佛山市三水区农村信用合作社-信通卡(银联卡)-借记卡', 1730 | '625516' : u'成都农村商业银行-福农卡-准贷记卡', 1731 | '621516' : u'成都农村商业银行-福农卡-借记卡', 1732 | '622345' : u'成都农村商业银行股份有限公司-天府借记卡(银联卡)-借记卡', 1733 | '622452' : u'江苏农信社-圆鼎卡(银联卡)-借记卡', 1734 | '621578' : u'江苏省农村信用社联合社-福农卡-借记卡', 1735 | '622324' : u'江苏农信社-圆鼎卡(银联卡)-借记卡', 1736 | '623066' : u'江苏省农村信用社联合社-圆鼎借记IC卡-借记卡', 1737 | '622648' : u'吴江农商行-垂虹贷记卡-贷记卡', 1738 | '628248' : u'吴江农商行-银联标准公务卡-贷记卡', 1739 | '622488' : u'吴江农商行-垂虹卡(银联卡)-借记卡', 1740 | '623110' : u'吴江农商行----借记卡', 1741 | '622858' : u'浙江省农村信用社联合社-丰收卡(银联卡)-借记卡', 1742 | '621058' : u'浙江省农村信用社联合社-丰收小额贷款卡-借记卡', 1743 | '621527' : u'浙江省农村信用社联合社-丰收福农卡-借记卡', 1744 | '623091' : u'浙江省农村信用社联合社-借记IC卡-借记卡', 1745 | '622288' : u'浙江省农村信用社联合社-丰收贷记卡-贷记卡', 1746 | '628280' : u'浙江省农村信用社联合社-银联标准公务卡-贷记卡', 1747 | '622686' : u'浙江省农村信用社联合社----贷记卡', 1748 | '622855' : u'苏州银行股份有限公司-新苏卡(银联卡)-借记卡', 1749 | '621461' : u'苏州银行股份有限公司-新苏卡-借记卡', 1750 | '623521' : u'苏州银行股份有限公司-金桂卡-借记卡', 1751 | '622859' : u'珠海农村商业银行-信通卡(银联卡)-借记卡', 1752 | '622869' : u'太仓农村商业银行-郑和卡(银联卡)-借记卡', 1753 | '623075' : u'太仓农村商业银行-郑和IC借记卡-借记卡', 1754 | '622882' : u'尧都区农村信用合作社联社-天河卡-借记卡', 1755 | '622893' : u'贵州省农村信用社联合社-信合卡-借记卡', 1756 | '621590' : u'贵州省农村信用社联合社-信合福农卡-借记卡', 1757 | '622895' : u'无锡农村商业银行-金阿福-借记卡', 1758 | '623125' : u'无锡农村商业银行-借记IC卡-借记卡', 1759 | '622169' : u'湖南省农村信用社联合社-福祥借记卡-借记卡', 1760 | '621519' : u'湖南省农村信用社联合社-福祥卡-借记卡', 1761 | '621539' : u'湖南省农村信用社联合社-福祥卡-借记卡', 1762 | '623090' : u'湖南省农村信用社联合社-福祥借记IC卡-借记卡', 1763 | '622681' : u'江西农信联合社-百福卡-借记卡', 1764 | '622682' : u'江西农信联合社-百福卡-借记卡', 1765 | '622683' : u'江西农信联合社-百福卡-借记卡', 1766 | '621592' : u'江西农信联合社-百福福农卡-借记卡', 1767 | '622991' : u'河南省农村信用社联合社-金燕卡-借记卡', 1768 | '621585' : u'河南省农村信用社联合社-金燕快货通福农卡-借记卡', 1769 | '623013' : u'河南省农村信用社联合社-借记卡-借记卡', 1770 | '623059' : u'河南省农村信用社联合社--借记卡', 1771 | '621021' : u'河北省农村信用社联合社-信通卡-借记卡', 1772 | '622358' : u'河北省农村信用社联合社-信通卡(银联卡)-借记卡', 1773 | '623025' : u'河北省农村信用社联合社-借记卡-借记卡', 1774 | '622506' : u'陕西省农村信用社联合社-陕西信合富秦卡-借记卡', 1775 | '621566' : u'陕西省农村信用社联合社-富秦家乐福农卡-借记卡', 1776 | '623027' : u'陕西省农村信用社联合社-富秦卡-借记卡', 1777 | '623028' : u'陕西省农村信用社联合社-社会保障卡(陕西信合)-借记卡', 1778 | '628323' : u'陕西省农村信用社联合社-富秦公务卡-贷记卡', 1779 | '622992' : u'广西农村信用社联合社-桂盛卡-借记卡', 1780 | '623133' : u'广西农村信用社联合社-桂盛IC借记卡-借记卡', 1781 | '628330' : u'广西壮族自治区农村信用社联合社--贷记卡', 1782 | '621008' : u'新疆维吾尔自治区农村信用社联合-玉卡-借记卡', 1783 | '621525' : u'新疆农村信用社联合社-福农卡-借记卡', 1784 | '621287' : u'新疆维吾尔自治区农村信用社联合-玉卡金融IC借记卡-借记卡', 1785 | '622935' : u'吉林农信联合社-吉卡-借记卡', 1786 | '621531' : u'吉林农信联合社-吉林农信银联标准吉卡福农借记卡-借记卡', 1787 | '623181' : u'吉林省农村信用社联合社-借记IC卡-借记卡', 1788 | '622947' : u'黄河农村商业银行-黄河卡-借记卡', 1789 | '621561' : u'黄河农村商业银行-黄河富农卡福农卡-借记卡', 1790 | '623095' : u'黄河农村商业银行-借记IC卡-借记卡', 1791 | '621526' : u'安徽省农村信用社联合社-金农易贷福农卡-借记卡', 1792 | '622953' : u'安徽省农村信用社联合社-金农卡-借记卡', 1793 | '621536' : u'海南省农村信用社联合社-大海福农卡-借记卡', 1794 | '621036' : u'海南省农村信用社联合社-大海卡-借记卡', 1795 | '621458' : u'海南省农村信用社联合社-金融IC借记卡-借记卡', 1796 | '621517' : u'青海省农村信用社联合社-紫丁香福农卡-借记卡', 1797 | '621065' : u'青海省农村信用社联合社-紫丁香借记卡-借记卡', 1798 | '623017' : u'青海省农村信用社联合社-紫丁香-借记卡', 1799 | '628289' : u'青海省农村信用社联合社-青海省公务卡-贷记卡', 1800 | '622477' : u'广东省农村信用社联合社-信通卡(银联卡)-借记卡', 1801 | '622362' : u'广东省农村信用社联合社-信通卡(银联卡)-借记卡', 1802 | '621018' : u'广东省农村信用社联合社-珠江平安卡-借记卡', 1803 | '621518' : u'广东省农村信用社联合社-珠江平安福农卡-借记卡', 1804 | '621728' : u'广东省农村信用社联合社-珠江平安卡-借记卡', 1805 | '622470' : u'广东省农村信用社联合社-信通卡(银联卡)-借记卡', 1806 | '622976' : u'内蒙古自治区农村信用社联合式-信合金牛卡-借记卡', 1807 | '621533' : u'内蒙古自治区农村信用社联合式-金牛福农卡-借记卡', 1808 | '621362' : u'内蒙古自治区农村信用社联合式-白金卡-借记卡', 1809 | '621033' : u'四川省农村信用社联合社-蜀信卡-借记卡', 1810 | '621099' : u'四川省农村信用社联合社-蜀信贵宾卡-借记卡', 1811 | '621457' : u'四川省农村信用社联合社-蜀信卡-借记卡', 1812 | '621459' : u'四川省农村信用社联合社-蜀信社保卡-借记卡', 1813 | '621530' : u'四川省农村信用社联合社-蜀信福农卡-借记卡', 1814 | '623201' : u'四川省农村信用社联合社-蜀信旅游卡-借记卡', 1815 | '628297' : u'四川省农村信用社联合社-兴川公务卡-贷记卡', 1816 | '621061' : u'甘肃省农村信用社联合社-飞天卡-借记卡', 1817 | '621520' : u'甘肃省农村信用社联合社-福农卡-借记卡', 1818 | '623065' : u'甘肃省农村信用社联合社-飞天金融IC借记卡-借记卡', 1819 | '628332' : u'甘肃省农村信用社联合社-公务卡-贷记卡', 1820 | '621449' : u'辽宁省农村信用社联合社-金信卡-借记卡', 1821 | '621026' : u'辽宁省农村信用社联合社-金信卡-借记卡', 1822 | '622968' : u'山西省农村信用社联合社-关帝银行卡-借记卡', 1823 | '621280' : u'山西省农村信用社-信合通-借记卡', 1824 | '621580' : u'山西省农村信用社联合社-信合通-借记卡', 1825 | '623051' : u'山西省农村信用社联合社-信合通金融IC卡-借记卡', 1826 | '621073' : u'天津滨海农村商业银行-四海通卡-借记卡', 1827 | '623109' : u'天津滨海农村商业银行-四海通e芯卡-借记卡', 1828 | '621228' : u'黑龙江省农村信用社联合社-鹤卡-借记卡', 1829 | '621557' : u'黑龙江省农村信用社联合社-丰收时贷福农卡-借记卡', 1830 | '623516' : u'黑龙江省农村信用社联合社--借记卡', 1831 | '621361' : u'武汉农村商业银行-汉卡-借记卡', 1832 | '623033' : u'武汉农村商业银行-汉卡-借记卡', 1833 | '623207' : u'武汉农村商业银行-中国旅游卡-借记卡', 1834 | '622891' : u'江南农村商业银行-阳湖卡(银联卡)-借记卡', 1835 | '621363' : u'江南农村商业银行-天天红火卡-借记卡', 1836 | '623189' : u'江南农村商业银行-借记IC卡-借记卡', 1837 | '623510' : u'海口联合农村商业银行-海口联合农村商业银行合卡-借记卡', 1838 | '621056802' : u'安吉交银村镇银行-吉祥借记卡-借记卡', 1839 | '621056801' : u'大邑交银兴民村镇银行-借记卡-借记卡', 1840 | '621056803' : u'石河子交银村镇银行-戈壁明珠卡-借记卡', 1841 | '622995' : u'湖北嘉鱼吴江村镇银行-垂虹卡-借记卡', 1842 | '6229756114' : u'青岛即墨京都村镇银行-凤凰卡-借记卡', 1843 | '6229756115' : u'湖北仙桃京都村镇银行-凤凰卡-借记卡', 1844 | '62105913' : u'句容茅山村镇银行-暨阳卡-借记卡', 1845 | '62105916' : u'兴化苏南村镇银行-暨阳卡-借记卡', 1846 | '62105915' : u'海口苏南村镇银行-暨阳卡-借记卡', 1847 | '62105905' : u'海口苏南村镇银行-暨阳卡-借记卡', 1848 | '62105901' : u'双流诚民村镇银行-暨阳卡-借记卡', 1849 | '62105900' : u'宣汉诚民村镇银行-暨阳卡-借记卡', 1850 | '621053' : u'福建建瓯石狮村镇银行-玉竹卡-借记卡', 1851 | '621260002' : u'恩施常农商村镇银行-恩施村镇银行借记卡-借记卡', 1852 | '621260001' : u'咸丰常农商村镇银行-借记卡-借记卡', 1853 | '621092003' : u'浙江乐清联合村镇银行-联合卡-借记卡', 1854 | '621092002' : u'浙江嘉善联合村镇银行-联合卡-借记卡', 1855 | '621092001' : u'浙江长兴联合村镇银行-联合卡-借记卡', 1856 | '621092006' : u'浙江义乌联合村镇银行-联合卡-借记卡', 1857 | '621092004' : u'浙江常山联合村镇银行-联合卡-借记卡', 1858 | '621092005' : u'浙江温岭联合村镇银行-联合卡-借记卡', 1859 | '621230' : u'浙江平湖工银村镇银行-金平卡-借记卡', 1860 | '621229' : u'重庆璧山工银村镇银行-翡翠卡-借记卡', 1861 | '621250004' : u'北京密云汇丰村镇银行-借记卡-借记卡', 1862 | '621250003' : u'福建永安汇丰村镇银行-借记卡-借记卡', 1863 | '621250001' : u'湖北随州曾都汇丰村镇银行-借记卡-借记卡', 1864 | '621250005' : u'广东恩平汇丰村镇银行-借记卡-借记卡', 1865 | '621250002' : u'重庆大足汇丰村镇银行有限责任公司-借记卡-借记卡', 1866 | '621241001' : u'江苏沭阳东吴村镇银行-新苏借记卡-借记卡', 1867 | '622218' : u'重庆农村商业银行-银联标准贷记卡-贷记卡', 1868 | '628267' : u'重庆农村商业银行-公务卡-贷记卡', 1869 | '621346003' : u'鄂尔多斯市东胜蒙银村镇银行-龙源腾借记卡-借记卡', 1870 | '621346002' : u'方大村镇银行-胡杨卡神州卡-借记卡', 1871 | '621346001' : u'深圳龙岗鼎业村镇银行-鼎业卡-借记卡', 1872 | '621326919' : u'北京大兴九银村镇银行-北京大兴九银村镇银行卡-借记卡', 1873 | '621326763' : u'中山小榄村镇银行-菊卡-借记卡', 1874 | '621338001' : u'江苏邗江民泰村镇银行-金荷花借记卡-借记卡', 1875 | '621353008' : u'天津静海新华村镇银行-新华卡-借记卡', 1876 | '621353108' : u'天津静海新华村镇银行-新华卡-借记卡', 1877 | '621353002' : u'安徽当涂新华村镇银行-新华卡-借记卡', 1878 | '621353102' : u'安徽当涂新华村镇银行-新华卡-借记卡', 1879 | '621353005' : u'安徽和县新华村镇银行-新华卡-借记卡', 1880 | '621353105' : u'安徽和县新华村镇银行-新华卡-借记卡', 1881 | '621353007' : u'望江新华村镇银行-新华卡-借记卡', 1882 | '621353107' : u'望江新华村镇银行-新华卡-借记卡', 1883 | '621353003' : u'郎溪新华村镇银行-新华卡-借记卡', 1884 | '621353103' : u'郎溪新华村镇银行-新华卡-借记卡', 1885 | '621353001' : u'广州番禹新华村镇银行-新华卡-借记卡', 1886 | '621353101' : u'广州番禹新华村镇银行-新华卡-借记卡', 1887 | '621356014' : u'宁波镇海中银富登村镇银行-借记卡-借记卡', 1888 | '621356013' : u'宁海中银富登村镇银行-借记卡-借记卡', 1889 | '621356016' : u'来安中银富登村镇银行-借记卡-借记卡', 1890 | '621356015' : u'全椒中银富登村镇银行-借记卡-借记卡', 1891 | '621356005' : u'青州中银富登村镇银行-借记卡-借记卡', 1892 | '621356018' : u'嘉祥中银富登村镇银行-借记卡-借记卡', 1893 | '621356006' : u'临邑中银富登村镇银行-借记卡-借记卡', 1894 | '621356004' : u'沂水中银富登村镇银行-借记卡-借记卡', 1895 | '621356003' : u'曹县中银富登村镇银行-借记卡-借记卡', 1896 | '621356017' : u'单县中银富登村镇银行-借记卡-借记卡', 1897 | '621356007' : u'谷城中银富登村镇银行-借记卡-借记卡', 1898 | '621356009' : u'老河口中银富登村镇银行-中银富登村镇银行借记卡-借记卡', 1899 | '621356008' : u'枣阳中银富登村镇银行-借记卡-借记卡', 1900 | '621356002' : u'京山中银富登村镇银行-京山富登借记卡-借记卡', 1901 | '621356001' : u'蕲春中银富登村镇银行-中银富登借记卡-借记卡', 1902 | '621356010' : u'潜江中银富登村镇银行-中银富登村镇银行借记卡-借记卡', 1903 | '621356012' : u'松滋中银富登村镇银行-借记卡-借记卡', 1904 | '621356011' : u'监利中银富登村镇银行-借记卡-借记卡', 1905 | '621347002' : u'北京顺义银座村镇银行-大唐卡-借记卡', 1906 | '621347008' : u'浙江景宁银座村镇银行-大唐卡-借记卡', 1907 | '621347005' : u'浙江三门银座村镇银行-大唐卡-借记卡', 1908 | '621347003' : u'江西赣州银座村镇银行-大唐卡-借记卡', 1909 | '621347001' : u'深圳福田银座村镇银行-大唐卡-借记卡', 1910 | '621347006' : u'重庆渝北银座村镇银行-大唐卡-借记卡', 1911 | '621347007' : u'重庆黔江银座村镇银行-大唐卡-借记卡', 1912 | '621350010' : u'北京怀柔融兴村镇银行-融兴普惠卡-借记卡', 1913 | '621350020' : u'河间融惠村镇银行-融兴普惠卡-借记卡', 1914 | '621350431' : u'榆树融兴村镇银行-融兴普惠卡-借记卡', 1915 | '621350451' : u'巴彦融兴村镇银行-融兴普惠卡-借记卡', 1916 | '621350001' : u'延寿融兴村镇银行-融兴普惠卡-借记卡', 1917 | '621350013' : u'拜泉融兴村镇银行-融兴普惠卡-借记卡', 1918 | '621350005' : u'桦川融兴村镇银行-融兴普惠卡-借记卡', 1919 | '621350009' : u'江苏如东融兴村镇银行-融兴普惠卡-借记卡', 1920 | '621350003' : u'安义融兴村镇银行-融兴普惠卡-借记卡', 1921 | '621350002' : u'乐平融兴村镇银行--借记卡', 1922 | '621350015' : u'偃师融兴村镇银行-融兴普惠卡-借记卡', 1923 | '621350004' : u'新安融兴村镇银行-融兴普惠卡-借记卡', 1924 | '621350006' : u'应城融兴村镇银行-融兴普惠卡-借记卡', 1925 | '621350011' : u'洪湖融兴村镇银行-融兴普惠卡-借记卡', 1926 | '621350016' : u'株洲县融兴村镇银行-融兴普惠卡-借记卡', 1927 | '621350007' : u'耒阳融兴村镇银行-融兴普惠卡-借记卡', 1928 | '621350755' : u'深圳宝安融兴村镇银行-融兴普惠卡-借记卡', 1929 | '621350017' : u'海南保亭融兴村镇银行-融兴普惠卡-借记卡', 1930 | '621350014' : u'遂宁安居融兴村镇银行-融兴普惠卡-借记卡', 1931 | '621350019' : u'重庆沙坪坝融兴村镇银行-融兴普惠卡-借记卡', 1932 | '621350012' : u'重庆大渡口融兴村镇银行-融兴普惠卡-借记卡', 1933 | '621350008' : u'重庆市武隆融兴村镇银行-融兴普惠卡-借记卡', 1934 | '621350018' : u'重庆市酋阳融兴村镇银行-融兴普惠卡-借记卡', 1935 | '621350943' : u'会宁会师村镇银行-会师普惠卡-借记卡', 1936 | '621392' : u'南阳村镇银行-玉都卡-借记卡', 1937 | '621399017' : u'宁晋民生村镇银行-宁晋民生村镇银行借记卡-借记卡', 1938 | '621399008' : u'梅河口民生村镇银行-梅河口民生村镇银行借记卡-借记卡', 1939 | '621399001' : u'上海松江民生村镇银行-借记卡-借记卡', 1940 | '621399012' : u'嘉定民生村镇银行-借记卡-借记卡', 1941 | '621399025' : u'天台民生村镇银行-天台民生村镇银行借记卡-借记卡', 1942 | '621399026' : u'天长民生村镇银行-天长民生村镇银行借记卡-借记卡', 1943 | '621399023' : u'宁国民生村镇银行-宁国民生村镇银行借记卡-借记卡', 1944 | '621399024' : u'池州贵池民生村镇银行----借记卡', 1945 | '621399002' : u'安溪民生村镇银行-借记卡-借记卡', 1946 | '621399018' : u'漳浦民生村镇银行-漳浦民生村镇银行借记卡-借记卡', 1947 | '621399010' : u'长垣民生村镇银行-长垣民生村镇银行借记卡-借记卡', 1948 | '621399009' : u'江夏民生村镇银行-借记卡-借记卡', 1949 | '621399011' : u'宜都民生村镇银行-宜都民生村镇银行借记卡-借记卡', 1950 | '621399013' : u'钟祥民生村镇银行-借记卡-借记卡', 1951 | '621399005' : u'綦江民生村镇银行-綦江民生村镇银行借记卡-借记卡', 1952 | '621399006' : u'潼南民生村镇银行-潼南民生村镇银行借记卡-借记卡', 1953 | '621399021' : u'普洱民生村镇银行----借记卡', 1954 | '621399019' : u'景洪民生村镇银行----借记卡', 1955 | '621399027' : u'腾冲民生村镇银行-腾冲民生村镇银行-借记卡', 1956 | '621399020' : u'志丹民生村镇银行--借记卡', 1957 | '621399022' : u'榆林榆阳民生村镇银行----借记卡', 1958 | '621365006' : u'浙江萧山湖商村镇银行-湖商卡-借记卡', 1959 | '621365001' : u'浙江建德湖商村镇银行-湖商卡-借记卡', 1960 | '621365005' : u'浙江德清湖商村镇银行-湖商卡-借记卡', 1961 | '621365004' : u'安徽粤西湖商村镇银行-湖商卡-借记卡', 1962 | '621365003' : u'安徽蒙城湖商村镇银行-湖商卡-借记卡', 1963 | '621365002' : u'安徽利辛湖商村镇银行-湖商卡-借记卡', 1964 | '621481' : u'晋中市榆次融信村镇银行-魏榆卡-借记卡', 1965 | '621393001' : u'梅县客家村镇银行-围龙借记卡-借记卡', 1966 | '621623001' : u'宝生村镇银行-宝生村镇银行一卡通-借记卡', 1967 | '621397001' : u'江苏大丰江南村镇银行-江南卡-借记卡', 1968 | '621627001' : u'吉安稠州村镇银行--借记卡', 1969 | '621627007' : u'广州花都稠州村镇银行-义卡借记卡-借记卡', 1970 | '621627003' : u'重庆北碚稠州村镇银行-义卡-借记卡', 1971 | '621627006' : u'忠县稠州村镇银行-义卡-借记卡', 1972 | '621627010' : u'云南安宁稠州村镇银行-义卡-借记卡', 1973 | '621635101' : u'象山国民村镇银行--借记卡', 1974 | '621635114' : u'宁波市鄞州国民村镇银行-鄞州国民村镇银行借记IC卡-借记卡', 1975 | '621635003' : u'南宁江南国民村镇银行-借记卡-借记卡', 1976 | '621635103' : u'南宁江南国民村镇银行-蜜蜂借记IC卡-借记卡', 1977 | '621635004' : u'桂林国民村镇银行-蜜蜂卡-借记卡', 1978 | '621635104' : u'桂林国民村镇银行-桂林国民村镇银行蜜蜂IC借记卡-借记卡', 1979 | '621635112' : u'银海国民村镇银行--借记卡', 1980 | '621635111' : u'平果国民村镇银行-平果国民村镇银行蜜蜂借记卡-借记卡', 1981 | '621635013' : u'钦州市钦南国民村镇银行-钦南国民村镇银行蜜蜂借记卡-借记卡', 1982 | '621635113' : u'钦州市钦南国民村镇银行-钦南国民村镇银行蜜蜂IC借记卡-借记卡', 1983 | '621635010' : u'防城港防城国民村镇银行-蜜蜂借记卡-借记卡', 1984 | '621635005' : u'东兴国民村镇银行-——-借记卡', 1985 | '621635105' : u'东兴国民村镇银行--借记卡', 1986 | '621635106' : u'石河子国民村镇银行----借记卡', 1987 | '621650002' : u'文昌国民村镇银行-赀业卡-借记卡', 1988 | '621650001' : u'琼海国民村镇银行-椰卡-借记卡', 1989 | '62163113' : u'北京门头沟珠江村镇银行-珠江太阳卡-借记卡', 1990 | '62163103' : u'大连保税区珠江村镇银行-珠江太阳卡-借记卡', 1991 | '62163119' : u'启东珠江村镇银行-启东珠江卡-借记卡', 1992 | '62163120' : u'盱眙珠江村镇银行-盱眙珠江卡-借记卡', 1993 | '62163117' : u'青岛城阳珠江村镇银行-珠江太阳卡-借记卡', 1994 | '62163115' : u'莱州珠江村镇银行-珠江太阳卡-借记卡', 1995 | '62163104' : u'莱芜珠江村镇银行-珠江太阳卡-借记卡', 1996 | '62163118' : u'安阳珠江村镇银行-珠江太阳卡-借记卡', 1997 | '62163108' : u'辉县珠江村镇银行-珠江太阳卡-借记卡', 1998 | '62163107' : u'信阳珠江村镇银行-珠江太阳卡-借记卡', 1999 | '621310' : u'三水珠江村镇银行-珠江太阳卡-借记卡', 2000 | '62163101' : u'鹤山珠江村镇银行-珠江太阳卡-借记卡', 2001 | '62163102' : u'中山东凤珠江村镇银行-珠江太阳卡-借记卡', 2002 | '62163109' : u'新津珠江村镇银行-珠江太阳卡-借记卡', 2003 | '62163110' : u'广汉珠江村镇银行--借记卡', 2004 | '62163111' : u'彭山珠江村镇银行-珠江太阳卡-借记卡', 2005 | '621653002' : u'安徽肥西石银村镇银行-借记卡-借记卡', 2006 | '621653004' : u'重庆南川石银村镇银行-麒麟借记卡-借记卡', 2007 | '621653005' : u'重庆江津石银村镇银行-麒麟借记卡-借记卡', 2008 | '621653007' : u'银川掌政石银村镇银行-麒麟借记卡-借记卡', 2009 | '621653006' : u'大武口石银村镇银行-麒麟借记卡-借记卡', 2010 | '621653001' : u'吴忠市滨河村镇银行-麒麟借记卡-借记卡', 2011 | '62308299' : u'广元贵商村镇银行-利卡-借记卡', 2012 | '621628660' : u'佛山高明顺银村镇银行-恒通卡-借记卡', 2013 | '621316001' : u'青岛胶南海汇村镇银行-海汇卡-借记卡', 2014 | '62319801' : u'惠州仲恺东盈村镇银行----借记卡', 2015 | '62319806' : u'东莞大朗东盈村镇银行-东盈卡-借记卡', 2016 | '62319802' : u'云浮新兴东盈民生村镇银行-东盈卡-借记卡', 2017 | '62319803' : u'贺州八步东盈村镇银行-东盈卡-借记卡', 2018 | '621355002' : u'宜兴阳羡村镇银行-阳羡卡-借记卡', 2019 | '621355001' : u'昆山鹿城村镇银行-鹿城卡-借记卡', 2020 | '621396' : u'东营莱商村镇银行-绿洲卡-借记卡', 2021 | '621656001' : u'河南方城凤裕村镇银行-金裕卡-借记卡', 2022 | '621659001' : u'永清吉银村镇银行-长白山卡-借记卡', 2023 | '621659006' : u'长春双阳吉银村镇银行--借记卡', 2024 | '621398001' : u'江都吉银村镇银行-长白山卡-借记卡', 2025 | '621676001' : u'湖北咸安武农商村镇银行-汉卡-借记卡', 2026 | '621676002' : u'湖北赤壁武弄商村镇银行-汉卡-借记卡', 2027 | '621676003' : u'广州增城长江村镇银行-汉卡-借记卡', 2028 | '621680002' : u'张家港渝农商村镇银行-江渝卡-借记卡', 2029 | '621680009' : u'福建沙县渝农商村镇银行-江渝卡-借记卡', 2030 | '621680005' : u'广西鹿寨渝农商村镇银行-江渝卡-借记卡', 2031 | '621680004' : u'云南大理渝农商村镇银行-江渝卡-借记卡', 2032 | '621680006' : u'云南祥云渝农商村镇银行-江渝卡-借记卡', 2033 | '621680008' : u'云南鹤庆渝农商村镇银行-江渝卡-借记卡', 2034 | '621680011' : u'云南香格里拉渝农商村镇银行-江渝卡-借记卡', 2035 | '621681001' : u'沈阳于洪永安村镇银行-永安卡-借记卡', 2036 | '621682002' : u'北京房山沪农商村镇银行-借记卡-借记卡', 2037 | '621682101' : u'济南长清沪农商村镇银行-借记卡-借记卡', 2038 | '621682102' : u'济南槐荫沪农商村镇银行-借记卡-借记卡', 2039 | '621682106' : u'泰安沪农商村镇银行-借记卡-借记卡', 2040 | '621682103' : u'宁阳沪农商村镇银行-借记卡-借记卡', 2041 | '621682105' : u'东平沪农商村镇银行-借记卡-借记卡', 2042 | '621682110' : u'聊城沪农商村镇银行-借记卡-借记卡', 2043 | '621682111' : u'临清沪农商村镇银行-借记卡-借记卡', 2044 | '621682109' : u'阳谷沪农商村镇银行-借记卡-借记卡', 2045 | '621682108' : u'茌平沪农商村镇银行-借记卡-借记卡', 2046 | '621682107' : u'日照沪农商村镇银行-借记卡-借记卡', 2047 | '621682202' : u'长沙星沙沪农商村镇银行-借记卡-借记卡', 2048 | '621682201' : u'宁乡沪农商行村镇银行-借记卡-借记卡', 2049 | '621682203' : u'醴陵沪农商村镇银行-借记卡-借记卡', 2050 | '621682205' : u'衡阳沪农商村镇银行-借记卡-借记卡', 2051 | '621682209' : u'澧县沪农商村镇银行-借记卡-借记卡', 2052 | '621682208' : u'临澧沪农商村镇银行-借记卡-借记卡', 2053 | '621682210' : u'石门沪农商村镇银行-借记卡-借记卡', 2054 | '621682213' : u'慈利沪农商村镇银行-借记卡-借记卡', 2055 | '621682211' : u'涟源沪农商村镇银行-借记卡-借记卡', 2056 | '621682212' : u'双峰沪农商村镇银行-借记卡-借记卡', 2057 | '621682207' : u'桂阳沪农商村镇银行-借记卡-借记卡', 2058 | '621682206' : u'永兴沪农商村镇银行-借记卡-借记卡', 2059 | '621682003' : u'深圳光明沪农商村镇银行-借记卡-借记卡', 2060 | '621682301' : u'阿拉沪农商村镇银行-借记卡-借记卡', 2061 | '621682302' : u'嵩明沪农商村镇银行-借记卡-借记卡', 2062 | '621682305' : u'个旧沪农商村镇银行-借记卡-借记卡', 2063 | '621682307' : u'开远沪农商村镇银行-借记卡-借记卡', 2064 | '621682306' : u'蒙自沪农商村镇银行-借记卡-借记卡', 2065 | '621682309' : u'建水沪农商村镇银行-借记卡-借记卡', 2066 | '621682308' : u'弥勒沪农商村镇银行-借记卡-借记卡', 2067 | '621682310' : u'保山隆阳沪农商村镇银行-借记卡-借记卡', 2068 | '621682303' : u'瑞丽沪农商村镇银行-借记卡-借记卡', 2069 | '621682311' : u'临沧临翔沪农商村镇银行-借记卡-借记卡', 2070 | '621687913' : u'宝丰豫丰村镇银行-豫丰卡-借记卡', 2071 | '62169501' : u'新密郑银村镇银行--借记卡', 2072 | '62169503' : u'鄢陵郑银村镇银行--借记卡', 2073 | '62352801' : u'安徽五河永泰村镇银行-借记卡-借记卡', 2074 | '621697813' : u'天津华明村镇银行-借记卡-借记卡', 2075 | '621697793' : u'任丘泰寿村镇银行-同心卡-借记卡', 2076 | '621697873' : u'芜湖泰寿村镇银行-同心卡-借记卡', 2077 | '62311701' : u'长葛轩辕村镇银行--借记卡', 2078 | '621689004' : u'北流柳银村镇银行-广西北流柳银村镇银行龙城卡-借记卡', 2079 | '621689005' : u'陆川柳银村镇银行-借记卡-借记卡', 2080 | '621689006' : u'博白柳银村镇银行-龙城卡-借记卡', 2081 | '621689003' : u'兴业柳银村镇银行-龙城卡-借记卡', 2082 | '621387973' : u'浙江兰溪越商村镇银行-兰江卡-借记卡', 2083 | '621382019' : u'北京昌平兆丰村镇银行--借记卡', 2084 | '621382018' : u'天津津南村镇银行--借记卡', 2085 | '621382020' : u'清徐惠民村镇银行--借记卡', 2086 | '621382001' : u'固阳包商惠农村镇银行--借记卡', 2087 | '621382002' : u'宁城包商村镇银行--借记卡', 2088 | '621382010' : u'科尔沁包商村镇银行--借记卡', 2089 | '621382007' : u'集宁包商村镇银行--借记卡', 2090 | '621382003' : u'准格尔旗包商村镇银行--借记卡', 2091 | '621382004' : u'乌审旗包商村镇银行--借记卡', 2092 | '621382025' : u'大连金州联丰村镇银行--借记卡', 2093 | '621382013' : u'九台龙嘉村镇银行----借记卡', 2094 | '621382017' : u'江苏南通如皋包商村镇银行--借记卡', 2095 | '621382021' : u'仪征包商村镇银行--借记卡', 2096 | '621382023' : u'鄄城包商村镇银行--借记卡', 2097 | '621382015' : u'漯河市郾城包商村镇银行----借记卡', 2098 | '621382016' : u'掇刀包商村镇银行--借记卡', 2099 | '621382014' : u'新都桂城村镇银行--借记卡', 2100 | '621382024' : u'广元包商贵民村镇银行--借记卡', 2101 | '621382011' : u'息烽包商黔隆村镇银行--借记卡', 2102 | '621382022' : u'毕节发展村镇银行--借记卡', 2103 | '621382026' : u'宁夏贺兰回商村镇银行--借记卡', 2104 | '621383001' : u'辽宁大石桥隆丰村镇银行-隆丰卡-借记卡', 2105 | '621278333' : u'通城惠民村镇银行----借记卡', 2106 | '621386001' : u'武陟射阳村镇银行-金鹤卡-借记卡', 2107 | '623678353' : u'山东临朐聚丰村镇银行-聚丰卡-借记卡', 2108 | '623608001' : u'德庆华润村镇银行-德庆华润村镇银行借记金卡-借记卡', 2109 | '623608002' : u'百色右江华润村镇银行-百色右江华润村镇银行金卡-借记卡', 2110 | '62351501' : u'江苏丹阳保得村镇银行-丹桂IC借记卡-借记卡', 2111 | '62168301' : u'江苏丰县民丰村镇银行-金鼎卡-借记卡', 2112 | '62168302' : u'江苏灌南民丰村镇银行-金鼎卡-借记卡', 2113 | '622372' : u'东亚银行有限公司(25020344)-cup credit card-贷记卡', 2114 | '622365' : u'东亚银行有限公司(25020344)-电子网络人民币卡-借记卡', 2115 | '622471' : u'东亚银行有限公司(25020344)-人民币信用卡(银联卡)-贷记卡', 2116 | '622943' : u'东亚银行有限公司(25020344)-银联借记卡-借记卡', 2117 | '622472' : u'东亚银行有限公司(25020344)-人民币信用卡金卡-贷记卡', 2118 | '623318' : u'东亚银行有限公司(25020344)-银联双币借记卡-借记卡', 2119 | '621411' : u'东亚银行澳门分行(25020446)-银联借记卡-借记卡', 2120 | '622371' : u'花旗银行有限公司(25030344)-花旗人民币信用卡-贷记卡', 2121 | '625091' : u'花旗银行有限公司(25030344)-双币卡-贷记卡', 2122 | '622293' : u'大新银行有限公司(25040344)-信用卡(普通卡)-贷记卡', 2123 | '622295' : u'大新银行有限公司(25040344)-商务信用卡-贷记卡', 2124 | '622296' : u'大新银行有限公司(25040344)-商务信用卡-贷记卡', 2125 | '622297' : u'大新银行有限公司(25040344)-预付卡(普通卡)-借记卡', 2126 | '622373' : u'大新银行有限公司(25040344)-人民币信用卡-贷记卡', 2127 | '622375' : u'大新银行有限公司(25040344)-人民币借记卡(银联卡)-借记卡', 2128 | '622451' : u'大新银行有限公司(25040344)-大新人民币信用卡金卡-贷记卡', 2129 | '622294' : u'大新银行有限公司(25040344)-大新港币信用卡(金卡)-贷记卡', 2130 | '625940' : u'大新银行有限公司(25040344)-贷记卡-贷记卡', 2131 | '622489' : u'大新银行有限公司(25040344)-借记卡(银联卡)-借记卡', 2132 | '622871' : u'永亨银行(25060344)-永亨尊贵理财卡-借记卡', 2133 | '622958' : u'永亨银行(25060344)-永亨贵宾理财卡-借记卡', 2134 | '622963' : u'永亨银行(25060344)-永亨贵宾理财卡-借记卡', 2135 | '622957' : u'永亨银行(25060344)-永亨贵宾理财卡-借记卡', 2136 | '622798' : u'永亨银行(25060344)-港币贷记卡-贷记卡', 2137 | '625010' : u'永亨银行(25060344)-永亨银联白金卡-贷记卡', 2138 | '622381' : u'中国建设银行亚洲股份有限公司(25070344)-人民币信用卡-贷记卡', 2139 | '622675' : u'中国建设银行亚洲股份有限公司(25070344)-银联卡-贷记卡', 2140 | '622676' : u'中国建设银行亚洲股份有限公司(25070344)-银联卡-贷记卡', 2141 | '622677' : u'中国建设银行亚洲股份有限公司(25070344)-银联卡-贷记卡', 2142 | '622382' : u'中国建设银行亚洲股份有限公司(25070344)-人民币卡(银联卡)-借记卡', 2143 | '621487' : u'中国建设银行亚洲股份有限公司(25070344)-借记卡-借记卡', 2144 | '621083' : u'中国建设银行亚洲股份有限公司(25070344)-建行陆港通龙卡-借记卡', 2145 | '622487' : u'星展银行香港有限公司(25080344)-银联人民币银行卡-借记卡', 2146 | '622490' : u'星展银行香港有限公司(25080344)-银联人民币银行卡-借记卡', 2147 | '622491' : u'星展银行香港有限公司(25080344)-银联银行卡-借记卡', 2148 | '622492' : u'星展银行香港有限公司(25080344)-银联银行卡-借记卡', 2149 | '621744' : u'星展银行香港有限公司(25080344)-借记卡-借记卡', 2150 | '621745' : u'星展银行香港有限公司(25080344)-借记卡-借记卡', 2151 | '621746' : u'星展银行香港有限公司(25080344)-借记卡-借记卡', 2152 | '621747' : u'星展银行香港有限公司(25080344)-借记卡-借记卡', 2153 | '621034' : u'上海商业银行(25090344)-上银卡-借记卡', 2154 | '622386' : u'上海商业银行(25090344)-人民币信用卡(银联卡)-贷记卡', 2155 | '622952' : u'上海商业银行(25090344)-上银卡ShacomCard-借记卡', 2156 | '625107' : u'上海商业银行(25090344)-Dual Curr.Corp.Card-贷记卡', 2157 | '622387' : u'永隆银行有限公司(25100344)-永隆人民币信用卡-贷记卡', 2158 | '622423' : u'永隆银行有限公司(25100344)-永隆人民币信用卡-贷记卡', 2159 | '622971' : u'永隆银行有限公司(25100344)-永隆港币卡-借记卡', 2160 | '622970' : u'永隆银行有限公司(25100344)-永隆人民币卡-借记卡', 2161 | '625062' : u'永隆银行有限公司(25100344)-永隆双币卡-贷记卡', 2162 | '625063' : u'永隆银行有限公司(25100344)-永隆双币卡-贷记卡', 2163 | '622360' : u'香港上海汇丰银行有限公司(25120344)-人民币卡(银联卡)-贷记卡', 2164 | '622361' : u'香港上海汇丰银行有限公司(25120344)-人民币金卡(银联卡)-贷记卡', 2165 | '625034' : u'香港上海汇丰银行有限公司(25120344)-银联卡-贷记卡', 2166 | '625096' : u'香港上海汇丰银行有限公司(25120344)-汇丰银联双币卡-贷记卡', 2167 | '625098' : u'香港上海汇丰银行有限公司(25120344)-汇丰银联双币钻石卡-贷记卡', 2168 | '622406' : u'香港上海汇丰银行有限公司(25130344)-TMCard-借记卡', 2169 | '622407' : u'香港上海汇丰银行有限公司(25130344)-TMCard-借记卡', 2170 | '621442' : u'香港上海汇丰银行有限公司(25130344)-借记卡-借记卡', 2171 | '621443' : u'香港上海汇丰银行有限公司(25130344)-借记卡-借记卡', 2172 | '625026' : u'恒生银行有限公司(25140344)-港币贷记白金卡-贷记卡', 2173 | '625024' : u'恒生银行有限公司(25140344)-港币贷记普卡-贷记卡', 2174 | '622376' : u'恒生银行有限公司(25140344)-恒生人民币信用卡-贷记卡', 2175 | '622378' : u'恒生银行有限公司(25140344)-恒生人民币白金卡-贷记卡', 2176 | '622377' : u'恒生银行有限公司(25140344)-恒生人民币金卡-贷记卡', 2177 | '625092' : u'恒生银行有限公司(25140344)-银联人民币钻石商务卡-贷记卡', 2178 | '622409' : u'恒生银行(25150344)-恒生银行港卡借记卡-借记卡', 2179 | '622410' : u'恒生银行(25150344)-恒生银行港卡借记卡-借记卡', 2180 | '621440' : u'恒生银行(25150344)-港币借记卡(普卡)-借记卡', 2181 | '621441' : u'恒生银行(25150344)-港币借记卡(金卡)-借记卡', 2182 | '623106' : u'恒生银行(25150344)-港币借记卡(普卡)-借记卡', 2183 | '623107' : u'恒生银行(25150344)-港币借记卡(普卡)-借记卡', 2184 | '622453' : u'中信嘉华银行有限公司(25160344)-人民币信用卡金卡-贷记卡', 2185 | '622456' : u'中信嘉华银行有限公司(25160344)-信用卡普通卡-贷记卡', 2186 | '622459' : u'中信嘉华银行有限公司(25160344)-人民币借记卡(银联卡)-借记卡', 2187 | '624303' : u'中信嘉华银行有限公司(25160344)-信银国际国航知音双币信用卡-贷记卡', 2188 | '623328' : u'中信嘉华银行有限公司(25160344)-CNCBI HKD CUP Debit Card-借记卡', 2189 | '622272' : u'创兴银行有限公司(25170344)-银联贺礼卡(创兴银行)-借记卡', 2190 | '622463' : u'创兴银行有限公司(25170344)-港币借记卡-借记卡', 2191 | '621087' : u'创兴银行有限公司(25170344)-人民币提款卡-借记卡', 2192 | '625008' : u'创兴银行有限公司(25170344)-银联双币信用卡-贷记卡', 2193 | '625009' : u'创兴银行有限公司(25170344)-银联双币信用卡-贷记卡', 2194 | '625055' : u'中银信用卡(国际)有限公司(25180344)-商务金卡-贷记卡', 2195 | '625040' : u'中银信用卡(国际)有限公司(25180344)-中银银联双币信用卡-贷记卡', 2196 | '625042' : u'中银信用卡(国际)有限公司(25180344)-中银银联双币信用卡-贷记卡', 2197 | '625141' : u'中银信用卡(国际)有限公司(25180446)-澳门币贷记卡-贷记卡', 2198 | '625143' : u'中银信用卡(国际)有限公司(25180446)-澳门币贷记卡-贷记卡', 2199 | '621741' : u'中国银行(香港)(25190344)-接触式晶片借记卡-借记卡', 2200 | '623040' : u'中国银行(香港)(25190344)-接触式银联双币预制晶片借记卡-借记卡', 2201 | '620202' : u'中国银行(香港)(25190344)-中国银行银联预付卡-预付费卡', 2202 | '620203' : u'中国银行(香港)(25190344)-中国银行银联预付卡-预付费卡', 2203 | '625136' : u'中国银行(香港)(25190344)-中银Good Day银联双币白金卡-贷记卡', 2204 | '621782' : u'中国银行(香港)(25190344)-中银纯电子现金双币卡-借记卡', 2205 | '623309' : u'中国银行(香港)(25190344)-中国银行银联公司借记卡-借记卡', 2206 | '625046' : u'南洋商业银行(25200344)-银联双币信用卡-贷记卡', 2207 | '625044' : u'南洋商业银行(25200344)-银联双币信用卡-贷记卡', 2208 | '625058' : u'南洋商业银行(25200344)-双币商务卡-贷记卡', 2209 | '621743' : u'南洋商业银行(25200344)-接触式晶片借记卡-借记卡', 2210 | '623041' : u'南洋商业银行(25200344)-接触式银联双币预制晶片借记卡-借记卡', 2211 | '620208' : u'南洋商业银行(25200344)-南洋商业银行银联预付卡-预付费卡', 2212 | '620209' : u'南洋商业银行(25200344)-南洋商业银行银联预付卡-预付费卡', 2213 | '621042' : u'南洋商业银行(25200344)-银联港币卡-借记卡', 2214 | '621783' : u'南洋商业银行(25200344)-中银纯电子现金双币卡-借记卡', 2215 | '623308' : u'南洋商业银行(25200344)-南洋商业银联公司借记卡-借记卡', 2216 | '625048' : u'集友银行(25210344)-银联双币信用卡-贷记卡', 2217 | '625053' : u'集友银行(25210344)-银联双币信用卡-贷记卡', 2218 | '625060' : u'集友银行(25210344)-双币商务卡-贷记卡', 2219 | '621742' : u'集友银行(25210344)-接触式晶片借记卡-借记卡', 2220 | '623042' : u'集友银行(25210344)-接触式银联双币预制晶片借记卡-借记卡', 2221 | '620206' : u'集友银行(25210344)-集友银行银联预付卡-预付费卡', 2222 | '620207' : u'集友银行(25210344)-集友银行银联预付卡-预付费卡', 2223 | '621043' : u'集友银行(25210344)-银联港币卡-借记卡', 2224 | '621784' : u'集友银行(25210344)-中银纯电子现金双币卡-借记卡', 2225 | '623310' : u'集友银行(25210344)-集友银行银联公司借记卡-借记卡', 2226 | '622493' : u'AEON信贷财务亚洲有限公司(25230344)-EONJUSCO银联卡-贷记卡', 2227 | '625198' : u'大丰银行有限公司(25250446)-银联双币白金卡-贷记卡', 2228 | '625196' : u'大丰银行有限公司(25250446)-银联双币金卡-贷记卡', 2229 | '622547' : u'大丰银行有限公司(25250446)-港币借记卡-借记卡', 2230 | '622548' : u'大丰银行有限公司(25250446)-澳门币借记卡-借记卡', 2231 | '622546' : u'大丰银行有限公司(25250446)-人民币借记卡-借记卡', 2232 | '625147' : u'澳门大丰银行(25250446)-中银银联双币商务卡-贷记卡', 2233 | '620072' : u'大丰银行有限公司(25250446)-大丰预付卡-预付费卡', 2234 | '620204' : u'大丰银行有限公司(25250446)-大丰银行预付卡-预付费卡', 2235 | '620205' : u'大丰银行有限公司(25250446)-大丰银行预付卡-预付费卡', 2236 | '621064' : u'AEON信贷财务亚洲有限公司(25260344)-EON银联礼品卡-借记卡', 2237 | '622941' : u'AEON信贷财务亚洲有限公司(25260344)-EON银联礼品卡-借记卡', 2238 | '622974' : u'AEON信贷财务亚洲有限公司(25260344)-EON银联礼品卡-借记卡', 2239 | '621084' : u'中国建设银行澳门股份有限公司(25270446)-扣款卡-借记卡', 2240 | '622948' : u'渣打银行香港有限公司(25280344)-港币借记卡-借记卡', 2241 | '621740' : u'渣打银行(香港)(25280344)-银联标准卡-借记卡', 2242 | '622482' : u'渣打银行香港有限公司(25280344)-双币信用卡-贷记卡', 2243 | '622483' : u'渣打银行香港有限公司(25280344)-双币信用卡-贷记卡', 2244 | '622484' : u'渣打银行香港有限公司(25280344)-双币信用卡-贷记卡', 2245 | '620070' : u'中国银盛(25290344)-中国银盛预付卡-预付费卡', 2246 | '620068' : u'中国银盛(25300344)-中国银盛预付卡-预付费卡', 2247 | '620107' : u'中国建设银行(亚洲)(25330344)-预付卡-借记卡', 2248 | '623334' : u'K & R International Limited(25380344)-环球通-预付费卡', 2249 | '625842' : u'Kasikorn Bank PCL(26030764)-贷记卡-贷记卡', 2250 | '6258433' : u'Kasikorn Bank PCL(26030764)-贷记卡-贷记卡', 2251 | '6258434' : u'Kasikorn Bank PCL(26030764)-贷记卡-贷记卡', 2252 | '622495' : u'Travelex(26040344)-Travelex港币卡-借记卡', 2253 | '622496' : u'Travelex(26040344)-Travelex美元卡-借记卡', 2254 | '620152' : u'Travelex(26040344)-CashPassportCounsumer-预付费卡', 2255 | '620153' : u'Travelex(26040344)-CashPassportCounsumer-预付费卡', 2256 | '622433' : u'新加坡大华银行(26070702)-UOBCUPCARD-贷记卡', 2257 | '622861' : u'澳门永亨银行股份有限公司(26080446)-人民币卡-借记卡', 2258 | '622932' : u'澳门永亨银行股份有限公司(26080446)-港币借记卡-借记卡', 2259 | '622862' : u'澳门永亨银行股份有限公司(26080446)-澳门币借记卡-借记卡', 2260 | '622775' : u'澳门永亨银行股份有限公司(26080446)-澳门币贷记卡-贷记卡', 2261 | '622785' : u'澳门永亨银行股份有限公司(26080446)-港币贷记卡-贷记卡', 2262 | '622920' : u'日本三井住友卡公司(26110392)-MITSUISUMITOMOGINREN-贷记卡', 2263 | '622434' : u'澳门国际银行(26220446)-人民币卡-借记卡', 2264 | '622436' : u'澳门国际银行(26220446)-澳门币卡-借记卡', 2265 | '622435' : u'澳门国际银行(26220446)-港币卡-借记卡', 2266 | '621232' : u'大西洋银行股份有限公司(26230446)-财运卡-借记卡', 2267 | '622432' : u'大西洋银行股份有限公司(26230446)-澳门币卡-借记卡', 2268 | '621247' : u'大西洋银行股份有限公司(26230446)-财运卡-借记卡', 2269 | '623043' : u'大西洋银行股份有限公司(26230446)-财运卡-借记卡', 2270 | '623064' : u'大西洋银行股份有限公司(26230446)-财运卡-借记卡', 2271 | '601100' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2272 | '601101' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2273 | '60112010' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2274 | '60112011' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2275 | '60112012' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2276 | '60112089' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2277 | '601121' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2278 | '601123' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2279 | '601124' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2280 | '601125' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2281 | '601126' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2282 | '601127' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2283 | '601128' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2284 | '6011290' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2285 | '6011291' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2286 | '6011292' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2287 | '6011293' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2288 | '60112013' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2289 | '6011295' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2290 | '601122' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2291 | '6011297' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2292 | '60112980' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2293 | '60112981' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2294 | '60112986' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2295 | '60112987' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2296 | '60112988' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2297 | '60112989' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2298 | '60112990' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2299 | '60112991' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2300 | '60112992' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2301 | '60112993' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2302 | '6011294' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2303 | '6011296' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2304 | '60112996' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2305 | '60112997' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2306 | '6011300' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2307 | '60113080' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2308 | '60113081' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2309 | '60113089' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2310 | '601131' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2311 | '601136' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2312 | '601137' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2313 | '601138' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2314 | '6011390' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2315 | '60112995' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2316 | '6011392' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2317 | '6011393' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2318 | '60113940' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2319 | '60113941' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2320 | '60113943' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2321 | '60113944' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2322 | '60113945' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2323 | '60113946' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2324 | '60113984' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2325 | '60113985' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2326 | '60113986' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2327 | '60113988' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2328 | '60112994' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2329 | '6011391' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2330 | '601140' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2331 | '601142' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2332 | '601143' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2333 | '601144' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2334 | '601145' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2335 | '601146' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2336 | '601147' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2337 | '601148' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2338 | '601149' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2339 | '601174' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2340 | '60113989' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2341 | '601178' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2342 | '6011399' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2343 | '601186' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2344 | '601187' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2345 | '601188' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2346 | '601189' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2347 | '644' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2348 | '65' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2349 | '6506' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2350 | '6507' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2351 | '6508' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2352 | '601177' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2353 | '601179' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2354 | '6509' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2355 | '60110' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2356 | '60112' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2357 | '60113' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2358 | '60114' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2359 | '60119' : u'Discover Financial Services,I(26290840)-发现卡-贷记卡', 2360 | '621253' : u'澳门商业银行(26320446)-银联人民币卡-借记卡', 2361 | '621254' : u'澳门商业银行(26320446)-银联澳门币卡-借记卡', 2362 | '621255' : u'澳门商业银行(26320446)-银联港币卡-借记卡', 2363 | '625014' : u'澳门商业银行(26320446)-双币种普卡-贷记卡', 2364 | '625016' : u'澳门商业银行(26320446)-双币种白金卡-贷记卡', 2365 | '622549' : u'哈萨克斯坦国民储蓄银行(26330398)-HalykbankClassic-借记卡', 2366 | '622550' : u'哈萨克斯坦国民储蓄银行(26330398)-HalykbankGolden-借记卡', 2367 | '622354' : u'Bangkok Bank Pcl(26350764)-贷记卡-贷记卡', 2368 | '625017' : u'中国工商银行(澳门)(26470446)-普卡-贷记卡', 2369 | '625018' : u'中国工商银行(澳门)(26470446)-金卡-贷记卡', 2370 | '625019' : u'中国工商银行(澳门)(26470446)-白金卡-贷记卡', 2371 | '621224' : u'可汗银行(26530496)-借记卡-借记卡', 2372 | '622954' : u'可汗银行(26530496)-银联蒙图借记卡-借记卡', 2373 | '621295' : u'越南Vietcombank(26550704)-借记卡-借记卡', 2374 | '625124' : u'越南Vietcombank(26550704)-贷记卡-贷记卡', 2375 | '625154' : u'越南Vietcombank(26550704)-贷记卡-贷记卡', 2376 | '621049' : u'蒙古郭勒姆特银行(26620496)-Golomt Unionpay-借记卡', 2377 | '622444' : u'蒙古郭勒姆特银行(26620496)-贷记卡-贷记卡', 2378 | '622414' : u'蒙古郭勒姆特银行(26620496)-借记卡-借记卡', 2379 | '620011' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2380 | '620027' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2381 | '620031' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2382 | '620039' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2383 | '620103' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2384 | '620106' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2385 | '620120' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2386 | '620123' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2387 | '620125' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2388 | '620220' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2389 | '620278' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2390 | '620812' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2391 | '621006' : u'BC卡公司(26630410)-中国通卡-借记卡', 2392 | '621011' : u'BC卡公司(26630410)-中国通卡-借记卡', 2393 | '621012' : u'BC卡公司(26630410)-中国通卡-借记卡', 2394 | '621020' : u'BC卡公司(26630410)-中国通卡-借记卡', 2395 | '621023' : u'BC卡公司(26630410)-中国通卡-借记卡', 2396 | '621025' : u'BC卡公司(26630410)-中国通卡-借记卡', 2397 | '621027' : u'BC卡公司(26630410)-中国通卡-借记卡', 2398 | '621031' : u'BC卡公司(26630410)-中国通卡-借记卡', 2399 | '620132' : u'BC卡公司(26630410)-BC-CUPGiftCard-借记卡', 2400 | '621039' : u'BC卡公司(26630410)-中国通卡-借记卡', 2401 | '621078' : u'BC卡公司(26630410)-中国通卡-借记卡', 2402 | '621220' : u'BC卡公司(26630410)-中国通卡-借记卡', 2403 | '625003' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2404 | '621003' : u'BC卡公司(26630410)-中国通卡-借记卡', 2405 | '625011' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2406 | '625012' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2407 | '625020' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2408 | '625023' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2409 | '625025' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2410 | '625027' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2411 | '625031' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2412 | '621032' : u'BC卡公司(26630410)-中国通卡-借记卡', 2413 | '625039' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2414 | '625078' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2415 | '625079' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2416 | '625103' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2417 | '625106' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2418 | '625006' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2419 | '625112' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2420 | '625120' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2421 | '625123' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2422 | '625125' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2423 | '625127' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2424 | '625131' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2425 | '625032' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2426 | '625139' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2427 | '625178' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2428 | '625179' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2429 | '625220' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2430 | '625320' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2431 | '625111' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2432 | '625132' : u'BC卡公司(26630410)-中国通卡-贷记卡', 2433 | '625244' : u'BC卡公司(26630410)-贷记卡-贷记卡', 2434 | '625243' : u'BC卡公司(26630410)-贷记卡-贷记卡', 2435 | '621484' : u'BC卡公司(26630410)-借记卡-借记卡', 2436 | '621640' : u'BC卡公司(26630410)-借记卡-借记卡', 2437 | '621040' : u'莫斯科人民储蓄银行(26690643)-cup-unioncard-借记卡', 2438 | '621045' : u'丝绸之路银行(26700860)-Classic/Gold-借记卡', 2439 | '621264' : u'俄罗斯远东商业银行(26780643)-借记卡-借记卡', 2440 | '622356' : u'CSC(26790422)-贷记卡-贷记卡', 2441 | '621234' : u'CSC(26790422)-CSC借记卡-借记卡', 2442 | '622145' : u'Allied Bank(26930608)-贷记卡-贷记卡', 2443 | '625013' : u'Allied Bank(26930608)-贷记卡-贷记卡', 2444 | '622130' : u'日本三菱信用卡公司(27090392)-贷记卡-贷记卡', 2445 | '621257' : u'Baiduri Bank Berhad(27130096)-借记卡-借记卡', 2446 | '621055' : u'越南西贡商业银行(27200704)-借记卡-借记卡', 2447 | '620009' : u'越南西贡商业银行(27200704)-预付卡-预付费卡', 2448 | '625002' : u'越南西贡商业银行(27200704)-贷记卡-贷记卡', 2449 | '625033' : u'菲律宾BDO(27240608)-银联卡-贷记卡', 2450 | '625035' : u'菲律宾BDO(27240608)-银联卡-贷记卡', 2451 | '625007' : u'菲律宾RCBC(27250608)-贷记卡-贷记卡', 2452 | '620015' : u'新加坡星网电子付款私人有限公司(27520702)-预付卡-预付费卡', 2453 | '620024' : u'Royal Bank Open Stock Company(27550031)-预付卡-预付费卡', 2454 | '625004' : u'Royal Bank Open Stock Company(27550031)-贷记卡-贷记卡', 2455 | '621344' : u'Royal Bank Open Stock Company(27550031)-借记卡-借记卡', 2456 | '621349' : u'乌兹别克斯坦INFINBANK(27650860)-借记卡-借记卡', 2457 | '620108' : u'Russian Standard Bank(27670643)-预付卡-预付费卡', 2458 | '6216846' : u'Russian Standard Bank(27670643)-UnionPay-借记卡', 2459 | '6216848' : u'Russian Standard Bank(27670643)-UnionPay-借记卡', 2460 | '6250386' : u'Russian Standard Bank(27670643)-UnionPay-贷记卡', 2461 | '6250388' : u'Russian Standard Bank(27670643)-UnionPay-贷记卡', 2462 | '6201086' : u'Russian Standard Bank(27670643)-预付卡-预付费卡', 2463 | '6201088' : u'Russian Standard Bank(27670643)-预付卡-预付费卡', 2464 | '621354' : u'BCEL(27710418)-借记卡-借记卡', 2465 | '621274' : u'澳门BDA(27860446)-汇业卡-借记卡', 2466 | '621324' : u'澳门BDA(27860446)-汇业卡-借记卡', 2467 | '620532' : u'澳门通股份有限公司(28020446)-双币闪付卡-预付费卡', 2468 | '620126' : u'澳门通股份有限公司(28020446)-旅游卡-预付费卡', 2469 | '620537' : u'澳门通股份有限公司(28020446)-旅游卡-预付费卡', 2470 | '625904' : u'韩国乐天(28030410)-贷记卡-贷记卡', 2471 | '621645' : u'巴基斯坦FAYSAL BANK(28040586)-借记卡-借记卡', 2472 | '621624' : u'OJSCBASIAALLIANCEBANK(28160860)-UnionPay-借记卡', 2473 | '623339' : u'OJSC Russian Investment Bank(28260417)-借记卡-借记卡', 2474 | '625104' : u'俄罗斯ORIENT EXPRESS BANK(28450643)-信用卡-贷记卡', 2475 | '621647' : u'俄罗斯ORIENT EXPRESS BANK(28450643)-借记卡-借记卡', 2476 | '621642' : u'Mongolia Trade Develop. Bank(28530496)-普卡/金卡-借记卡', 2477 | '621654' : u'Krung Thaj Bank Public Co. Ltd(28550764)-借记卡-借记卡', 2478 | '625804' : u'韩国KB(28590410)-贷记卡-贷记卡', 2479 | '625814' : u'韩国三星卡公司(28660410)-三星卡-贷记卡', 2480 | '625817' : u'韩国三星卡公司(28660410)-三星卡-贷记卡', 2481 | '621649' : u'CJSC Fononbank(28720762)-Fonon Bank Card-借记卡', 2482 | '620079' : u'Commercial Bank of Dubai(28790784)-PrepaidCard-借记卡', 2483 | '620091' : u'Commercial Bank of Dubai(28790784)-PrepaidCard-借记卡', 2484 | '620105' : u'The Bancorp Bank(28880840)-UnionPay Travel Card-预付费卡', 2485 | '622164' : u'The Bancorp Bank(28880840)-China UnionPay Travel Card-预付费卡', 2486 | '621657' : u'巴基斯坦HabibBank(28990586)-借记卡-借记卡', 2487 | '623024' : u'新韩卡公司(29010410)-借记卡-借记卡', 2488 | '625840' : u'新韩卡公司(29010410)-贷记卡-贷记卡', 2489 | '625841' : u'新韩卡公司(29010410)-贷记卡-贷记卡', 2490 | '621694' : u'Capital Bank of Mongolia(29120496)-借记卡-借记卡', 2491 | '6233451' : u'JSC Liberty Bank(29140268)-Classic-借记卡', 2492 | '6233452' : u'JSC Liberty Bank(29140268)-Gold-借记卡', 2493 | '623347' : u'JSC Liberty Bank(29140268)-Diamond-借记卡', 2494 | '620129' : u'The Mauritius Commercial Bank(29170480)-预付卡-借记卡', 2495 | '621301' : u'格鲁吉亚 Invest Bank(29230268)-借记卡-借记卡', 2496 | '624306' : u'Cim Finance Ltd(29440480)-贷记卡-贷记卡', 2497 | '624322' : u'Cim Finance Ltd(29440480)-贷记卡-贷记卡', 2498 | '623300' : u'Rawbank S.a.r.l(29460180)-预付卡-预付费卡', 2499 | '623302' : u'PVB Card Corporation(29470608)-预付卡-预付费卡', 2500 | '623303' : u'PVB Card Corporation(29470608)-预付卡-预付费卡', 2501 | '623304' : u'PVB Card Corporation(29470608)-预付卡-借记卡', 2502 | '623324' : u'PVB Card Corporation(29470608)-预付卡-借记卡', 2503 | '623307' : u'U Microfinance Bank Limited(29600586)-U Paisa ATM &Debit Card-借记卡', 2504 | '623311' : u'Ecobank Nigeria(29620566)-Prepaid Card-预付费卡', 2505 | '623312' : u'Al Baraka Bank(Pakistan)(29630586)-al baraka classic card-借记卡', 2506 | '623313' : u'OJSC Hamkor bank(29640860)-借记卡-借记卡', 2507 | '623323' : u'NongHyup Bank(29650410)-NH Card-借记卡', 2508 | '623341' : u'NongHyup Bank(29650410)-NH Card-借记卡', 2509 | '624320' : u'NongHyup Bank(29650410)-NH Card-贷记卡', 2510 | '624321' : u'NongHyup Bank(29650410)-NH Card-贷记卡', 2511 | '624324' : u'NongHyup Bank(29650410)-NH Card-贷记卡', 2512 | '624325' : u'NongHyup Bank(29650410)-NH Card-贷记卡', 2513 | '623314' : u'Fidelity Bank Plc(29660566)-借记卡-借记卡', 2514 | '623331' : u'State Bank of Mauritius(29810480)-Prepaid card-预付费卡', 2515 | '623348' : u'State Bank of Mauritius(29810480)-Debit Card-借记卡', 2516 | '623336' : u'JSC ATFBank(29830398)-预付卡-借记卡', 2517 | '623337' : u'JSC ATFBank(29830398)-借记卡-借记卡', 2518 | '623338' : u'JSC ATFBank(29830398)-借记卡-借记卡', 2519 | '624323' : u'JSC ATFBank(29830398)-贷记卡-贷记卡', 2520 | '622346' : u'中国银行香港有限公司(47980344)-人民币信用卡金卡-贷记卡', 2521 | '622347' : u'中国银行香港有限公司(47980344)-信用卡普通卡-贷记卡', 2522 | '622348' : u'中国银行香港有限公司(47980344)-中银卡(人民币)-借记卡', 2523 | '622349' : u'南洋商业银行(47980344)-人民币信用卡金卡-贷记卡', 2524 | '622350' : u'南洋商业银行(47980344)-信用卡普通卡-贷记卡', 2525 | '622352' : u'集友银行(47980344)-人民币信用卡金卡-贷记卡', 2526 | '622353' : u'集友银行(47980344)-信用卡普通卡-贷记卡', 2527 | '622355' : u'集友银行(47980344)-中银卡-借记卡', 2528 | '621041' : u'中国银行(香港)(47980344)-银联港币借记卡-借记卡', 2529 | '622351' : u'南洋商业银行(47980344)-中银卡(人民币)-借记卡', 2530 | '620048' : u'中银通商务支付有限公司(48080000)-预付卡-预付费卡', 2531 | '620515' : u'中银通商务支付有限公司(48080000)-预付卡-预付费卡', 2532 | '920000' : u'中银通商务支付有限公司(48080000)-预付卡-预付费卡', 2533 | '620550' : u'中银通商务支付有限公司(48080000)--预付费卡', 2534 | '621563' : u'中银通商务支付有限公司(48080000)--预付费卡', 2535 | '921001' : u'中银通商务支付有限公司(48080000)--预付费卡', 2536 | '921002' : u'中银通商务支付有限公司(48080000)--预付费卡', 2537 | '921000' : u'中银通支付(48080001)-安徽合肥通卡-预付费卡', 2538 | '620038' : u'中银通商务支付有限公司(48100000)-铁路卡-预付费卡', 2539 | '622812' : u'中国邮政储蓄银行信用卡中心(61000000)-银联标准白金卡-贷记卡', 2540 | '622810' : u'中国邮政储蓄银行信用卡中心(61000000)-银联标准贷记卡-贷记卡', 2541 | '622811' : u'中国邮政储蓄银行信用卡中心(61000000)-银联标准贷记卡-贷记卡', 2542 | '628310' : u'中国邮政储蓄银行信用卡中心(61000000)-银联标准公务卡-贷记卡', 2543 | '625919' : u'中国邮政储蓄银行信用卡中心(61000000)-上海购物信用卡-贷记卡', 2544 | '376968' : u'中信银行信用卡中心(63020000)-中信贷记卡银联卡-贷记卡', 2545 | '376969' : u'中信银行信用卡中心(63020000)-中信贷记卡银联卡-贷记卡', 2546 | '400360' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2547 | '403391' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2548 | '403392' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2549 | '376966' : u'中信银行信用卡中心(63020000)-中信贷记卡银联卡-贷记卡', 2550 | '404158' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2551 | '404159' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2552 | '404171' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2553 | '404172' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2554 | '404173' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2555 | '404174' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2556 | '404157' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2557 | '433667' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2558 | '433668' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2559 | '433669' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2560 | '514906' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2561 | '403393' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2562 | '520108' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2563 | '433666' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2564 | '558916' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2565 | '622678' : u'中信银行信用卡中心(63020000)-中信银联标准贷记卡-贷记卡', 2566 | '622679' : u'中信银行信用卡中心(63020000)-中信银联标准贷记卡-贷记卡', 2567 | '622680' : u'中信银行信用卡中心(63020000)-中信银联标准贷记卡-贷记卡', 2568 | '622688' : u'中信银行信用卡中心(63020000)-中信银联标准贷记卡-贷记卡', 2569 | '622689' : u'中信银行信用卡中心(63020000)-中信银联标准贷记卡-贷记卡', 2570 | '628206' : u'中信银行信用卡中心(63020000)-中信银联公务卡-贷记卡', 2571 | '556617' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2572 | '628209' : u'中信银行信用卡中心(63020000)-中信银联公务卡-贷记卡', 2573 | '518212' : u'中信银行信用卡中心(63020000)-中信贷记卡-贷记卡', 2574 | '628208' : u'中信银行信用卡中心(63020000)-中信银联公务卡-贷记卡', 2575 | '356390' : u'中信银行信用卡中心(63020000)-中信JCB美元卡-贷记卡', 2576 | '356391' : u'中信银行信用卡中心(63020000)-中信JCB美元卡-贷记卡', 2577 | '356392' : u'中信银行信用卡中心(63020000)-中信JCB美元卡-贷记卡', 2578 | '622916' : u'中信银行信用卡中心(63020000)-中信银联IC卡普卡-贷记卡', 2579 | '622918' : u'中信银行信用卡中心(63020000)-中信银联IC卡金卡-贷记卡', 2580 | '622919' : u'中信银行信用卡中心(63020000)-中信银联IC卡白金卡-贷记卡', 2581 | '628370' : u'中信银行信用卡中心(63020000)-公务IC普卡-贷记卡', 2582 | '628371' : u'中信银行信用卡中心(63020000)-公务IC金卡-贷记卡', 2583 | '628372' : u'中信银行信用卡中心(63020000)-公务IC白金卡-贷记卡', 2584 | '622657' : u'光大银行(63030000)-存贷合一白金卡-贷记卡', 2585 | '622685' : u'光大银行(63030000)-存贷合一卡普卡-贷记卡', 2586 | '622659' : u'光大银行(63030000)-理财信用卡-贷记卡', 2587 | '622687' : u'中国光大银行(63030000)-存贷合一钻石卡-贷记卡', 2588 | '625978' : u'中国光大银行(63030000)-存贷合一IC卡-贷记卡', 2589 | '625980' : u'中国光大银行(63030000)-存贷合一IC卡-贷记卡', 2590 | '625981' : u'中国光大银行(63030000)-存贷合一IC卡-贷记卡', 2591 | '625979' : u'中国光大银行(63030000)-存贷合一IC卡-贷记卡', 2592 | '356839' : u'中国光大银行(63030000)-阳光商旅信用卡-贷记卡', 2593 | '356840' : u'中国光大银行(63030000)-阳光商旅信用卡-贷记卡', 2594 | '406252' : u'中国光大银行(63030000)-阳光信用卡(银联-贷记卡', 2595 | '406254' : u'中国光大银行(63030000)-阳光信用卡(银联-贷记卡', 2596 | '425862' : u'中国光大银行(63030000)-阳光商旅信用卡-贷记卡', 2597 | '481699' : u'中国光大银行(63030000)-阳光白金信用卡-贷记卡', 2598 | '524090' : u'中国光大银行(63030000)-安邦俱乐部信用卡-贷记卡', 2599 | '543159' : u'中国光大银行(63030000)-足球锦标赛纪念卡-贷记卡', 2600 | '622161' : u'中国光大银行(63030000)-光大银行联名公务卡-贷记卡', 2601 | '622570' : u'中国光大银行(63030000)-积分卡-贷记卡', 2602 | '622650' : u'中国光大银行(63030000)-炎黄卡普卡-贷记卡', 2603 | '622655' : u'中国光大银行(63030000)-炎黄卡白金卡-贷记卡', 2604 | '622658' : u'中国光大银行(63030000)-炎黄卡金卡-贷记卡', 2605 | '625975' : u'中国光大银行(63030000)-贷记IC卡-贷记卡', 2606 | '625977' : u'中国光大银行(63030000)-贷记IC卡-贷记卡', 2607 | '628201' : u'中国光大银行(63030000)-银联公务卡-贷记卡', 2608 | '628202' : u'中国光大银行(63030000)-银联公务卡-贷记卡', 2609 | '625976' : u'中国光大银行(63030000)-贷记IC卡-贷记卡', 2610 | '625339' : u'中国光大银行(63030000)-银联贷记IC旅游卡-贷记卡', 2611 | '622801' : u'中国光大银行(63030000)-贷记IC卡-贷记卡', 2612 | '523959' : u'华夏银行(63040000)-华夏万事达信用卡-贷记卡', 2613 | '528709' : u'华夏银行(63040000)-万事达信用卡金卡-贷记卡', 2614 | '539867' : u'华夏银行(63040000)-万事达普卡-贷记卡', 2615 | '539868' : u'华夏银行(63040000)-万事达普卡-贷记卡', 2616 | '622637' : u'华夏银行(63040000)-华夏信用卡金卡-贷记卡', 2617 | '622638' : u'华夏银行(63040000)-华夏白金卡-贷记卡', 2618 | '628318' : u'华夏银行(63040000)-华夏公务信用卡-贷记卡', 2619 | '528708' : u'华夏银行(63040000)-万事达信用卡金卡-贷记卡', 2620 | '622636' : u'华夏银行(63040000)-华夏信用卡普卡-贷记卡', 2621 | '625967' : u'华夏银行(63040000)-华夏标准金融IC信用卡-贷记卡', 2622 | '625968' : u'华夏银行(63040000)-华夏标准金融IC信用卡-贷记卡', 2623 | '625969' : u'华夏银行(63040000)-华夏标准金融IC信用卡-贷记卡', 2624 | '625971' : u'浦发银行信用卡中心(63100000)-移动浦发借贷合一联名卡-贷记卡', 2625 | '625970' : u'浦发银行信用卡中心(63100000)-贷记卡-贷记卡', 2626 | '377187' : u'浦发银行信用卡中心(63100000)-浦发私人银行信用卡-贷记卡', 2627 | '625831' : u'浦发银行信用卡中心(63100000)-中国移动浦发银行联名手机卡-贷记卡', 2628 | '622265' : u'东亚银行(中国)有限公司(63200000)-东亚银行普卡-贷记卡', 2629 | '622266' : u'东亚银行(中国)有限公司(63200000)-东亚银行金卡-贷记卡', 2630 | '625972' : u'东亚银行(中国)有限公司(63200000)-百家网点纪念版IC贷记卡-贷记卡', 2631 | '625973' : u'东亚银行(中国)有限公司(63200000)-百家网点纪念版IC贷记卡-贷记卡', 2632 | '625093' : u'南洋商业银行(63320000)-银联个人白金信用卡-贷记卡', 2633 | '625095' : u'南洋商业银行(63320000)-银联商务白金信用卡-贷记卡', 2634 | '522001' : u'北京银行(64031000)-万事达双币金卡-贷记卡', 2635 | '622163' : u'北京银行(64031000)-银联标准贷记卡-贷记卡', 2636 | '622853' : u'北京银行(64031000)-银联标准贷记卡-贷记卡', 2637 | '628203' : u'北京银行(64031000)-银联标准公务卡-贷记卡', 2638 | '622851' : u'北京银行(64031000)-北京银行中荷人寿联名卡-贷记卡', 2639 | '622852' : u'北京银行(64031000)-尊尚白金卡-贷记卡', 2640 | '625903' : u'宁波银行(64083300)-汇通贷记卡-贷记卡', 2641 | '622282' : u'宁波银行(64083300)-汇通贷记卡-贷记卡', 2642 | '622318' : u'宁波银行(64083300)-汇通卡(银联卡)-贷记卡', 2643 | '622778' : u'宁波银行(64083300)-汇通白金卡-贷记卡', 2644 | '628207' : u'宁波银行(64083300)-汇通公务卡-贷记卡', 2645 | '628379' : u'齐鲁银行股份有限公司(64094510)-泉城公务卡-贷记卡', 2646 | '625050' : u'广州银行股份有限公司(64135810)-广州银行信用卡-贷记卡', 2647 | '625836' : u'广州银行股份有限公司(64135810)-贷记IC卡-贷记卡', 2648 | '628367' : u'广州银行股份有限公司(64135810)-银联标准公务卡-贷记卡', 2649 | '628333' : u'龙江银行股份有限公司(64162640)-公务卡-贷记卡', 2650 | '622921' : u'河北银行股份有限公司(64221210)-如意贷记卡-贷记卡', 2651 | '628321' : u'河北银行股份有限公司(64221210)-如意贷记卡-贷记卡', 2652 | '625598' : u'河北银行股份有限公司(64221210)-福农卡-贷记卡', 2653 | '622286' : u'杭州市商业银行(64233311)-西湖贷记卡-贷记卡', 2654 | '628236' : u'杭州市商业银行(64233311)-西湖贷记卡-贷记卡', 2655 | '625800' : u'杭州市商业银行(64233311)-西湖信用卡-贷记卡', 2656 | '621777' : u'南京银行(64243010)-借记IC卡-借记卡', 2657 | '628228' : u'成都市商业银行(64296510)-银联标准公务卡-贷记卡', 2658 | '622813' : u'成都市商业银行(64296510)-银联标准卡-贷记卡', 2659 | '622818' : u'成都市商业银行(64296510)-银联标准卡-贷记卡', 2660 | '628359' : u'临商银行(64314730)-公务卡-贷记卡', 2661 | '628270' : u'珠海华润银行(64375850)-公务信用卡-贷记卡', 2662 | '628311' : u'齐商银行(64384530)-金达公务卡-贷记卡', 2663 | '628261' : u'锦州银行(64392270)-公务卡-贷记卡', 2664 | '628251' : u'徽商银行(64403600)-银联标准公务卡-贷记卡', 2665 | '622651' : u'徽商银行(64403600)-贷记卡-贷记卡', 2666 | '625828' : u'徽商银行(64403600)-贷记IC卡-贷记卡', 2667 | '625652' : u'徽商银行(64403600)-公司卡-贷记卡', 2668 | '625700' : u'徽商银行(64403600)-采购卡-贷记卡', 2669 | '622613' : u'重庆银行股份有限公司(64416910)-银联标准卡-贷记卡', 2670 | '628220' : u'重庆银行股份有限公司(64416910)-银联标准公务卡-贷记卡', 2671 | '622809' : u'哈尔滨商行(64422610)-丁香贷记卡-贷记卡', 2672 | '628224' : u'哈尔滨商行(64422610)-哈尔滨银行公务卡-贷记卡', 2673 | '625119' : u'哈尔滨银行(64422610)-联名卡-贷记卡', 2674 | '625577' : u'哈尔滨银行(64422610)-福农准贷记卡-准贷记卡', 2675 | '625952' : u'哈尔滨银行(64422610)-贷记IC卡-贷记卡', 2676 | '621752' : u'哈尔滨银行(64422611)-金融IC借记卡-借记卡', 2677 | '628213' : u'贵阳银行股份有限公司(64437010)-甲秀公务卡-贷记卡', 2678 | '628263' : u'兰州银行(64478210)-敦煌公务卡-贷记卡', 2679 | '628305' : u'南昌银行(64484210)-银联标准公务卡-贷记卡', 2680 | '628239' : u'青岛银行(64504520)-公务卡-贷记卡', 2681 | '628238' : u'九江银行股份有限公司(64544240)-庐山公务卡-贷记卡', 2682 | '628257' : u'日照银行(64554770)-黄海公务卡-贷记卡', 2683 | '622817' : u'青海银行(64588510)-三江贷记卡-贷记卡', 2684 | '628287' : u'青海银行(64588510)-三江贷记卡(公务卡)-贷记卡', 2685 | '625959' : u'青海银行(64588510)-三江贷记IC卡-贷记卡', 2686 | '62536601' : u'青海银行(64588510)-中国旅游卡-贷记卡', 2687 | '628391' : u'潍坊银行(64624580)-鸢都公务卡-贷记卡', 2688 | '628233' : u'赣州银行股份有限公司(64634280)-长征公务卡-贷记卡', 2689 | '628231' : u'富滇银行(64667310)-富滇公务卡-贷记卡', 2690 | '628275' : u'浙江泰隆商业银行(64733450)-泰隆公务卡(单位卡)-贷记卡', 2691 | '622565' : u'浙江泰隆商业银行(64733450)-泰隆尊尚白金卡、钻石卡-贷记卡', 2692 | '622287' : u'浙江泰隆商业银行(64733450)-泰隆信用卡-贷记卡', 2693 | '622717' : u'浙江泰隆商业银行(64733450)-融易通-准贷记卡', 2694 | '628252' : u'内蒙古银行(64741910)-银联标准公务卡-贷记卡', 2695 | '628306' : u'湖州银行(64753360)-公务卡-贷记卡', 2696 | '628227' : u'广西北部湾银行(64786110)-银联标准公务卡-贷记卡', 2697 | '623001' : u'广西北部湾银行(64786110)-IC借记卡-借记卡', 2698 | '628234' : u'威海市商业银行(64814650)-通达公务卡-贷记卡', 2699 | '621727' : u'广东南粤银行股份有限公司(64895910)-湛江市民卡-借记卡', 2700 | '623128' : u'广东南粤银行股份有限公司(64895910)----借记卡', 2701 | '628237' : u'广东南粤银行(64895919)-公务卡-贷记卡', 2702 | '628219' : u'桂林银行(64916170)-漓江公务卡-贷记卡', 2703 | '621456' : u'桂林银行(64916170)-漓江卡-借记卡', 2704 | '621562' : u'桂林银行(64916170)-福农IC卡-借记卡', 2705 | '622270' : u'龙江银行股份有限公司(64922690)-玉兔贷记卡-贷记卡', 2706 | '628368' : u'龙江银行股份有限公司(64922690)-玉兔贷记卡(公务卡)-贷记卡', 2707 | '625588' : u'龙江银行(64922690)-福农准贷记卡-准贷记卡', 2708 | '625090' : u'龙江银行股份有限公司(64922690)-联名贷记卡-贷记卡', 2709 | '62536602' : u'龙江银行股份有限公司(64922690)-中国旅游卡-贷记卡', 2710 | '628293' : u'柳州银行(64956140)-龙城公务卡-贷记卡', 2711 | '622611' : u'上海农商银行贷记卡(65012900)-鑫卡-贷记卡', 2712 | '622722' : u'上海农商银行贷记卡(65012900)-商务卡-贷记卡', 2713 | '628211' : u'上海农商银行贷记卡(65012900)-银联标准公务卡-贷记卡', 2714 | '625500' : u'上海农商银行贷记卡(65012900)-福农卡-准贷记卡', 2715 | '625989' : u'上海农商银行贷记卡(65012900)-鑫通卡-贷记卡', 2716 | '625080' : u'广州农村商业银行(65055810)-太阳信用卡-贷记卡', 2717 | '628235' : u'广州农村商业银行(65055810)-公务卡-贷记卡', 2718 | '628322' : u'佛山顺德农村商业银行(65085883)-恒通贷记卡(公务卡)-贷记卡', 2719 | '625088' : u'佛山顺德农村商业银行(65085883)-恒通贷记卡-贷记卡', 2720 | '622469' : u'云南省农村信用社(65097300)-金碧贷记卡-贷记卡', 2721 | '628307' : u'云南省农村信用社(65097300)-金碧公务卡-贷记卡', 2722 | '628229' : u'承德银行(65131410)-热河公务卡-贷记卡', 2723 | '628397' : u'德州银行(65154680)-长河公务卡-贷记卡', 2724 | '622802' : u'福建省农村信用社联合社(65173900)-万通贷记卡-贷记卡', 2725 | '622290' : u'福建省农村信用社联合社(65173900)-福建海峡旅游卡-贷记卡', 2726 | '628232' : u'福建省农村信用社联合社(65173900)-万通贷记卡-贷记卡', 2727 | '625128' : u'福建省农村信用社联合社(65173900)-福万通贷记卡-贷记卡', 2728 | '622829' : u'天津农村商业银行(65191100)-吉祥信用卡-贷记卡', 2729 | '625819' : u'天津农村商业银行(65191100)-贷记IC卡-贷记卡', 2730 | '628301' : u'天津农村商业银行(65191100)-吉祥信用卡-贷记卡', 2731 | '622808' : u'成都农村商业银行股份有限公司(65226510)-天府贷记卡-贷记卡', 2732 | '628308' : u'成都农村商业银行股份有限公司(65226510)-天府公务卡-贷记卡', 2733 | '623088' : u'成都农村商业银行股份有限公司(65226510)-天府借记卡-借记卡', 2734 | '622815' : u'江苏省农村信用社联合社(65243000)-圆鼎贷记卡-贷记卡', 2735 | '622816' : u'江苏省农村信用社联合社(65243000)-圆鼎贷记卡-贷记卡', 2736 | '628226' : u'江苏省农村信用社联合社(65243000)-银联标准公务卡-贷记卡', 2737 | '628223' : u'上饶银行(65264330)-三清山公务卡-贷记卡', 2738 | '621416' : u'上饶银行(65264331)-三清山IC卡-借记卡', 2739 | '628217' : u'东营银行(65274550)-财政公务卡-贷记卡', 2740 | '628382' : u'临汾市尧都区农村信用合作联社(65341770)-天河贷记公务卡-贷记卡', 2741 | '625158' : u'临汾市尧都区农村信用合作联社(65341770)-天河贷记卡-贷记卡', 2742 | '622569' : u'无锡农村商业银行(65373020)-金阿福贷记卡-贷记卡', 2743 | '628369' : u'无锡农村商业银行(65373020)-银联标准公务卡-贷记卡', 2744 | '628386' : u'湖南农村信用社联合社(65385500)-福祥公务卡-贷记卡', 2745 | '625519' : u'湖南农信(65385500)-福农卡-贷记卡', 2746 | '625506' : u'湖南农信(65385500)-福祥贷记卡(福农卡)-贷记卡', 2747 | '622906' : u'湖南农村信用社联合社(65385500)-福祥贷记卡-贷记卡', 2748 | '628392' : u'江西省农村信用社联合社(65394200)-百福公务卡-贷记卡', 2749 | '623092' : u'江西省农村信用社联合社(65394200)-借记IC卡-借记卡', 2750 | '621778' : u'安徽省农村信用社(65473600)-金农卡-借记卡', 2751 | '620528' : u'邢台银行(65541310)-金牛市民卡-借记卡', 2752 | '621748' : u'商丘市商业银行(65675060)-百汇卡-借记卡', 2753 | '628271' : u'商丘市商业银行(65675061)-公务卡-贷记卡', 2754 | '628328' : u'华融湘江银行(65705500)-华融湘江银行华融公务卡普卡-贷记卡', 2755 | '625829' : u'Bank of China(Malaysia)(99900458)-贷记卡-贷记卡', 2756 | '625943' : u'Bank of China(Malaysia)(99900458)-贷记卡-贷记卡', 2757 | '622790' : u'中行新加坡分行(99900702)-Great Wall Platinum-贷记卡', 2758 | '623251' : u'建设银行-单位结算卡-借记卡', 2759 | '623165' : u'西安银行股份有限公司-金丝路借记卡-借记卡', 2760 | '628351' : u'玉溪市商业银行-红塔卡-贷记卡', 2761 | '621635109' : u'合浦国民村镇银行--借记卡', 2762 | '621635108' : u'昌吉国民村镇银行--借记卡', 2763 | '62163121' : u'常宁珠江村镇银行-珠江太阳卡-借记卡', 2764 | '62316904' : u'枞阳泰业村镇银行-枞阳泰业村镇银行泰业卡-借记卡', 2765 | '62316905' : u'东源泰业村镇银行-东源泰业村镇银行泰业卡-借记卡', 2766 | '62316902' : u'东莞长安村镇银行-长银卡-借记卡', 2767 | '62316903' : u'灵山泰业村镇银行-灵山泰业村镇银行泰业卡-借记卡', 2768 | '62316901' : u'开县泰业村镇银行-开县泰业村镇银行泰业卡-借记卡', 2769 | '62316906' : u'东莞厚街华业村镇银行-易事通卡-借记卡', 2770 | '62361026' : u'西安高陵阳光村镇银行-金丝路阳光卡-借记卡', 2771 | '62361025' : u'陕西洛南阳光村镇银行-金丝路阳光卡-借记卡', 2772 | '62168305' : u'江苏溧水民丰村镇银行-金鼎卡-借记卡', 2773 | '62335101' : u'CJSC “Spitamen Bank”(30030762)-classic-借记卡', 2774 | '62335102' : u'CJSC “Spitamen Bank”(30030762)-gold-借记卡', 2775 | '62335103' : u'CJSC “Spitamen Bank”(30030762)-platinum-借记卡', 2776 | '62335104' : u'CJSC “Spitamen Bank”(30030762)-diamond-借记卡', 2777 | '62335105' : u'CJSC “Spitamen Bank”(30030762)-classic-借记卡', 2778 | '62335106' : u'CJSC “Spitamen Bank”(30030762)-gold-借记卡', 2779 | '62335107' : u'CJSC “Spitamen Bank”(30030762)-platinum-借记卡', 2780 | '62335108' : u'CJSC “Spitamen Bank”(30030762)-diamond-借记卡' 2781 | } 2782 | 2783 | def card_type(card_code): 2784 | def func(i): 2785 | default_split = card_code[:i] 2786 | t = bankcode.get(default_split, None) 2787 | if not t and i > 6: 2788 | return func(i-1) 2789 | else: 2790 | return t 2791 | return func(i=8) 2792 | 2793 | if __name__ == "__main__": 2794 | print(card_type("6228480018357172571")) 2795 | --------------------------------------------------------------------------------