@taxbit/react-sdk 1.1.0-beta.0 → 1.2.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/README.md +17 -4
  2. package/dist/src/components/ErrorBoundary/ErrorBoundary.d.ts +1 -1
  3. package/dist/src/components/Section/Section.d.ts +1 -1
  4. package/dist/src/contexts/QuestionnaireStep/getLocal.d.ts +5 -4
  5. package/dist/src/contexts/QuestionnaireStep/shiftControllingPerson.d.ts +3 -0
  6. package/dist/src/contexts/QuestionnaireStep/shiftResidence.d.ts +1 -1
  7. package/dist/src/contexts/QuestionnaireStep/useQuestionnaireStep.d.ts +3 -2
  8. package/dist/src/contexts/QuestionnaireStep/useQuestionnaireStepContext.d.ts +6 -4
  9. package/dist/src/contexts/TaxDocumentation/useTaxDocumentation.d.ts +5 -5
  10. package/dist/src/contexts/TaxDocumentation/useTaxDocumentationContext.d.ts +6 -6
  11. package/dist/src/hooks/useTaxbit/useTaxbit.d.ts +2 -2
  12. package/dist/src/hooks/useTaxbit/useTaxbitStatus.d.ts +2 -2
  13. package/dist/src/i18n/locales/de.d.ts +2 -2
  14. package/dist/src/i18n/locales/el.d.ts +2 -2
  15. package/dist/src/i18n/locales/ga.d.ts +1 -3
  16. package/dist/src/i18n/locales/lt.d.ts +2 -2
  17. package/dist/src/i18n/locales/pl.d.ts +2 -2
  18. package/dist/src/i18n/types/LocalizationKey.d.ts +6 -6
  19. package/dist/src/i18n/types/PropertyFile.d.ts +15 -14
  20. package/dist/src/index.d.ts +2 -2
  21. package/dist/src/lookups/activeNonFinancialEntityTypeOptions.d.ts +3 -0
  22. package/dist/src/lookups/controllingPersonRoleOptions.d.ts +3 -0
  23. package/dist/src/lookups/countryOptions.d.ts +0 -4
  24. package/dist/src/lookups/entityTypeOptions.d.ts +3 -0
  25. package/dist/src/lookups/financialInstitutionTypeOptions.d.ts +3 -0
  26. package/dist/src/lookups/getTreatyCountryLimitationOnBenefitOptions.d.ts +9 -0
  27. package/dist/src/lookups/index.d.ts +8 -0
  28. package/dist/src/lookups/payeeCodeOptions.d.ts +1 -1
  29. package/dist/src/lookups/selfCertificationAccountTypeOptions.d.ts +3 -0
  30. package/dist/src/lookups/signatureCapacityOptions.d.ts +3 -0
  31. package/dist/src/lookups/tinNotRequiredReasonOptions.d.ts +3 -0
  32. package/dist/src/lookups/typeOfIncomeOptions.d.ts +0 -2
  33. package/dist/src/services/api.d.ts +5 -2
  34. package/dist/src/services/msw.d.ts +33 -0
  35. package/dist/src/test/Wrapper.d.ts +2 -2
  36. package/dist/src/test/getWrapper.d.ts +2 -2
  37. package/dist/src/test/utils/helpers.d.ts +10 -0
  38. package/dist/src/types/InputStep.d.ts +1 -1
  39. package/dist/src/types/QuestionnaireProp.d.ts +1 -0
  40. package/dist/src/types/StepId.d.ts +1 -1
  41. package/dist/src/types/TaxDocumentation.d.ts +87 -50
  42. package/dist/src/types/client/ClientTaxDocumentationStatus.d.ts +4 -0
  43. package/dist/src/types/index.d.ts +1 -1
  44. package/dist/src/types/server/TaxDocumentationStatus.d.ts +4 -0
  45. package/dist/src/ui/InputValue/InputValue.d.ts +2 -1
  46. package/dist/src/ui/Select/Select.d.ts +0 -1
  47. package/dist/src/utils/getFieldsState.d.ts +7 -2
  48. package/dist/src/utils/getFormStatus.d.ts +2 -1
  49. package/dist/src/utils/getLanguage.d.ts +2 -2
  50. package/dist/src/utils/index.d.ts +1 -2
  51. package/dist/src/utils/promptKeyMapping/getAddressPromptKeyMap.d.ts +6 -0
  52. package/dist/src/utils/promptKeyMapping/getControllingPersonPromptKeyMap.d.ts +4 -0
  53. package/dist/src/utils/promptKeyMapping/getTaxResidencesPromptKeyMap.d.ts +6 -0
  54. package/dist/src/utils/transformForClient/transformForClient.d.ts +2 -2
  55. package/dist/src/utils/transformForClient/transformForClientAddress.d.ts +4 -32
  56. package/dist/src/utils/transformForClient/transformForClientTaxResidences.d.ts +11 -0
  57. package/dist/src/utils/transformForClient/transformForControllingPersons.d.ts +4 -0
  58. package/dist/src/utils/transformInbound/getActiveNonFinancialEntityType.d.ts +3 -0
  59. package/dist/src/utils/transformInbound/getCountryCode.d.ts +1 -0
  60. package/dist/src/utils/transformInbound/getEntityType.d.ts +3 -0
  61. package/dist/src/utils/transformInbound/getFinancialInstitutionType.d.ts +3 -0
  62. package/dist/src/utils/transformInbound/getForeignAccountType.d.ts +3 -2
  63. package/dist/src/utils/transformInbound/getSelfCertificationAccountType.d.ts +3 -0
  64. package/dist/src/utils/transformInbound/getUsAccountType.d.ts +3 -2
  65. package/dist/src/utils/transformInbound/transformInbound.d.ts +2 -2
  66. package/dist/src/utils/transformInbound/transformInboundAddress.d.ts +6 -0
  67. package/dist/src/utils/transformInbound/transformInboundControllingPersons.d.ts +440 -0
  68. package/dist/src/utils/transformInbound/transformInboundTaxResidencies.d.ts +7 -0
  69. package/dist/src/validations/getSteps.d.ts +2 -2
  70. package/dist/src/validations/index.d.ts +5 -5
  71. package/dist/src/validations/invalidFields/getInvalidAddressFields.d.ts +5 -0
  72. package/dist/src/validations/invalidFields/getInvalidControllingPersonsFields.d.ts +3 -0
  73. package/dist/src/validations/invalidFields/getInvalidFields.d.ts +5 -0
  74. package/dist/src/validations/invalidFields/getInvalidTaxResidencyFields.d.ts +5 -0
  75. package/dist/src/validations/{invalidFieldRules.d.ts → invalidFields/invalidFieldRules.d.ts} +1 -1
  76. package/dist/src/validations/requiredFields/getRequiredAddressFields.d.ts +7 -0
  77. package/dist/src/validations/requiredFields/getRequiredControllingPersonFields.d.ts +4 -0
  78. package/dist/src/validations/requiredFields/getRequiredFields.d.ts +4 -0
  79. package/dist/src/validations/requiredFields/getRequiredTaxResidenceFields.d.ts +7 -0
  80. package/dist/src/validations/supportedFields/__tests__/generateStrings.d.ts +5 -0
  81. package/dist/src/validations/supportedFields/getSupportedAddressFields.d.ts +8 -0
  82. package/dist/src/validations/supportedFields/getSupportedControllingPersonFields.d.ts +7 -0
  83. package/dist/src/validations/supportedFields/getSupportedFields.d.ts +4 -0
  84. package/dist/src/validations/supportedFields/getSupportedTaxResidenceFields.d.ts +8 -0
  85. package/dist/src/validations/supportedFields/getSupportedTreatyClaimFields.d.ts +3 -0
  86. package/dist/src/validations/visibleFields/getVisibleAddressFields.d.ts +5 -0
  87. package/dist/src/validations/visibleFields/getVisibleControllingPersonFields.d.ts +4 -0
  88. package/dist/src/validations/visibleFields/getVisibleFields.d.ts +4 -0
  89. package/dist/src/validations/visibleFields/getVisibleTaxResidenceFields.d.ts +9 -0
  90. package/dist/src/{entry → widgets}/TaxbitQuestionnaire/TaxbitQuestionnaire.d.ts +3 -3
  91. package/dist/src/widgets/TaxbitQuestionnairePersist/TaxbitQuestionnairePersist.d.ts +1 -1
  92. package/dist/src/widgets/TaxbitQuestionnairePersist/useTaxbitPersist.d.ts +2 -2
  93. package/dist/src/wizard/AddressInput/AddressInput.d.ts +1 -1
  94. package/dist/src/wizard/ControllingPersonInput/ControllingPersonInput.d.ts +11 -0
  95. package/dist/src/wizard/ControllingPersonInput/index.d.ts +1 -0
  96. package/dist/src/wizard/LanguageSelector/LanguageSelector.d.ts +2 -2
  97. package/dist/src/wizard/ResidenceInput/ResidenceInput.d.ts +2 -1
  98. package/dist/src/wizard/RowInput/AddressRow/AddressRow.d.ts +1 -1
  99. package/dist/src/wizard/RowInput/PercentInputRow/PercentInputRow.d.ts +9 -0
  100. package/dist/src/wizard/RowInput/PercentInputRow/index.d.ts +1 -0
  101. package/dist/src/wizard/RowInput/SelectRow/SelectRow.d.ts +2 -1
  102. package/dist/src/wizard/RowInput/index.d.ts +1 -0
  103. package/dist/src/wizard/TaxbitQuestionnaireUI/ControllingPersonDetails/ControllingPersonDetails.d.ts +7 -0
  104. package/dist/src/wizard/TaxbitQuestionnaireUI/ControllingPersonDetails/index.d.ts +1 -0
  105. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/AccountHolder/AccountHolderClassificationSummary.d.ts +3 -0
  106. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/AccountHolder/AccountHolderForeignClassificationSummary.d.ts +6 -0
  107. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/AccountHolder/AccountHolderSelfCertificationClassificationSummary.d.ts +6 -0
  108. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/AccountHolder/AccountHolderUsClassificationSummary.d.ts +6 -0
  109. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/ControllingPerson/ControllingPersonRoleInputValue.d.ts +7 -0
  110. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/ControllingPerson/ControllingPersonSummary.d.ts +7 -0
  111. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/ControllingPerson/ControllingPersonTypeSummary.d.ts +7 -0
  112. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/RegardedOwner/RegardedOwnerClassificationSummary.d.ts +3 -0
  113. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/RegardedOwner/RegardedOwnerForeignClassificationSummary.d.ts +6 -0
  114. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/RegardedOwner/RegardedOwnerUsClassificationSummary.d.ts +6 -0
  115. package/dist/src/wizard/TaxbitQuestionnaireUI/Summary/TaxResidency/TaxResidenciesSummary.d.ts +11 -0
  116. package/dist/src/wizard/TaxbitQuestionnaireUI/__tests__/TaxbitQuestionnaireUI.SelfCert.AccountClassification.test.d.ts +1 -0
  117. package/dist/src/wizard/TaxbitQuestionnaireUI/__tests__/TaxbitQuestionnaireUI.SelfCert.ControllingPerson.test.d.ts +1 -0
  118. package/dist/src/wizard/TaxbitQuestionnaireUI/__tests__/TaxbitQuestionnaireUI.SelfCert.NameAndAddress.test.d.ts +1 -0
  119. package/dist/src/wizard/TaxbitQuestionnaireUI/__tests__/TaxbitQuestionnaireUI.SelfCert.Summary.test.d.ts +1 -0
  120. package/dist/src/wizard/TaxbitQuestionnaireUI/__tests__/TaxbitQuestionnaireUI.SelfCert.TaxResidencies.test.d.ts +1 -0
  121. package/dist/src/wizard/TaxbitQuestionnaireUI/steps.d.ts +1 -0
  122. package/dist/taxbit-react-sdk.js +9568 -7323
  123. package/dist/taxbit-react-sdk.umd.cjs +1 -30
  124. package/package.json +12 -11
  125. package/style/basic.css +4 -0
  126. package/style/inline.css +1 -0
  127. package/dist/src/lookups/treatyCountries.json.d.ts +0 -2195
  128. package/dist/src/types/Questionnaire.d.ts +0 -1
  129. package/dist/src/utils/getTreatyCountry.d.ts +0 -38
  130. package/dist/src/utils/transformForClient/transformForClientTaxResidenceFields.d.ts +0 -7
  131. package/dist/src/validations/getInvalidFields.d.ts +0 -5
  132. package/dist/src/validations/getRequiredFields.d.ts +0 -4
  133. package/dist/src/validations/getSupportedFields.d.ts +0 -7
  134. package/dist/src/validations/getVisibleFields.d.ts +0 -4
  135. /package/dist/src/utils/{getPromptKeyMap.d.ts → promptKeyMapping/getPromptKeyMap.d.ts} +0 -0
  136. /package/dist/src/{entry → widgets}/TaxbitQuestionnaire/index.d.ts +0 -0
@@ -1,2195 +0,0 @@
1
- declare const _default: {
2
- "AX": {
3
- "limitationOnBenefits": {
4
- "government": true,
5
- "taxExemptPension": true,
6
- "otherTaxExemptOrganization": true,
7
- "publiclyTradedCorporation": true,
8
- "subsidiary": true,
9
- "companyMeetsErosionTest": true,
10
- "companyMeetsDerivativeTest": false,
11
- "companyMeetsBusinessTest": true,
12
- "favorableDetermination": true,
13
- "noLobArticle": false,
14
- "otherArticleParagraphs": []
15
- },
16
- "services": {
17
- "rate": "0%",
18
- "articleParagraph": "14",
19
- "additionalConditionsRequired": true
20
- },
21
- "royaltiesOther": {
22
- "rate": "0%",
23
- "articleParagraph": "12(1)",
24
- "additionalConditionsRequired": false
25
- },
26
- "businessProfits": {
27
- "rate": "0%",
28
- "articleParagraph": "7(1)",
29
- "additionalConditionsRequired": true
30
- }
31
- },
32
- "AM": {
33
- "limitationOnBenefits": {
34
- "government": false,
35
- "taxExemptPension": false,
36
- "otherTaxExemptOrganization": false,
37
- "publiclyTradedCorporation": false,
38
- "subsidiary": false,
39
- "companyMeetsErosionTest": false,
40
- "companyMeetsDerivativeTest": false,
41
- "companyMeetsBusinessTest": false,
42
- "favorableDetermination": false,
43
- "noLobArticle": true,
44
- "otherArticleParagraphs": []
45
- },
46
- "services": {
47
- "rate": "0%",
48
- "articleParagraph": "VI(2)",
49
- "additionalConditionsRequired": true
50
- },
51
- "royaltiesOther": {
52
- "rate": "0%",
53
- "articleParagraph": "III(1)",
54
- "additionalConditionsRequired": false
55
- },
56
- "businessProfits": {
57
- "rate": "0%",
58
- "articleParagraph": "IV(1)",
59
- "additionalConditionsRequired": true
60
- }
61
- },
62
- "AU": {
63
- "limitationOnBenefits": {
64
- "government": true,
65
- "taxExemptPension": true,
66
- "otherTaxExemptOrganization": true,
67
- "publiclyTradedCorporation": true,
68
- "subsidiary": true,
69
- "companyMeetsErosionTest": true,
70
- "companyMeetsDerivativeTest": false,
71
- "companyMeetsBusinessTest": true,
72
- "favorableDetermination": true,
73
- "noLobArticle": false,
74
- "otherArticleParagraphs": ["16(1)(h)"]
75
- },
76
- "services": {
77
- "rate": "0%",
78
- "articleParagraph": "14",
79
- "additionalConditionsRequired": true
80
- },
81
- "royaltiesOther": {
82
- "rate": "5%",
83
- "articleParagraph": "12(2)",
84
- "additionalConditionsRequired": false
85
- },
86
- "businessProfits": {
87
- "rate": "0%",
88
- "articleParagraph": "7(1)",
89
- "additionalConditionsRequired": true
90
- }
91
- },
92
- "AT": {
93
- "limitationOnBenefits": {
94
- "government": true,
95
- "taxExemptPension": true,
96
- "otherTaxExemptOrganization": true,
97
- "publiclyTradedCorporation": true,
98
- "subsidiary": true,
99
- "companyMeetsErosionTest": true,
100
- "companyMeetsDerivativeTest": false,
101
- "companyMeetsBusinessTest": true,
102
- "favorableDetermination": true,
103
- "noLobArticle": false,
104
- "otherArticleParagraphs": ["16(1)(h)"]
105
- },
106
- "services": {
107
- "rate": "0%",
108
- "articleParagraph": "14",
109
- "additionalConditionsRequired": true
110
- },
111
- "royaltiesOther": {
112
- "rate": "0%",
113
- "articleParagraph": "12(1)",
114
- "additionalConditionsRequired": true
115
- },
116
- "businessProfits": {
117
- "rate": "0%",
118
- "articleParagraph": "7(1)",
119
- "additionalConditionsRequired": true
120
- }
121
- },
122
- "AZ": {
123
- "limitationOnBenefits": {
124
- "government": false,
125
- "taxExemptPension": false,
126
- "otherTaxExemptOrganization": false,
127
- "publiclyTradedCorporation": false,
128
- "subsidiary": false,
129
- "companyMeetsErosionTest": false,
130
- "companyMeetsDerivativeTest": false,
131
- "companyMeetsBusinessTest": false,
132
- "favorableDetermination": false,
133
- "noLobArticle": true,
134
- "otherArticleParagraphs": []
135
- },
136
- "services": {
137
- "rate": "0%",
138
- "articleParagraph": "VI(2)",
139
- "additionalConditionsRequired": true
140
- },
141
- "royaltiesOther": {
142
- "rate": "0%",
143
- "articleParagraph": "III(1)",
144
- "additionalConditionsRequired": false
145
- },
146
- "businessProfits": {
147
- "rate": "0%",
148
- "articleParagraph": "IV(1)",
149
- "additionalConditionsRequired": true
150
- }
151
- },
152
- "BD": {
153
- "limitationOnBenefits": {
154
- "government": true,
155
- "taxExemptPension": true,
156
- "otherTaxExemptOrganization": true,
157
- "publiclyTradedCorporation": true,
158
- "subsidiary": true,
159
- "companyMeetsErosionTest": true,
160
- "companyMeetsDerivativeTest": false,
161
- "companyMeetsBusinessTest": true,
162
- "favorableDetermination": true,
163
- "noLobArticle": false,
164
- "otherArticleParagraphs": []
165
- },
166
- "services": {
167
- "rate": "0%",
168
- "articleParagraph": "15",
169
- "additionalConditionsRequired": true
170
- },
171
- "royaltiesOther": {
172
- "rate": "10%",
173
- "articleParagraph": "12(2)",
174
- "additionalConditionsRequired": false
175
- },
176
- "businessProfits": {
177
- "rate": "0%",
178
- "articleParagraph": "7(1)",
179
- "additionalConditionsRequired": true
180
- }
181
- },
182
- "BB": {
183
- "limitationOnBenefits": {
184
- "government": true,
185
- "taxExemptPension": true,
186
- "otherTaxExemptOrganization": true,
187
- "publiclyTradedCorporation": true,
188
- "subsidiary": true,
189
- "companyMeetsErosionTest": true,
190
- "companyMeetsDerivativeTest": false,
191
- "companyMeetsBusinessTest": true,
192
- "favorableDetermination": true,
193
- "noLobArticle": false,
194
- "otherArticleParagraphs": ["22(6)"]
195
- },
196
- "services": {
197
- "rate": "0%",
198
- "articleParagraph": "14",
199
- "additionalConditionsRequired": true
200
- },
201
- "royaltiesOther": {
202
- "rate": "5%",
203
- "articleParagraph": "12(2)",
204
- "additionalConditionsRequired": false
205
- },
206
- "businessProfits": {
207
- "rate": "0%",
208
- "articleParagraph": "7(1)",
209
- "additionalConditionsRequired": true
210
- }
211
- },
212
- "BY": {
213
- "limitationOnBenefits": {
214
- "government": false,
215
- "taxExemptPension": false,
216
- "otherTaxExemptOrganization": false,
217
- "publiclyTradedCorporation": false,
218
- "subsidiary": false,
219
- "companyMeetsErosionTest": false,
220
- "companyMeetsDerivativeTest": false,
221
- "companyMeetsBusinessTest": false,
222
- "favorableDetermination": false,
223
- "noLobArticle": true,
224
- "otherArticleParagraphs": []
225
- },
226
- "services": {
227
- "rate": "0%",
228
- "articleParagraph": "VI(2)",
229
- "additionalConditionsRequired": true
230
- },
231
- "royaltiesOther": {
232
- "rate": "0%",
233
- "articleParagraph": "III(1)",
234
- "additionalConditionsRequired": false
235
- },
236
- "businessProfits": {
237
- "rate": "0%",
238
- "articleParagraph": "IV(1)",
239
- "additionalConditionsRequired": true
240
- }
241
- },
242
- "BE": {
243
- "limitationOnBenefits": {
244
- "government": true,
245
- "taxExemptPension": true,
246
- "otherTaxExemptOrganization": true,
247
- "publiclyTradedCorporation": true,
248
- "subsidiary": true,
249
- "companyMeetsErosionTest": true,
250
- "companyMeetsDerivativeTest": false,
251
- "companyMeetsBusinessTest": true,
252
- "favorableDetermination": true,
253
- "noLobArticle": false,
254
- "otherArticleParagraphs": ["21(5)"]
255
- },
256
- "services": {
257
- "rate": "0%",
258
- "articleParagraph": "7",
259
- "additionalConditionsRequired": true
260
- },
261
- "royaltiesOther": {
262
- "rate": "0%",
263
- "articleParagraph": "12(1)",
264
- "additionalConditionsRequired": false
265
- },
266
- "businessProfits": {
267
- "rate": "0%",
268
- "articleParagraph": "7(1)",
269
- "additionalConditionsRequired": true
270
- }
271
- },
272
- "BG": {
273
- "limitationOnBenefits": {
274
- "government": true,
275
- "taxExemptPension": true,
276
- "otherTaxExemptOrganization": true,
277
- "publiclyTradedCorporation": true,
278
- "subsidiary": true,
279
- "companyMeetsErosionTest": true,
280
- "companyMeetsDerivativeTest": false,
281
- "companyMeetsBusinessTest": true,
282
- "favorableDetermination": true,
283
- "noLobArticle": false,
284
- "otherArticleParagraphs": []
285
- },
286
- "services": {
287
- "rate": "0%",
288
- "articleParagraph": "7",
289
- "additionalConditionsRequired": true
290
- },
291
- "royaltiesOther": {
292
- "rate": "5%",
293
- "articleParagraph": "12(2)",
294
- "additionalConditionsRequired": false
295
- },
296
- "businessProfits": {
297
- "rate": "0%",
298
- "articleParagraph": "7(1)",
299
- "additionalConditionsRequired": true
300
- }
301
- },
302
- "CA": {
303
- "limitationOnBenefits": {
304
- "government": true,
305
- "taxExemptPension": true,
306
- "otherTaxExemptOrganization": true,
307
- "publiclyTradedCorporation": true,
308
- "subsidiary": true,
309
- "companyMeetsErosionTest": true,
310
- "companyMeetsDerivativeTest": true,
311
- "companyMeetsBusinessTest": true,
312
- "favorableDetermination": true,
313
- "noLobArticle": false,
314
- "otherArticleParagraphs": []
315
- },
316
- "services": {
317
- "rate": "0%",
318
- "articleParagraph": "7(1)",
319
- "additionalConditionsRequired": true
320
- },
321
- "royaltiesOther": {
322
- "rate": "0%",
323
- "articleParagraph": "XII(3)",
324
- "additionalConditionsRequired": true
325
- },
326
- "businessProfits": {
327
- "rate": "0%",
328
- "articleParagraph": "VII(1)",
329
- "additionalConditionsRequired": true
330
- }
331
- },
332
- "CL": {
333
- "limitationOnBenefits": {
334
- "government": true,
335
- "taxExemptPension": true,
336
- "otherTaxExemptOrganization": true,
337
- "publiclyTradedCorporation": true,
338
- "subsidiary": true,
339
- "companyMeetsErosionTest": true,
340
- "companyMeetsDerivativeTest": false,
341
- "companyMeetsBusinessTest": true,
342
- "favorableDetermination": true,
343
- "noLobArticle": false,
344
- "otherArticleParagraphs": []
345
- },
346
- "services": {
347
- "rate": "0%",
348
- "articleParagraph": "7(1)",
349
- "additionalConditionsRequired": true
350
- },
351
- "royaltiesOther": {
352
- "rate": "10%",
353
- "articleParagraph": "12(2)(b)",
354
- "additionalConditionsRequired": true
355
- },
356
- "businessProfits": {
357
- "rate": "0%",
358
- "articleParagraph": "7(1)",
359
- "additionalConditionsRequired": true
360
- }
361
- },
362
- "CN": {
363
- "limitationOnBenefits": {
364
- "government": true,
365
- "taxExemptPension": false,
366
- "otherTaxExemptOrganization": false,
367
- "publiclyTradedCorporation": true,
368
- "subsidiary": true,
369
- "companyMeetsErosionTest": true,
370
- "companyMeetsDerivativeTest": false,
371
- "companyMeetsBusinessTest": false,
372
- "favorableDetermination": true,
373
- "noLobArticle": false,
374
- "otherArticleParagraphs": ["P1(7)", "P2(2)"]
375
- },
376
- "services": {
377
- "rate": "0%",
378
- "articleParagraph": "13",
379
- "additionalConditionsRequired": true
380
- },
381
- "royaltiesOther": {
382
- "rate": "10%",
383
- "articleParagraph": "11(2)",
384
- "additionalConditionsRequired": false
385
- },
386
- "businessProfits": {
387
- "rate": "0%",
388
- "articleParagraph": "7(1)",
389
- "additionalConditionsRequired": true
390
- }
391
- },
392
- "CX": {
393
- "limitationOnBenefits": {
394
- "government": true,
395
- "taxExemptPension": true,
396
- "otherTaxExemptOrganization": true,
397
- "publiclyTradedCorporation": true,
398
- "subsidiary": true,
399
- "companyMeetsErosionTest": true,
400
- "companyMeetsDerivativeTest": false,
401
- "companyMeetsBusinessTest": true,
402
- "favorableDetermination": true,
403
- "noLobArticle": false,
404
- "otherArticleParagraphs": ["16(1)(h)"]
405
- },
406
- "services": {
407
- "rate": "0%",
408
- "articleParagraph": "14",
409
- "additionalConditionsRequired": true
410
- },
411
- "royaltiesOther": {
412
- "rate": "5%",
413
- "articleParagraph": "12(2)",
414
- "additionalConditionsRequired": false
415
- },
416
- "businessProfits": {
417
- "rate": "0%",
418
- "articleParagraph": "7(1)",
419
- "additionalConditionsRequired": true
420
- }
421
- },
422
- "CC": {
423
- "limitationOnBenefits": {
424
- "government": true,
425
- "taxExemptPension": true,
426
- "otherTaxExemptOrganization": true,
427
- "publiclyTradedCorporation": true,
428
- "subsidiary": true,
429
- "companyMeetsErosionTest": true,
430
- "companyMeetsDerivativeTest": false,
431
- "companyMeetsBusinessTest": true,
432
- "favorableDetermination": true,
433
- "noLobArticle": false,
434
- "otherArticleParagraphs": ["16(1)(h)"]
435
- },
436
- "services": {
437
- "rate": "0%",
438
- "articleParagraph": "14",
439
- "additionalConditionsRequired": true
440
- },
441
- "royaltiesOther": {
442
- "rate": "5%",
443
- "articleParagraph": "12(2)",
444
- "additionalConditionsRequired": false
445
- },
446
- "businessProfits": {
447
- "rate": "0%",
448
- "articleParagraph": "7(1)",
449
- "additionalConditionsRequired": true
450
- }
451
- },
452
- "CY": {
453
- "limitationOnBenefits": {
454
- "government": true,
455
- "taxExemptPension": false,
456
- "otherTaxExemptOrganization": false,
457
- "publiclyTradedCorporation": true,
458
- "subsidiary": true,
459
- "companyMeetsErosionTest": true,
460
- "companyMeetsDerivativeTest": false,
461
- "companyMeetsBusinessTest": false,
462
- "favorableDetermination": false,
463
- "noLobArticle": false,
464
- "otherArticleParagraphs": ["26(3)"]
465
- },
466
- "services": {
467
- "rate": "0%",
468
- "articleParagraph": "17",
469
- "additionalConditionsRequired": true
470
- },
471
- "royaltiesOther": {
472
- "rate": "0%",
473
- "articleParagraph": "14(1)",
474
- "additionalConditionsRequired": false
475
- },
476
- "businessProfits": {
477
- "rate": "0%",
478
- "articleParagraph": "8(1)",
479
- "additionalConditionsRequired": true
480
- }
481
- },
482
- "CZ": {
483
- "limitationOnBenefits": {
484
- "government": true,
485
- "taxExemptPension": true,
486
- "otherTaxExemptOrganization": true,
487
- "publiclyTradedCorporation": true,
488
- "subsidiary": true,
489
- "companyMeetsErosionTest": true,
490
- "companyMeetsDerivativeTest": false,
491
- "companyMeetsBusinessTest": true,
492
- "favorableDetermination": true,
493
- "noLobArticle": false,
494
- "otherArticleParagraphs": []
495
- },
496
- "services": {
497
- "rate": "0%",
498
- "articleParagraph": "14",
499
- "additionalConditionsRequired": true
500
- },
501
- "royaltiesOther": {
502
- "rate": "0%",
503
- "articleParagraph": "12(2)",
504
- "additionalConditionsRequired": true
505
- },
506
- "businessProfits": {
507
- "rate": "0%",
508
- "articleParagraph": "7(1)",
509
- "additionalConditionsRequired": true
510
- }
511
- },
512
- "DK": {
513
- "limitationOnBenefits": {
514
- "government": true,
515
- "taxExemptPension": true,
516
- "otherTaxExemptOrganization": true,
517
- "publiclyTradedCorporation": true,
518
- "subsidiary": true,
519
- "companyMeetsErosionTest": true,
520
- "companyMeetsDerivativeTest": false,
521
- "companyMeetsBusinessTest": true,
522
- "favorableDetermination": true,
523
- "noLobArticle": false,
524
- "otherArticleParagraphs": []
525
- },
526
- "services": {
527
- "rate": "0%",
528
- "articleParagraph": "14",
529
- "additionalConditionsRequired": true
530
- },
531
- "royaltiesOther": {
532
- "rate": "0%",
533
- "articleParagraph": "12(1)",
534
- "additionalConditionsRequired": false
535
- },
536
- "businessProfits": {
537
- "rate": "0%",
538
- "articleParagraph": "7(1)",
539
- "additionalConditionsRequired": true
540
- }
541
- },
542
- "EG": {
543
- "limitationOnBenefits": {
544
- "government": false,
545
- "taxExemptPension": false,
546
- "otherTaxExemptOrganization": false,
547
- "publiclyTradedCorporation": false,
548
- "subsidiary": false,
549
- "companyMeetsErosionTest": false,
550
- "companyMeetsDerivativeTest": false,
551
- "companyMeetsBusinessTest": false,
552
- "favorableDetermination": false,
553
- "noLobArticle": true,
554
- "otherArticleParagraphs": []
555
- },
556
- "services": {
557
- "rate": "0%",
558
- "articleParagraph": "15",
559
- "additionalConditionsRequired": true
560
- },
561
- "royaltiesOther": {
562
- "rate": "15%",
563
- "articleParagraph": "13(1)",
564
- "additionalConditionsRequired": true
565
- },
566
- "businessProfits": {
567
- "rate": "0%",
568
- "articleParagraph": "8(1)",
569
- "additionalConditionsRequired": true
570
- }
571
- },
572
- "EE": {
573
- "limitationOnBenefits": {
574
- "government": true,
575
- "taxExemptPension": true,
576
- "otherTaxExemptOrganization": true,
577
- "publiclyTradedCorporation": true,
578
- "subsidiary": true,
579
- "companyMeetsErosionTest": true,
580
- "companyMeetsDerivativeTest": false,
581
- "companyMeetsBusinessTest": true,
582
- "favorableDetermination": true,
583
- "noLobArticle": false,
584
- "otherArticleParagraphs": ["22(2)g"]
585
- },
586
- "services": {
587
- "rate": "0%",
588
- "articleParagraph": "14",
589
- "additionalConditionsRequired": true
590
- },
591
- "royaltiesOther": {
592
- "rate": "10%",
593
- "articleParagraph": "12(2)(b)",
594
- "additionalConditionsRequired": false
595
- },
596
- "businessProfits": {
597
- "rate": "0%",
598
- "articleParagraph": "7(1)",
599
- "additionalConditionsRequired": true
600
- }
601
- },
602
- "FI": {
603
- "limitationOnBenefits": {
604
- "government": true,
605
- "taxExemptPension": true,
606
- "otherTaxExemptOrganization": true,
607
- "publiclyTradedCorporation": true,
608
- "subsidiary": true,
609
- "companyMeetsErosionTest": true,
610
- "companyMeetsDerivativeTest": false,
611
- "companyMeetsBusinessTest": true,
612
- "favorableDetermination": true,
613
- "noLobArticle": false,
614
- "otherArticleParagraphs": []
615
- },
616
- "services": {
617
- "rate": "0%",
618
- "articleParagraph": "14",
619
- "additionalConditionsRequired": true
620
- },
621
- "royaltiesOther": {
622
- "rate": "0%",
623
- "articleParagraph": "12(1)",
624
- "additionalConditionsRequired": false
625
- },
626
- "businessProfits": {
627
- "rate": "0%",
628
- "articleParagraph": "7(1)",
629
- "additionalConditionsRequired": true
630
- }
631
- },
632
- "FR": {
633
- "limitationOnBenefits": {
634
- "government": true,
635
- "taxExemptPension": true,
636
- "otherTaxExemptOrganization": true,
637
- "publiclyTradedCorporation": true,
638
- "subsidiary": true,
639
- "companyMeetsErosionTest": true,
640
- "companyMeetsDerivativeTest": false,
641
- "companyMeetsBusinessTest": true,
642
- "favorableDetermination": true,
643
- "noLobArticle": false,
644
- "otherArticleParagraphs": ["30(3)"]
645
- },
646
- "services": {
647
- "rate": "0%",
648
- "articleParagraph": "14",
649
- "additionalConditionsRequired": true
650
- },
651
- "royaltiesOther": {
652
- "rate": "0%",
653
- "articleParagraph": "12(1)",
654
- "additionalConditionsRequired": false
655
- },
656
- "businessProfits": {
657
- "rate": "0%",
658
- "articleParagraph": "7(1)",
659
- "additionalConditionsRequired": true
660
- }
661
- },
662
- "GF": {
663
- "limitationOnBenefits": {
664
- "government": true,
665
- "taxExemptPension": true,
666
- "otherTaxExemptOrganization": true,
667
- "publiclyTradedCorporation": true,
668
- "subsidiary": true,
669
- "companyMeetsErosionTest": true,
670
- "companyMeetsDerivativeTest": false,
671
- "companyMeetsBusinessTest": true,
672
- "favorableDetermination": true,
673
- "noLobArticle": false,
674
- "otherArticleParagraphs": ["30(3)"]
675
- },
676
- "services": {
677
- "rate": "0%",
678
- "articleParagraph": "14",
679
- "additionalConditionsRequired": true
680
- },
681
- "royaltiesOther": {
682
- "rate": "0%",
683
- "articleParagraph": "12(1)",
684
- "additionalConditionsRequired": false
685
- },
686
- "businessProfits": {
687
- "rate": "0%",
688
- "articleParagraph": "7(1)",
689
- "additionalConditionsRequired": true
690
- }
691
- },
692
- "GE": {
693
- "limitationOnBenefits": {
694
- "government": false,
695
- "taxExemptPension": false,
696
- "otherTaxExemptOrganization": false,
697
- "publiclyTradedCorporation": false,
698
- "subsidiary": false,
699
- "companyMeetsErosionTest": false,
700
- "companyMeetsDerivativeTest": false,
701
- "companyMeetsBusinessTest": false,
702
- "favorableDetermination": false,
703
- "noLobArticle": true,
704
- "otherArticleParagraphs": []
705
- },
706
- "services": {
707
- "rate": "0%",
708
- "articleParagraph": "VI(2)",
709
- "additionalConditionsRequired": true
710
- },
711
- "royaltiesOther": {
712
- "rate": "0%",
713
- "articleParagraph": "III(1)",
714
- "additionalConditionsRequired": false
715
- },
716
- "businessProfits": {
717
- "rate": "0%",
718
- "articleParagraph": "IV(1)",
719
- "additionalConditionsRequired": true
720
- }
721
- },
722
- "DE": {
723
- "limitationOnBenefits": {
724
- "government": true,
725
- "taxExemptPension": true,
726
- "otherTaxExemptOrganization": true,
727
- "publiclyTradedCorporation": true,
728
- "subsidiary": true,
729
- "companyMeetsErosionTest": true,
730
- "companyMeetsDerivativeTest": false,
731
- "companyMeetsBusinessTest": true,
732
- "favorableDetermination": true,
733
- "noLobArticle": false,
734
- "otherArticleParagraphs": ["28(6)"]
735
- },
736
- "services": {
737
- "rate": "0%",
738
- "articleParagraph": "7",
739
- "additionalConditionsRequired": true
740
- },
741
- "royaltiesOther": {
742
- "rate": "0%",
743
- "articleParagraph": "12(1)",
744
- "additionalConditionsRequired": true
745
- },
746
- "businessProfits": {
747
- "rate": "0%",
748
- "articleParagraph": "7(1)",
749
- "additionalConditionsRequired": true
750
- }
751
- },
752
- "GR": {
753
- "limitationOnBenefits": {
754
- "government": false,
755
- "taxExemptPension": false,
756
- "otherTaxExemptOrganization": false,
757
- "publiclyTradedCorporation": false,
758
- "subsidiary": false,
759
- "companyMeetsErosionTest": false,
760
- "companyMeetsDerivativeTest": false,
761
- "companyMeetsBusinessTest": false,
762
- "favorableDetermination": false,
763
- "noLobArticle": true,
764
- "otherArticleParagraphs": []
765
- },
766
- "services": {
767
- "rate": "0%",
768
- "articleParagraph": "X",
769
- "additionalConditionsRequired": true
770
- },
771
- "royaltiesOther": {
772
- "rate": "0%",
773
- "articleParagraph": "VII",
774
- "additionalConditionsRequired": true
775
- },
776
- "businessProfits": {
777
- "rate": "0%",
778
- "articleParagraph": "III(1)",
779
- "additionalConditionsRequired": true
780
- }
781
- },
782
- "GP": {
783
- "limitationOnBenefits": {
784
- "government": true,
785
- "taxExemptPension": true,
786
- "otherTaxExemptOrganization": true,
787
- "publiclyTradedCorporation": true,
788
- "subsidiary": true,
789
- "companyMeetsErosionTest": true,
790
- "companyMeetsDerivativeTest": false,
791
- "companyMeetsBusinessTest": true,
792
- "favorableDetermination": true,
793
- "noLobArticle": false,
794
- "otherArticleParagraphs": ["30(3)"]
795
- },
796
- "services": {
797
- "rate": "0%",
798
- "articleParagraph": "14",
799
- "additionalConditionsRequired": true
800
- },
801
- "royaltiesOther": {
802
- "rate": "0%",
803
- "articleParagraph": "12(1)",
804
- "additionalConditionsRequired": false
805
- },
806
- "businessProfits": {
807
- "rate": "0%",
808
- "articleParagraph": "7(1)",
809
- "additionalConditionsRequired": true
810
- }
811
- },
812
- "IS": {
813
- "limitationOnBenefits": {
814
- "government": true,
815
- "taxExemptPension": true,
816
- "otherTaxExemptOrganization": true,
817
- "publiclyTradedCorporation": true,
818
- "subsidiary": true,
819
- "companyMeetsErosionTest": true,
820
- "companyMeetsDerivativeTest": true,
821
- "companyMeetsBusinessTest": true,
822
- "favorableDetermination": true,
823
- "noLobArticle": false,
824
- "otherArticleParagraphs": ["21(6)"]
825
- },
826
- "services": {
827
- "rate": "0%",
828
- "articleParagraph": "7",
829
- "additionalConditionsRequired": true
830
- },
831
- "royaltiesOther": {
832
- "rate": "0%",
833
- "articleParagraph": "12(1)",
834
- "additionalConditionsRequired": true
835
- },
836
- "businessProfits": {
837
- "rate": "0%",
838
- "articleParagraph": "7(1)",
839
- "additionalConditionsRequired": true
840
- }
841
- },
842
- "IN": {
843
- "limitationOnBenefits": {
844
- "government": true,
845
- "taxExemptPension": false,
846
- "otherTaxExemptOrganization": false,
847
- "publiclyTradedCorporation": true,
848
- "subsidiary": true,
849
- "companyMeetsErosionTest": true,
850
- "companyMeetsDerivativeTest": false,
851
- "companyMeetsBusinessTest": true,
852
- "favorableDetermination": true,
853
- "noLobArticle": false,
854
- "otherArticleParagraphs": []
855
- },
856
- "services": {
857
- "rate": "0%",
858
- "articleParagraph": "15",
859
- "additionalConditionsRequired": true
860
- },
861
- "royaltiesOther": {
862
- "rate": "15%",
863
- "articleParagraph": "12(2)(a)(ii)",
864
- "additionalConditionsRequired": false
865
- },
866
- "businessProfits": {
867
- "rate": "0%",
868
- "articleParagraph": "7(1)",
869
- "additionalConditionsRequired": true
870
- }
871
- },
872
- "ID": {
873
- "limitationOnBenefits": {
874
- "government": true,
875
- "taxExemptPension": false,
876
- "otherTaxExemptOrganization": false,
877
- "publiclyTradedCorporation": true,
878
- "subsidiary": true,
879
- "companyMeetsErosionTest": true,
880
- "companyMeetsDerivativeTest": false,
881
- "companyMeetsBusinessTest": false,
882
- "favorableDetermination": false,
883
- "noLobArticle": false,
884
- "otherArticleParagraphs": []
885
- },
886
- "services": {
887
- "rate": "0%",
888
- "articleParagraph": "15",
889
- "additionalConditionsRequired": true
890
- },
891
- "royaltiesOther": {
892
- "rate": "10%",
893
- "articleParagraph": "13(2)",
894
- "additionalConditionsRequired": false
895
- },
896
- "businessProfits": {
897
- "rate": "0%",
898
- "articleParagraph": "8(1)",
899
- "additionalConditionsRequired": true
900
- }
901
- },
902
- "IE": {
903
- "limitationOnBenefits": {
904
- "government": true,
905
- "taxExemptPension": true,
906
- "otherTaxExemptOrganization": true,
907
- "publiclyTradedCorporation": true,
908
- "subsidiary": true,
909
- "companyMeetsErosionTest": true,
910
- "companyMeetsDerivativeTest": true,
911
- "companyMeetsBusinessTest": true,
912
- "favorableDetermination": true,
913
- "noLobArticle": false,
914
- "otherArticleParagraphs": ["23(4)"]
915
- },
916
- "services": {
917
- "rate": "0%",
918
- "articleParagraph": "14",
919
- "additionalConditionsRequired": true
920
- },
921
- "royaltiesOther": {
922
- "rate": "0%",
923
- "articleParagraph": "12(1)",
924
- "additionalConditionsRequired": false
925
- },
926
- "businessProfits": {
927
- "rate": "0%",
928
- "articleParagraph": "7(1)",
929
- "additionalConditionsRequired": true
930
- }
931
- },
932
- "IL": {
933
- "limitationOnBenefits": {
934
- "government": true,
935
- "taxExemptPension": true,
936
- "otherTaxExemptOrganization": true,
937
- "publiclyTradedCorporation": true,
938
- "subsidiary": true,
939
- "companyMeetsErosionTest": true,
940
- "companyMeetsDerivativeTest": false,
941
- "companyMeetsBusinessTest": true,
942
- "favorableDetermination": true,
943
- "noLobArticle": false,
944
- "otherArticleParagraphs": []
945
- },
946
- "services": {
947
- "rate": "0%",
948
- "articleParagraph": "16",
949
- "additionalConditionsRequired": true
950
- },
951
- "royaltiesOther": {
952
- "rate": "10%",
953
- "articleParagraph": "14(1)(b)",
954
- "additionalConditionsRequired": true
955
- },
956
- "businessProfits": {
957
- "rate": "0%",
958
- "articleParagraph": "8(1)",
959
- "additionalConditionsRequired": true
960
- }
961
- },
962
- "IT": {
963
- "limitationOnBenefits": {
964
- "government": true,
965
- "taxExemptPension": true,
966
- "otherTaxExemptOrganization": true,
967
- "publiclyTradedCorporation": true,
968
- "subsidiary": true,
969
- "companyMeetsErosionTest": true,
970
- "companyMeetsDerivativeTest": false,
971
- "companyMeetsBusinessTest": true,
972
- "favorableDetermination": true,
973
- "noLobArticle": false,
974
- "otherArticleParagraphs": []
975
- },
976
- "services": {
977
- "rate": "0%",
978
- "articleParagraph": "14(1)",
979
- "additionalConditionsRequired": true
980
- },
981
- "royaltiesOther": {
982
- "rate": "0%",
983
- "articleParagraph": "12(3)",
984
- "additionalConditionsRequired": true
985
- },
986
- "businessProfits": {
987
- "rate": "0%",
988
- "articleParagraph": "7(1)",
989
- "additionalConditionsRequired": true
990
- }
991
- },
992
- "JM": {
993
- "limitationOnBenefits": {
994
- "government": true,
995
- "taxExemptPension": false,
996
- "otherTaxExemptOrganization": false,
997
- "publiclyTradedCorporation": true,
998
- "subsidiary": true,
999
- "companyMeetsErosionTest": true,
1000
- "companyMeetsDerivativeTest": true,
1001
- "companyMeetsBusinessTest": true,
1002
- "favorableDetermination": false,
1003
- "noLobArticle": false,
1004
- "otherArticleParagraphs": ["17(2)"]
1005
- },
1006
- "services": {
1007
- "rate": "0%",
1008
- "articleParagraph": "14",
1009
- "additionalConditionsRequired": true
1010
- },
1011
- "royaltiesOther": {
1012
- "rate": "10%",
1013
- "articleParagraph": "12(2)",
1014
- "additionalConditionsRequired": false
1015
- },
1016
- "businessProfits": {
1017
- "rate": "0%",
1018
- "articleParagraph": "7(1)",
1019
- "additionalConditionsRequired": true
1020
- }
1021
- },
1022
- "JP": {
1023
- "limitationOnBenefits": {
1024
- "government": true,
1025
- "taxExemptPension": true,
1026
- "otherTaxExemptOrganization": true,
1027
- "publiclyTradedCorporation": true,
1028
- "subsidiary": true,
1029
- "companyMeetsErosionTest": true,
1030
- "companyMeetsDerivativeTest": false,
1031
- "companyMeetsBusinessTest": true,
1032
- "favorableDetermination": true,
1033
- "noLobArticle": false,
1034
- "otherArticleParagraphs": []
1035
- },
1036
- "services": {
1037
- "rate": "0%",
1038
- "articleParagraph": "7",
1039
- "additionalConditionsRequired": true
1040
- },
1041
- "royaltiesOther": {
1042
- "rate": "0%",
1043
- "articleParagraph": "12(1)",
1044
- "additionalConditionsRequired": false
1045
- },
1046
- "businessProfits": {
1047
- "rate": "0%",
1048
- "articleParagraph": "7(1)",
1049
- "additionalConditionsRequired": true
1050
- }
1051
- },
1052
- "KZ": {
1053
- "limitationOnBenefits": {
1054
- "government": true,
1055
- "taxExemptPension": true,
1056
- "otherTaxExemptOrganization": true,
1057
- "publiclyTradedCorporation": true,
1058
- "subsidiary": true,
1059
- "companyMeetsErosionTest": true,
1060
- "companyMeetsDerivativeTest": false,
1061
- "companyMeetsBusinessTest": true,
1062
- "favorableDetermination": true,
1063
- "noLobArticle": false,
1064
- "otherArticleParagraphs": []
1065
- },
1066
- "services": {
1067
- "rate": "0%",
1068
- "articleParagraph": "14",
1069
- "additionalConditionsRequired": true
1070
- },
1071
- "royaltiesOther": {
1072
- "rate": "10%",
1073
- "articleParagraph": "12(2)",
1074
- "additionalConditionsRequired": false
1075
- },
1076
- "businessProfits": {
1077
- "rate": "0%",
1078
- "articleParagraph": "6(1)",
1079
- "additionalConditionsRequired": true
1080
- }
1081
- },
1082
- "KR": {
1083
- "limitationOnBenefits": {
1084
- "government": false,
1085
- "taxExemptPension": false,
1086
- "otherTaxExemptOrganization": false,
1087
- "publiclyTradedCorporation": false,
1088
- "subsidiary": false,
1089
- "companyMeetsErosionTest": false,
1090
- "companyMeetsDerivativeTest": false,
1091
- "companyMeetsBusinessTest": false,
1092
- "favorableDetermination": false,
1093
- "noLobArticle": true,
1094
- "otherArticleParagraphs": []
1095
- },
1096
- "services": {
1097
- "rate": "0%",
1098
- "articleParagraph": "18",
1099
- "additionalConditionsRequired": true
1100
- },
1101
- "royaltiesOther": {
1102
- "rate": "10%",
1103
- "articleParagraph": "14(2)",
1104
- "additionalConditionsRequired": true
1105
- },
1106
- "businessProfits": {
1107
- "rate": "0%",
1108
- "articleParagraph": "8(1)",
1109
- "additionalConditionsRequired": true
1110
- }
1111
- },
1112
- "KG": {
1113
- "limitationOnBenefits": {
1114
- "government": false,
1115
- "taxExemptPension": false,
1116
- "otherTaxExemptOrganization": false,
1117
- "publiclyTradedCorporation": false,
1118
- "subsidiary": false,
1119
- "companyMeetsErosionTest": false,
1120
- "companyMeetsDerivativeTest": false,
1121
- "companyMeetsBusinessTest": false,
1122
- "favorableDetermination": false,
1123
- "noLobArticle": true,
1124
- "otherArticleParagraphs": []
1125
- },
1126
- "services": {
1127
- "rate": "0%",
1128
- "articleParagraph": "VI(2)",
1129
- "additionalConditionsRequired": true
1130
- },
1131
- "royaltiesOther": {
1132
- "rate": "0%",
1133
- "articleParagraph": "III(1)",
1134
- "additionalConditionsRequired": false
1135
- },
1136
- "businessProfits": {
1137
- "rate": "0%",
1138
- "articleParagraph": "IV(1)",
1139
- "additionalConditionsRequired": true
1140
- }
1141
- },
1142
- "LV": {
1143
- "limitationOnBenefits": {
1144
- "government": true,
1145
- "taxExemptPension": true,
1146
- "otherTaxExemptOrganization": true,
1147
- "publiclyTradedCorporation": true,
1148
- "subsidiary": true,
1149
- "companyMeetsErosionTest": true,
1150
- "companyMeetsDerivativeTest": false,
1151
- "companyMeetsBusinessTest": true,
1152
- "favorableDetermination": true,
1153
- "noLobArticle": false,
1154
- "otherArticleParagraphs": ["23(2)g"]
1155
- },
1156
- "services": {
1157
- "rate": "0%",
1158
- "articleParagraph": "14",
1159
- "additionalConditionsRequired": true
1160
- },
1161
- "royaltiesOther": {
1162
- "rate": "10%",
1163
- "articleParagraph": "12(2)(b)",
1164
- "additionalConditionsRequired": false
1165
- },
1166
- "businessProfits": {
1167
- "rate": "0%",
1168
- "articleParagraph": "7(1)",
1169
- "additionalConditionsRequired": true
1170
- }
1171
- },
1172
- "LT": {
1173
- "limitationOnBenefits": {
1174
- "government": true,
1175
- "taxExemptPension": true,
1176
- "otherTaxExemptOrganization": true,
1177
- "publiclyTradedCorporation": true,
1178
- "subsidiary": true,
1179
- "companyMeetsErosionTest": true,
1180
- "companyMeetsDerivativeTest": false,
1181
- "companyMeetsBusinessTest": true,
1182
- "favorableDetermination": true,
1183
- "noLobArticle": false,
1184
- "otherArticleParagraphs": ["23(2)g"]
1185
- },
1186
- "services": {
1187
- "rate": "0%",
1188
- "articleParagraph": "14",
1189
- "additionalConditionsRequired": true
1190
- },
1191
- "royaltiesOther": {
1192
- "rate": "10%",
1193
- "articleParagraph": "12(2)(b)",
1194
- "additionalConditionsRequired": false
1195
- },
1196
- "businessProfits": {
1197
- "rate": "0%",
1198
- "articleParagraph": "7(1)",
1199
- "additionalConditionsRequired": true
1200
- }
1201
- },
1202
- "LU": {
1203
- "limitationOnBenefits": {
1204
- "government": true,
1205
- "taxExemptPension": true,
1206
- "otherTaxExemptOrganization": true,
1207
- "publiclyTradedCorporation": true,
1208
- "subsidiary": true,
1209
- "companyMeetsErosionTest": true,
1210
- "companyMeetsDerivativeTest": true,
1211
- "companyMeetsBusinessTest": true,
1212
- "favorableDetermination": true,
1213
- "noLobArticle": false,
1214
- "otherArticleParagraphs": ["24(6)"]
1215
- },
1216
- "services": {
1217
- "rate": "0%",
1218
- "articleParagraph": "15",
1219
- "additionalConditionsRequired": true
1220
- },
1221
- "royaltiesOther": {
1222
- "rate": "0%",
1223
- "articleParagraph": "13(1)",
1224
- "additionalConditionsRequired": false
1225
- },
1226
- "businessProfits": {
1227
- "rate": "0%",
1228
- "articleParagraph": "7(1)",
1229
- "additionalConditionsRequired": true
1230
- }
1231
- },
1232
- "MT": {
1233
- "limitationOnBenefits": {
1234
- "government": true,
1235
- "taxExemptPension": true,
1236
- "otherTaxExemptOrganization": true,
1237
- "publiclyTradedCorporation": true,
1238
- "subsidiary": true,
1239
- "companyMeetsErosionTest": true,
1240
- "companyMeetsDerivativeTest": false,
1241
- "companyMeetsBusinessTest": true,
1242
- "favorableDetermination": true,
1243
- "noLobArticle": false,
1244
- "otherArticleParagraphs": ["22(7)"]
1245
- },
1246
- "services": {
1247
- "rate": "0%",
1248
- "articleParagraph": "7",
1249
- "additionalConditionsRequired": true
1250
- },
1251
- "royaltiesOther": {
1252
- "rate": "10%",
1253
- "articleParagraph": "12(2)",
1254
- "additionalConditionsRequired": false
1255
- },
1256
- "businessProfits": {
1257
- "rate": "0%",
1258
- "articleParagraph": "7(1)",
1259
- "additionalConditionsRequired": true
1260
- }
1261
- },
1262
- "MQ": {
1263
- "limitationOnBenefits": {
1264
- "government": true,
1265
- "taxExemptPension": true,
1266
- "otherTaxExemptOrganization": true,
1267
- "publiclyTradedCorporation": true,
1268
- "subsidiary": true,
1269
- "companyMeetsErosionTest": true,
1270
- "companyMeetsDerivativeTest": false,
1271
- "companyMeetsBusinessTest": true,
1272
- "favorableDetermination": true,
1273
- "noLobArticle": false,
1274
- "otherArticleParagraphs": ["30(3)"]
1275
- },
1276
- "services": {
1277
- "rate": "0%",
1278
- "articleParagraph": "14",
1279
- "additionalConditionsRequired": true
1280
- },
1281
- "royaltiesOther": {
1282
- "rate": "0%",
1283
- "articleParagraph": "12(1)",
1284
- "additionalConditionsRequired": false
1285
- },
1286
- "businessProfits": {
1287
- "rate": "0%",
1288
- "articleParagraph": "7(1)",
1289
- "additionalConditionsRequired": true
1290
- }
1291
- },
1292
- "MX": {
1293
- "limitationOnBenefits": {
1294
- "government": true,
1295
- "taxExemptPension": true,
1296
- "otherTaxExemptOrganization": true,
1297
- "publiclyTradedCorporation": true,
1298
- "subsidiary": true,
1299
- "companyMeetsErosionTest": true,
1300
- "companyMeetsDerivativeTest": true,
1301
- "companyMeetsBusinessTest": true,
1302
- "favorableDetermination": true,
1303
- "noLobArticle": false,
1304
- "otherArticleParagraphs": []
1305
- },
1306
- "services": {
1307
- "rate": "0%",
1308
- "articleParagraph": "14",
1309
- "additionalConditionsRequired": true
1310
- },
1311
- "royaltiesOther": {
1312
- "rate": "10%",
1313
- "articleParagraph": "12(2)",
1314
- "additionalConditionsRequired": false
1315
- },
1316
- "businessProfits": {
1317
- "rate": "0%",
1318
- "articleParagraph": "7(1)",
1319
- "additionalConditionsRequired": true
1320
- }
1321
- },
1322
- "MD": {
1323
- "limitationOnBenefits": {
1324
- "government": false,
1325
- "taxExemptPension": false,
1326
- "otherTaxExemptOrganization": false,
1327
- "publiclyTradedCorporation": false,
1328
- "subsidiary": false,
1329
- "companyMeetsErosionTest": false,
1330
- "companyMeetsDerivativeTest": false,
1331
- "companyMeetsBusinessTest": false,
1332
- "favorableDetermination": false,
1333
- "noLobArticle": true,
1334
- "otherArticleParagraphs": []
1335
- },
1336
- "services": {
1337
- "rate": "0%",
1338
- "articleParagraph": "VI(2)",
1339
- "additionalConditionsRequired": true
1340
- },
1341
- "royaltiesOther": {
1342
- "rate": "0%",
1343
- "articleParagraph": "III(1)",
1344
- "additionalConditionsRequired": false
1345
- },
1346
- "businessProfits": {
1347
- "rate": "0%",
1348
- "articleParagraph": "IV(1)",
1349
- "additionalConditionsRequired": true
1350
- }
1351
- },
1352
- "MA": {
1353
- "limitationOnBenefits": {
1354
- "government": false,
1355
- "taxExemptPension": false,
1356
- "otherTaxExemptOrganization": false,
1357
- "publiclyTradedCorporation": false,
1358
- "subsidiary": false,
1359
- "companyMeetsErosionTest": false,
1360
- "companyMeetsDerivativeTest": false,
1361
- "companyMeetsBusinessTest": false,
1362
- "favorableDetermination": false,
1363
- "noLobArticle": true,
1364
- "otherArticleParagraphs": []
1365
- },
1366
- "services": {
1367
- "rate": "0%",
1368
- "articleParagraph": "14",
1369
- "additionalConditionsRequired": true
1370
- },
1371
- "royaltiesOther": {
1372
- "rate": "10%",
1373
- "articleParagraph": "12(2)",
1374
- "additionalConditionsRequired": false
1375
- },
1376
- "businessProfits": {
1377
- "rate": "0%",
1378
- "articleParagraph": "7(1)",
1379
- "additionalConditionsRequired": true
1380
- }
1381
- },
1382
- "NL": {
1383
- "limitationOnBenefits": {
1384
- "government": true,
1385
- "taxExemptPension": true,
1386
- "otherTaxExemptOrganization": true,
1387
- "publiclyTradedCorporation": true,
1388
- "subsidiary": true,
1389
- "companyMeetsErosionTest": true,
1390
- "companyMeetsDerivativeTest": false,
1391
- "companyMeetsBusinessTest": true,
1392
- "favorableDetermination": true,
1393
- "noLobArticle": false,
1394
- "otherArticleParagraphs": ["26(5)", "26(6)"]
1395
- },
1396
- "services": {
1397
- "rate": "0%",
1398
- "articleParagraph": "15",
1399
- "additionalConditionsRequired": true
1400
- },
1401
- "royaltiesOther": {
1402
- "rate": "0%",
1403
- "articleParagraph": "13(1)",
1404
- "additionalConditionsRequired": true
1405
- },
1406
- "businessProfits": {
1407
- "rate": "0%",
1408
- "articleParagraph": "7(1)",
1409
- "additionalConditionsRequired": true
1410
- }
1411
- },
1412
- "NZ": {
1413
- "limitationOnBenefits": {
1414
- "government": true,
1415
- "taxExemptPension": false,
1416
- "otherTaxExemptOrganization": false,
1417
- "publiclyTradedCorporation": true,
1418
- "subsidiary": true,
1419
- "companyMeetsErosionTest": true,
1420
- "companyMeetsDerivativeTest": false,
1421
- "companyMeetsBusinessTest": false,
1422
- "favorableDetermination": false,
1423
- "noLobArticle": false,
1424
- "otherArticleParagraphs": ["16(4)"]
1425
- },
1426
- "services": {
1427
- "rate": "0%",
1428
- "articleParagraph": "7",
1429
- "additionalConditionsRequired": true
1430
- },
1431
- "royaltiesOther": {
1432
- "rate": "5%",
1433
- "articleParagraph": "12(2)",
1434
- "additionalConditionsRequired": false
1435
- },
1436
- "businessProfits": {
1437
- "rate": "0%",
1438
- "articleParagraph": "7(1)",
1439
- "additionalConditionsRequired": true
1440
- }
1441
- },
1442
- "NF": {
1443
- "limitationOnBenefits": {
1444
- "government": true,
1445
- "taxExemptPension": true,
1446
- "otherTaxExemptOrganization": true,
1447
- "publiclyTradedCorporation": true,
1448
- "subsidiary": true,
1449
- "companyMeetsErosionTest": true,
1450
- "companyMeetsDerivativeTest": false,
1451
- "companyMeetsBusinessTest": true,
1452
- "favorableDetermination": true,
1453
- "noLobArticle": false,
1454
- "otherArticleParagraphs": ["16(1)(h)"]
1455
- },
1456
- "services": {
1457
- "rate": "0%",
1458
- "articleParagraph": "14",
1459
- "additionalConditionsRequired": true
1460
- },
1461
- "royaltiesOther": {
1462
- "rate": "5%",
1463
- "articleParagraph": "12(2)",
1464
- "additionalConditionsRequired": false
1465
- },
1466
- "businessProfits": {
1467
- "rate": "0%",
1468
- "articleParagraph": "7(1)",
1469
- "additionalConditionsRequired": true
1470
- }
1471
- },
1472
- "NO": {
1473
- "limitationOnBenefits": {
1474
- "government": false,
1475
- "taxExemptPension": false,
1476
- "otherTaxExemptOrganization": false,
1477
- "publiclyTradedCorporation": false,
1478
- "subsidiary": false,
1479
- "companyMeetsErosionTest": false,
1480
- "companyMeetsDerivativeTest": false,
1481
- "companyMeetsBusinessTest": false,
1482
- "favorableDetermination": false,
1483
- "noLobArticle": true,
1484
- "otherArticleParagraphs": []
1485
- },
1486
- "services": {
1487
- "rate": "0%",
1488
- "articleParagraph": "13",
1489
- "additionalConditionsRequired": true
1490
- },
1491
- "royaltiesOther": {
1492
- "rate": "0%",
1493
- "articleParagraph": "10(1)",
1494
- "additionalConditionsRequired": true
1495
- },
1496
- "businessProfits": {
1497
- "rate": "0%",
1498
- "articleParagraph": "5(1)",
1499
- "additionalConditionsRequired": true
1500
- }
1501
- },
1502
- "PK": {
1503
- "limitationOnBenefits": {
1504
- "government": false,
1505
- "taxExemptPension": false,
1506
- "otherTaxExemptOrganization": false,
1507
- "publiclyTradedCorporation": false,
1508
- "subsidiary": false,
1509
- "companyMeetsErosionTest": false,
1510
- "companyMeetsDerivativeTest": false,
1511
- "companyMeetsBusinessTest": false,
1512
- "favorableDetermination": false,
1513
- "noLobArticle": true,
1514
- "otherArticleParagraphs": []
1515
- },
1516
- "services": {
1517
- "rate": "0%",
1518
- "articleParagraph": "XI",
1519
- "additionalConditionsRequired": true
1520
- },
1521
- "royaltiesOther": {
1522
- "rate": "0%",
1523
- "articleParagraph": "VIII(1)",
1524
- "additionalConditionsRequired": true
1525
- },
1526
- "businessProfits": {
1527
- "rate": "0%",
1528
- "articleParagraph": "3(2)",
1529
- "additionalConditionsRequired": true
1530
- }
1531
- },
1532
- "PH": {
1533
- "limitationOnBenefits": {
1534
- "government": false,
1535
- "taxExemptPension": false,
1536
- "otherTaxExemptOrganization": false,
1537
- "publiclyTradedCorporation": false,
1538
- "subsidiary": false,
1539
- "companyMeetsErosionTest": false,
1540
- "companyMeetsDerivativeTest": false,
1541
- "companyMeetsBusinessTest": false,
1542
- "favorableDetermination": false,
1543
- "noLobArticle": true,
1544
- "otherArticleParagraphs": []
1545
- },
1546
- "services": {
1547
- "rate": "0%",
1548
- "articleParagraph": "15",
1549
- "additionalConditionsRequired": true
1550
- },
1551
- "royaltiesOther": {
1552
- "rate": "15%",
1553
- "articleParagraph": "13(2)(a)",
1554
- "additionalConditionsRequired": false
1555
- },
1556
- "businessProfits": {
1557
- "rate": "0%",
1558
- "articleParagraph": "8(1)",
1559
- "additionalConditionsRequired": true
1560
- }
1561
- },
1562
- "PL": {
1563
- "limitationOnBenefits": {
1564
- "government": false,
1565
- "taxExemptPension": false,
1566
- "otherTaxExemptOrganization": false,
1567
- "publiclyTradedCorporation": false,
1568
- "subsidiary": false,
1569
- "companyMeetsErosionTest": false,
1570
- "companyMeetsDerivativeTest": false,
1571
- "companyMeetsBusinessTest": false,
1572
- "favorableDetermination": false,
1573
- "noLobArticle": true,
1574
- "otherArticleParagraphs": []
1575
- },
1576
- "services": {
1577
- "rate": "0%",
1578
- "articleParagraph": "15",
1579
- "additionalConditionsRequired": true
1580
- },
1581
- "royaltiesOther": {
1582
- "rate": "10%",
1583
- "articleParagraph": "13(2)",
1584
- "additionalConditionsRequired": false
1585
- },
1586
- "businessProfits": {
1587
- "rate": "0%",
1588
- "articleParagraph": "8(1)",
1589
- "additionalConditionsRequired": true
1590
- }
1591
- },
1592
- "PT": {
1593
- "limitationOnBenefits": {
1594
- "government": true,
1595
- "taxExemptPension": true,
1596
- "otherTaxExemptOrganization": true,
1597
- "publiclyTradedCorporation": true,
1598
- "subsidiary": true,
1599
- "companyMeetsErosionTest": true,
1600
- "companyMeetsDerivativeTest": false,
1601
- "companyMeetsBusinessTest": true,
1602
- "favorableDetermination": true,
1603
- "noLobArticle": false,
1604
- "otherArticleParagraphs": ["17(6)"]
1605
- },
1606
- "services": {
1607
- "rate": "0%",
1608
- "articleParagraph": "15",
1609
- "additionalConditionsRequired": true
1610
- },
1611
- "royaltiesOther": {
1612
- "rate": "10%",
1613
- "articleParagraph": "13(2)",
1614
- "additionalConditionsRequired": false
1615
- },
1616
- "businessProfits": {
1617
- "rate": "0%",
1618
- "articleParagraph": "7(1)",
1619
- "additionalConditionsRequired": true
1620
- }
1621
- },
1622
- "RE": {
1623
- "limitationOnBenefits": {
1624
- "government": true,
1625
- "taxExemptPension": true,
1626
- "otherTaxExemptOrganization": true,
1627
- "publiclyTradedCorporation": true,
1628
- "subsidiary": true,
1629
- "companyMeetsErosionTest": true,
1630
- "companyMeetsDerivativeTest": false,
1631
- "companyMeetsBusinessTest": true,
1632
- "favorableDetermination": true,
1633
- "noLobArticle": false,
1634
- "otherArticleParagraphs": ["30(3)"]
1635
- },
1636
- "services": {
1637
- "rate": "0%",
1638
- "articleParagraph": "14",
1639
- "additionalConditionsRequired": true
1640
- },
1641
- "royaltiesOther": {
1642
- "rate": "0%",
1643
- "articleParagraph": "12(1)",
1644
- "additionalConditionsRequired": false
1645
- },
1646
- "businessProfits": {
1647
- "rate": "0%",
1648
- "articleParagraph": "7(1)",
1649
- "additionalConditionsRequired": true
1650
- }
1651
- },
1652
- "RO": {
1653
- "limitationOnBenefits": {
1654
- "government": false,
1655
- "taxExemptPension": false,
1656
- "otherTaxExemptOrganization": false,
1657
- "publiclyTradedCorporation": false,
1658
- "subsidiary": false,
1659
- "companyMeetsErosionTest": false,
1660
- "companyMeetsDerivativeTest": false,
1661
- "companyMeetsBusinessTest": false,
1662
- "favorableDetermination": false,
1663
- "noLobArticle": true,
1664
- "otherArticleParagraphs": []
1665
- },
1666
- "services": {
1667
- "rate": "0%",
1668
- "articleParagraph": "14",
1669
- "additionalConditionsRequired": true
1670
- },
1671
- "royaltiesOther": {
1672
- "rate": "10%",
1673
- "articleParagraph": "12(2)",
1674
- "additionalConditionsRequired": true
1675
- },
1676
- "businessProfits": {
1677
- "rate": "0%",
1678
- "articleParagraph": "7(1)",
1679
- "additionalConditionsRequired": true
1680
- }
1681
- },
1682
- "SK": {
1683
- "limitationOnBenefits": {
1684
- "government": true,
1685
- "taxExemptPension": true,
1686
- "otherTaxExemptOrganization": true,
1687
- "publiclyTradedCorporation": true,
1688
- "subsidiary": true,
1689
- "companyMeetsErosionTest": true,
1690
- "companyMeetsDerivativeTest": false,
1691
- "companyMeetsBusinessTest": true,
1692
- "favorableDetermination": true,
1693
- "noLobArticle": false,
1694
- "otherArticleParagraphs": []
1695
- },
1696
- "services": {
1697
- "rate": "0%",
1698
- "articleParagraph": "14",
1699
- "additionalConditionsRequired": true
1700
- },
1701
- "royaltiesOther": {
1702
- "rate": "0%",
1703
- "articleParagraph": "12(2)",
1704
- "additionalConditionsRequired": true
1705
- },
1706
- "businessProfits": {
1707
- "rate": "0%",
1708
- "articleParagraph": "7(1)",
1709
- "additionalConditionsRequired": true
1710
- }
1711
- },
1712
- "SI": {
1713
- "limitationOnBenefits": {
1714
- "government": true,
1715
- "taxExemptPension": true,
1716
- "otherTaxExemptOrganization": true,
1717
- "publiclyTradedCorporation": true,
1718
- "subsidiary": true,
1719
- "companyMeetsErosionTest": true,
1720
- "companyMeetsDerivativeTest": false,
1721
- "companyMeetsBusinessTest": true,
1722
- "favorableDetermination": true,
1723
- "noLobArticle": false,
1724
- "otherArticleParagraphs": []
1725
- },
1726
- "services": {
1727
- "rate": "0%",
1728
- "articleParagraph": "14",
1729
- "additionalConditionsRequired": true
1730
- },
1731
- "royaltiesOther": {
1732
- "rate": "5%",
1733
- "articleParagraph": "12(2)",
1734
- "additionalConditionsRequired": false
1735
- },
1736
- "businessProfits": {
1737
- "rate": "0%",
1738
- "articleParagraph": "7(1)",
1739
- "additionalConditionsRequired": true
1740
- }
1741
- },
1742
- "ZA": {
1743
- "limitationOnBenefits": {
1744
- "government": true,
1745
- "taxExemptPension": true,
1746
- "otherTaxExemptOrganization": true,
1747
- "publiclyTradedCorporation": true,
1748
- "subsidiary": true,
1749
- "companyMeetsErosionTest": true,
1750
- "companyMeetsDerivativeTest": false,
1751
- "companyMeetsBusinessTest": true,
1752
- "favorableDetermination": true,
1753
- "noLobArticle": false,
1754
- "otherArticleParagraphs": []
1755
- },
1756
- "services": {
1757
- "rate": "0%",
1758
- "articleParagraph": "14",
1759
- "additionalConditionsRequired": true
1760
- },
1761
- "royaltiesOther": {
1762
- "rate": "0%",
1763
- "articleParagraph": "12(1)",
1764
- "additionalConditionsRequired": false
1765
- },
1766
- "businessProfits": {
1767
- "rate": "0%",
1768
- "articleParagraph": "7(1)",
1769
- "additionalConditionsRequired": true
1770
- }
1771
- },
1772
- "ES": {
1773
- "limitationOnBenefits": {
1774
- "government": true,
1775
- "taxExemptPension": true,
1776
- "otherTaxExemptOrganization": true,
1777
- "publiclyTradedCorporation": true,
1778
- "subsidiary": true,
1779
- "companyMeetsErosionTest": true,
1780
- "companyMeetsDerivativeTest": false,
1781
- "companyMeetsBusinessTest": true,
1782
- "favorableDetermination": true,
1783
- "noLobArticle": false,
1784
- "otherArticleParagraphs": []
1785
- },
1786
- "services": {
1787
- "rate": "0%",
1788
- "articleParagraph": "15",
1789
- "additionalConditionsRequired": true
1790
- },
1791
- "royaltiesOther": {
1792
- "rate": "0%",
1793
- "articleParagraph": "12(2)",
1794
- "additionalConditionsRequired": false
1795
- },
1796
- "businessProfits": {
1797
- "rate": "0%",
1798
- "articleParagraph": "7(1)",
1799
- "additionalConditionsRequired": true
1800
- }
1801
- },
1802
- "LK": {
1803
- "limitationOnBenefits": {
1804
- "government": true,
1805
- "taxExemptPension": true,
1806
- "otherTaxExemptOrganization": true,
1807
- "publiclyTradedCorporation": true,
1808
- "subsidiary": true,
1809
- "companyMeetsErosionTest": true,
1810
- "companyMeetsDerivativeTest": false,
1811
- "companyMeetsBusinessTest": true,
1812
- "favorableDetermination": true,
1813
- "noLobArticle": false,
1814
- "otherArticleParagraphs": []
1815
- },
1816
- "services": {
1817
- "rate": "0%",
1818
- "articleParagraph": "15",
1819
- "additionalConditionsRequired": true
1820
- },
1821
- "royaltiesOther": {
1822
- "rate": "10%",
1823
- "articleParagraph": "12(2)",
1824
- "additionalConditionsRequired": false
1825
- },
1826
- "businessProfits": {
1827
- "rate": "0%",
1828
- "articleParagraph": "7(1)",
1829
- "additionalConditionsRequired": true
1830
- }
1831
- },
1832
- "SE": {
1833
- "limitationOnBenefits": {
1834
- "government": true,
1835
- "taxExemptPension": true,
1836
- "otherTaxExemptOrganization": true,
1837
- "publiclyTradedCorporation": true,
1838
- "subsidiary": true,
1839
- "companyMeetsErosionTest": true,
1840
- "companyMeetsDerivativeTest": false,
1841
- "companyMeetsBusinessTest": true,
1842
- "favorableDetermination": true,
1843
- "noLobArticle": false,
1844
- "otherArticleParagraphs": []
1845
- },
1846
- "services": {
1847
- "rate": "0%",
1848
- "articleParagraph": "14",
1849
- "additionalConditionsRequired": true
1850
- },
1851
- "royaltiesOther": {
1852
- "rate": "0%",
1853
- "articleParagraph": "12(1)",
1854
- "additionalConditionsRequired": false
1855
- },
1856
- "businessProfits": {
1857
- "rate": "0%",
1858
- "articleParagraph": "7(1)",
1859
- "additionalConditionsRequired": true
1860
- }
1861
- },
1862
- "CH": {
1863
- "limitationOnBenefits": {
1864
- "government": true,
1865
- "taxExemptPension": true,
1866
- "otherTaxExemptOrganization": true,
1867
- "publiclyTradedCorporation": true,
1868
- "subsidiary": true,
1869
- "companyMeetsErosionTest": false,
1870
- "companyMeetsDerivativeTest": true,
1871
- "companyMeetsBusinessTest": true,
1872
- "favorableDetermination": true,
1873
- "noLobArticle": false,
1874
- "otherArticleParagraphs": ["22(1)(d)", "22(1)(f)", "22(1)(g)"]
1875
- },
1876
- "services": {
1877
- "rate": "0%",
1878
- "articleParagraph": "14",
1879
- "additionalConditionsRequired": true
1880
- },
1881
- "royaltiesOther": {
1882
- "rate": "0%",
1883
- "articleParagraph": "12(1)",
1884
- "additionalConditionsRequired": true
1885
- },
1886
- "businessProfits": {
1887
- "rate": "0%",
1888
- "articleParagraph": "7(1)",
1889
- "additionalConditionsRequired": true
1890
- }
1891
- },
1892
- "TJ": {
1893
- "limitationOnBenefits": {
1894
- "government": false,
1895
- "taxExemptPension": false,
1896
- "otherTaxExemptOrganization": false,
1897
- "publiclyTradedCorporation": false,
1898
- "subsidiary": false,
1899
- "companyMeetsErosionTest": false,
1900
- "companyMeetsDerivativeTest": false,
1901
- "companyMeetsBusinessTest": false,
1902
- "favorableDetermination": false,
1903
- "noLobArticle": true,
1904
- "otherArticleParagraphs": []
1905
- },
1906
- "services": {
1907
- "rate": "0%",
1908
- "articleParagraph": "VI(2)",
1909
- "additionalConditionsRequired": true
1910
- },
1911
- "royaltiesOther": {
1912
- "rate": "0%",
1913
- "articleParagraph": "III(1)",
1914
- "additionalConditionsRequired": false
1915
- },
1916
- "businessProfits": {
1917
- "rate": "0%",
1918
- "articleParagraph": "IV(1)",
1919
- "additionalConditionsRequired": true
1920
- }
1921
- },
1922
- "TH": {
1923
- "limitationOnBenefits": {
1924
- "government": true,
1925
- "taxExemptPension": true,
1926
- "otherTaxExemptOrganization": true,
1927
- "publiclyTradedCorporation": true,
1928
- "subsidiary": true,
1929
- "companyMeetsErosionTest": true,
1930
- "companyMeetsDerivativeTest": false,
1931
- "companyMeetsBusinessTest": true,
1932
- "favorableDetermination": true,
1933
- "noLobArticle": false,
1934
- "otherArticleParagraphs": ["18(3)", "18(6)"]
1935
- },
1936
- "services": {
1937
- "rate": "0%",
1938
- "articleParagraph": "15",
1939
- "additionalConditionsRequired": true
1940
- },
1941
- "royaltiesOther": {
1942
- "rate": "5%",
1943
- "articleParagraph": "12(2)(a)",
1944
- "additionalConditionsRequired": true
1945
- },
1946
- "businessProfits": {
1947
- "rate": "0%",
1948
- "articleParagraph": "7(1)",
1949
- "additionalConditionsRequired": true
1950
- }
1951
- },
1952
- "TT": {
1953
- "limitationOnBenefits": {
1954
- "government": false,
1955
- "taxExemptPension": false,
1956
- "otherTaxExemptOrganization": false,
1957
- "publiclyTradedCorporation": false,
1958
- "subsidiary": false,
1959
- "companyMeetsErosionTest": false,
1960
- "companyMeetsDerivativeTest": false,
1961
- "companyMeetsBusinessTest": false,
1962
- "favorableDetermination": false,
1963
- "noLobArticle": true,
1964
- "otherArticleParagraphs": []
1965
- },
1966
- "services": {
1967
- "rate": "0%",
1968
- "articleParagraph": "17",
1969
- "additionalConditionsRequired": true
1970
- },
1971
- "royaltiesOther": {
1972
- "rate": "0%",
1973
- "articleParagraph": "14(2)",
1974
- "additionalConditionsRequired": true
1975
- },
1976
- "businessProfits": {
1977
- "rate": "0%",
1978
- "articleParagraph": "8(1)",
1979
- "additionalConditionsRequired": true
1980
- }
1981
- },
1982
- "TN": {
1983
- "limitationOnBenefits": {
1984
- "government": true,
1985
- "taxExemptPension": false,
1986
- "otherTaxExemptOrganization": false,
1987
- "publiclyTradedCorporation": true,
1988
- "subsidiary": true,
1989
- "companyMeetsErosionTest": true,
1990
- "companyMeetsDerivativeTest": false,
1991
- "companyMeetsBusinessTest": true,
1992
- "favorableDetermination": true,
1993
- "noLobArticle": false,
1994
- "otherArticleParagraphs": []
1995
- },
1996
- "services": {
1997
- "rate": "0%",
1998
- "articleParagraph": "14",
1999
- "additionalConditionsRequired": true
2000
- },
2001
- "royaltiesOther": {
2002
- "rate": "15%",
2003
- "articleParagraph": "12(2)",
2004
- "additionalConditionsRequired": false
2005
- },
2006
- "businessProfits": {
2007
- "rate": "0%",
2008
- "articleParagraph": "7(1)",
2009
- "additionalConditionsRequired": true
2010
- }
2011
- },
2012
- "TR": {
2013
- "limitationOnBenefits": {
2014
- "government": true,
2015
- "taxExemptPension": true,
2016
- "otherTaxExemptOrganization": true,
2017
- "publiclyTradedCorporation": true,
2018
- "subsidiary": true,
2019
- "companyMeetsErosionTest": true,
2020
- "companyMeetsDerivativeTest": false,
2021
- "companyMeetsBusinessTest": true,
2022
- "favorableDetermination": true,
2023
- "noLobArticle": false,
2024
- "otherArticleParagraphs": []
2025
- },
2026
- "services": {
2027
- "rate": "0%",
2028
- "articleParagraph": "14",
2029
- "additionalConditionsRequired": true
2030
- },
2031
- "royaltiesOther": {
2032
- "rate": "10%",
2033
- "articleParagraph": "12(2)",
2034
- "additionalConditionsRequired": false
2035
- },
2036
- "businessProfits": {
2037
- "rate": "0%",
2038
- "articleParagraph": "7(1)",
2039
- "additionalConditionsRequired": true
2040
- }
2041
- },
2042
- "TM": {
2043
- "limitationOnBenefits": {
2044
- "government": false,
2045
- "taxExemptPension": false,
2046
- "otherTaxExemptOrganization": false,
2047
- "publiclyTradedCorporation": false,
2048
- "subsidiary": false,
2049
- "companyMeetsErosionTest": false,
2050
- "companyMeetsDerivativeTest": false,
2051
- "companyMeetsBusinessTest": false,
2052
- "favorableDetermination": false,
2053
- "noLobArticle": true,
2054
- "otherArticleParagraphs": []
2055
- },
2056
- "services": {
2057
- "rate": "0%",
2058
- "articleParagraph": "VI(2)",
2059
- "additionalConditionsRequired": true
2060
- },
2061
- "royaltiesOther": {
2062
- "rate": "0%",
2063
- "articleParagraph": "III(1)",
2064
- "additionalConditionsRequired": false
2065
- },
2066
- "businessProfits": {
2067
- "rate": "0%",
2068
- "articleParagraph": "IV(1)",
2069
- "additionalConditionsRequired": true
2070
- }
2071
- },
2072
- "UA": {
2073
- "limitationOnBenefits": {
2074
- "government": true,
2075
- "taxExemptPension": true,
2076
- "otherTaxExemptOrganization": true,
2077
- "publiclyTradedCorporation": true,
2078
- "subsidiary": true,
2079
- "companyMeetsErosionTest": true,
2080
- "companyMeetsDerivativeTest": false,
2081
- "companyMeetsBusinessTest": true,
2082
- "favorableDetermination": true,
2083
- "noLobArticle": false,
2084
- "otherArticleParagraphs": []
2085
- },
2086
- "services": {
2087
- "rate": "0%",
2088
- "articleParagraph": "14",
2089
- "additionalConditionsRequired": true
2090
- },
2091
- "royaltiesOther": {
2092
- "rate": "10%",
2093
- "articleParagraph": "12(2)",
2094
- "additionalConditionsRequired": false
2095
- },
2096
- "businessProfits": {
2097
- "rate": "0%",
2098
- "articleParagraph": "7(1)",
2099
- "additionalConditionsRequired": true
2100
- }
2101
- },
2102
- "GB": {
2103
- "limitationOnBenefits": {
2104
- "government": true,
2105
- "taxExemptPension": true,
2106
- "otherTaxExemptOrganization": true,
2107
- "publiclyTradedCorporation": true,
2108
- "subsidiary": true,
2109
- "companyMeetsErosionTest": true,
2110
- "companyMeetsDerivativeTest": false,
2111
- "companyMeetsBusinessTest": true,
2112
- "favorableDetermination": true,
2113
- "noLobArticle": false,
2114
- "otherArticleParagraphs": ["23(5)"]
2115
- },
2116
- "services": {
2117
- "rate": "0%",
2118
- "articleParagraph": "7(1)",
2119
- "additionalConditionsRequired": true
2120
- },
2121
- "royaltiesOther": {
2122
- "rate": "0%",
2123
- "articleParagraph": "12(1)",
2124
- "additionalConditionsRequired": false
2125
- },
2126
- "businessProfits": {
2127
- "rate": "0%",
2128
- "articleParagraph": "7(1)",
2129
- "additionalConditionsRequired": true
2130
- }
2131
- },
2132
- "UZ": {
2133
- "limitationOnBenefits": {
2134
- "government": false,
2135
- "taxExemptPension": false,
2136
- "otherTaxExemptOrganization": false,
2137
- "publiclyTradedCorporation": false,
2138
- "subsidiary": false,
2139
- "companyMeetsErosionTest": false,
2140
- "companyMeetsDerivativeTest": false,
2141
- "companyMeetsBusinessTest": false,
2142
- "favorableDetermination": false,
2143
- "noLobArticle": true,
2144
- "otherArticleParagraphs": []
2145
- },
2146
- "services": {
2147
- "rate": "0%",
2148
- "articleParagraph": "VI(2)",
2149
- "additionalConditionsRequired": true
2150
- },
2151
- "royaltiesOther": {
2152
- "rate": "0%",
2153
- "articleParagraph": "III(1)",
2154
- "additionalConditionsRequired": false
2155
- },
2156
- "businessProfits": {
2157
- "rate": "0%",
2158
- "articleParagraph": "IV(1)",
2159
- "additionalConditionsRequired": true
2160
- }
2161
- },
2162
- "VE": {
2163
- "limitationOnBenefits": {
2164
- "government": true,
2165
- "taxExemptPension": true,
2166
- "otherTaxExemptOrganization": true,
2167
- "publiclyTradedCorporation": true,
2168
- "subsidiary": true,
2169
- "companyMeetsErosionTest": true,
2170
- "companyMeetsDerivativeTest": false,
2171
- "companyMeetsBusinessTest": true,
2172
- "favorableDetermination": true,
2173
- "noLobArticle": false,
2174
- "otherArticleParagraphs": ["17(2)", "17(3)"]
2175
- },
2176
- "services": {
2177
- "rate": "0%",
2178
- "articleParagraph": "14",
2179
- "additionalConditionsRequired": true
2180
- },
2181
- "royaltiesOther": {
2182
- "rate": "10%",
2183
- "articleParagraph": "12(2)(b)",
2184
- "additionalConditionsRequired": false
2185
- },
2186
- "businessProfits": {
2187
- "rate": "0%",
2188
- "articleParagraph": "7(1)",
2189
- "additionalConditionsRequired": true
2190
- }
2191
- }
2192
- }
2193
- ;
2194
-
2195
- export default _default;