Spaces:
Running
Running
Initial commit with app files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .devcontainer/devcontainer.json +33 -0
- .env +1 -0
- .env.txt +1 -0
- LICENSE +201 -0
- New Text Document.txt +1 -0
- Preview/A_Trumped_World/A Trumped World.txt +58 -0
- Preview/Agri_Tax_in_Punjab/Agri Tax in Punjab.txt +47 -0
- Preview/Assad's_Fall_in_Syria/Assad's Fall in Syria.txt +41 -0
- Preview/Elusive_National_Unity/Elusive National Unity.txt +48 -0
- Preview/Europe_and_Trump_2.0/Europe and Trump 2.0.txt +44 -0
- Preview/Going_Down_with_Democracy/Going Down with Democracy.txt +44 -0
- Preview/Indonesia's_Pancasila_Philosophy/Indonesia's Pancasila Philosophy.txt +46 -0
- Preview/Pakistan's_Semiconductor_Ambitions/Pakistan's Semiconductor Ambitions.txt +68 -0
- Preview/Pakistan_in_Choppy_Waters/Pakistan in Choppy Waters.txt +55 -0
- Preview/Preserving_Pakistan's_Cultural_Heritage/Preserving Pakistan's Cultural Heritage.txt +58 -0
- Preview/Tackling_Informal_Economy/Tackling Informal Economy.txt +64 -0
- Preview/Technical_Education_in_Pakistan/Technical Education in Pakistan.txt +56 -0
- Preview/The_Case_for_Solidarity_Levies/The Case for Solidarity Levies.txt +66 -0
- Preview/The_Decline_of_the_Sole_Superpower/The Decline of the Sole Superpower.txt +51 -0
- Preview/The_Power_of_Big_Oil/The Power of Big Oil.txt +48 -0
- Preview/Trump_2.0_and_Pakistan's_Emerging_Foreign_Policy/Trump 2.0 and Pakistan's Emerging Foreign Policy.txt +59 -0
- Preview/Trump_and_the_World_2.0/Trump and the World 2.0.txt +57 -0
- Preview/Trump_vs_BRICS/Trump vs BRICS.txt +61 -0
- Preview/US-China_Trade_War/US-China Trade War.txt +51 -0
- Preview/War_on_Humanity/War on Humanity.txt +53 -0
- Preview/Women's_Suppression_in_Afghanistan/Women's Suppression in Afghanistan.txt +52 -0
- Prview/Going_Down_with_Democracy/Going Down with Democracy.txt +44 -0
- Prview/The_Power_of_Big_Oil/The Power of Big Oil.txt +48 -0
- Prview/Trump_and_the_World_2.0/Trump and the World 2.0.txt +57 -0
- WRONG_Question.txt +130 -0
- __pycache__/htmlTemplates.cpython-312.pyc +0 -0
- app.py +177 -2
- data/A_Trumped_World/A Trumped World.txt +29 -0
- data/Agri_Tax_in_Punjab/Agri Tax in Punjab.txt +36 -0
- data/Assad's_Fall_in_Syria/Assad's Fall in Syria.txt +41 -0
- data/Elusive_National_Unity/Elusive National Unity.txt +17 -0
- data/Europe_and_Trump_2.0/Europe and Trump 2.0.txt +42 -0
- data/Going_Down_with_Democracy/Going Down with Democracy.txt +13 -0
- data/Indonesia's_Pancasila_Philosophy/Indonesia's Pancasila Philosophy.txt +29 -0
- data/Pakistan's_Semiconductor_Ambitions/Pakistan's Semiconductor Ambitions.txt +98 -0
- data/Pakistan_in_Choppy_Waters/Pakistan in Choppy Waters.txt +21 -0
- data/Preserving_Pakistan's_Cultural_Heritage/Preserving Pakistan's Cultural Heritage.txt +22 -0
- data/Tackling_Informal_Economy/Tackling Informal Economy.txt +53 -0
- data/Technical_Education_in_Pakistan/Technical Education in Pakistan.txt +26 -0
- data/The_Case_for_Solidarity_Levies/The Case for Solidarity Levies.txt +71 -0
- data/The_Decline_of_the_Sole_Superpower/The Decline of the Sole Superpower.txt +25 -0
- data/The_Power_of_Big_Oil/The Power of Big Oil.txt +41 -0
- data/Trump_2.0_and_Pakistan's_Emerging_Foreign_Policy/Trump 2.0 and Pakistan's Emerging Foreign Policy.txt +20 -0
- data/Trump_and_the_World_2.0/Trump and the World 2.0.txt +17 -0
- data/Trump_vs_BRICS/Trump vs BRICS.txt +60 -0
.devcontainer/devcontainer.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Python 3",
|
3 |
+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
4 |
+
"image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye",
|
5 |
+
"customizations": {
|
6 |
+
"codespaces": {
|
7 |
+
"openFiles": [
|
8 |
+
"README.md",
|
9 |
+
"app.py"
|
10 |
+
]
|
11 |
+
},
|
12 |
+
"vscode": {
|
13 |
+
"settings": {},
|
14 |
+
"extensions": [
|
15 |
+
"ms-python.python",
|
16 |
+
"ms-python.vscode-pylance"
|
17 |
+
]
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"updateContentCommand": "[ -f packages.txt ] && sudo apt update && sudo apt upgrade -y && sudo xargs apt install -y <packages.txt; [ -f requirements.txt ] && pip3 install --user -r requirements.txt; pip3 install --user streamlit; echo '✅ Packages installed and Requirements met'",
|
21 |
+
"postAttachCommand": {
|
22 |
+
"server": "streamlit run app.py --server.enableCORS false --server.enableXsrfProtection false"
|
23 |
+
},
|
24 |
+
"portsAttributes": {
|
25 |
+
"8501": {
|
26 |
+
"label": "Application",
|
27 |
+
"onAutoForward": "openPreview"
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"forwardPorts": [
|
31 |
+
8501
|
32 |
+
]
|
33 |
+
}
|
.env
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
OPENAI_API_KEY=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
|
.env.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
OPENAI_API_KEY=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
|
LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
New Text Document.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
OPENAI_API_KEY=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
|
Preview/A_Trumped_World/A Trumped World.txt
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
|
3 |
+
The Punjab Agricultural Income Tax (Amendment) Bill 2024 was passed on November 14, introducing significant reforms to modernize agricultural taxation.
|
4 |
+
Aims to align provincial tax rates with federal income tax standards.
|
5 |
+
Effective from January 1, 2025, the amendments seek equitable taxation of traditional agricultural and livestock income.
|
6 |
+
|
7 |
+
Key Features of the Bill
|
8 |
+
|
9 |
+
Inclusion of Livestock Income:
|
10 |
+
|
11 |
+
Income from livestock is now classified as agricultural income and subject to tax.
|
12 |
+
Farmers with higher incomes and landowners will face taxes on income previously exempt.
|
13 |
+
Removal of Exemptions:
|
14 |
+
|
15 |
+
Exemptions for agricultural income have been removed, including those for landholdings under 12.5 acres and absentee landowners.
|
16 |
+
A super tax is introduced for high-income farmers and landowners.
|
17 |
+
|
18 |
+
Enhanced Penalties:
|
19 |
+
|
20 |
+
Tax defaulters face a 0.1% daily fine on total income.
|
21 |
+
Default surcharge revised to 12% or KIBOR + 3%, aligning with federal financial standards.
|
22 |
+
|
23 |
+
Modernization of Tax Code:
|
24 |
+
|
25 |
+
Terms updated for consistency with federal tax laws (e.g., "taxpayer" replaces "assessee").
|
26 |
+
Challenges and Considerations
|
27 |
+
Corruption in Tax Machinery:
|
28 |
+
|
29 |
+
Existing systems, like the Patwari-based system, are outdated and prone to corruption.
|
30 |
+
Effective implementation will depend on digitization and accurate assessments of:
|
31 |
+
Per-acre yields.
|
32 |
+
Seasonal crop cultivation data.
|
33 |
+
Livestock records.
|
34 |
+
|
35 |
+
Fairness and Revenue Capacity:
|
36 |
+
|
37 |
+
Taxation on agriculture has historically been resisted due to strong political and industrial lobbies.
|
38 |
+
Landowners have used agriculture income as a means of tax evasion, hiding profits from other sources (e.g., industry).
|
39 |
+
|
40 |
+
Implementation Concerns:
|
41 |
+
|
42 |
+
The Revenue Department’s ability to handle income-based taxation is questionable.
|
43 |
+
There is a risk of corruption and inefficiencies in handling expenditures and determining taxable income.
|
44 |
+
|
45 |
+
Analysis
|
46 |
+
|
47 |
+
The reforms align with IMF conditionalities and aim to generate much-needed revenue for Punjab.
|
48 |
+
With agriculture accounting for 23% of GDP but contributing less than 1% to the tax-to-GDP ratio, this reform is a step towards fiscal equity.
|
49 |
+
Provinces like Balochistan, rich in livestock resources, could benefit from adopting similar measures.
|
50 |
+
Historical Context
|
51 |
+
Agriculture was historically taxed through land revenue (based on ownership, not income), abolished decades ago.
|
52 |
+
Agricultural income tax was introduced later but faced resistance due to the influence of land-owning classes.
|
53 |
+
|
54 |
+
Conclusion
|
55 |
+
|
56 |
+
The new law aims to ensure fairness and accountability in agricultural taxation.
|
57 |
+
However, its success will depend on systemic reforms, capacity-building in the Revenue Department, and digitization of agricultural records.
|
58 |
+
The move marks a shift toward reducing the monopoly of large landowners in evading taxes, fostering a more equitable taxation system.
|
Preview/Agri_Tax_in_Punjab/Agri Tax in Punjab.txt
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
The Punjab Agricultural Income Tax (Amendment) Bill 2024 was passed on November 14, introducing significant reforms to modernize agricultural taxation.
|
3 |
+
Aims to align provincial tax rates with federal income tax standards.
|
4 |
+
Effective from January 1, 2025, the amendments seek equitable taxation of traditional agricultural and livestock income.
|
5 |
+
Key Features of the Bill
|
6 |
+
Inclusion of Livestock Income:
|
7 |
+
|
8 |
+
Income from livestock is now classified as agricultural income and subject to tax.
|
9 |
+
Farmers with higher incomes and landowners will face taxes on income previously exempt.
|
10 |
+
Removal of Exemptions:
|
11 |
+
|
12 |
+
Exemptions for agricultural income have been removed, including those for landholdings under 12.5 acres and absentee landowners.
|
13 |
+
A super tax is introduced for high-income farmers and landowners.
|
14 |
+
Enhanced Penalties:
|
15 |
+
|
16 |
+
Tax defaulters face a 0.1% daily fine on total income.
|
17 |
+
Default surcharge revised to 12% or KIBOR + 3%, aligning with federal financial standards.
|
18 |
+
Modernization of Tax Code:
|
19 |
+
|
20 |
+
Terms updated for consistency with federal tax laws (e.g., "taxpayer" replaces "assessee").
|
21 |
+
Challenges and Considerations
|
22 |
+
Corruption in Tax Machinery:
|
23 |
+
|
24 |
+
Existing systems, like the Patwari-based system, are outdated and prone to corruption.
|
25 |
+
Effective implementation will depend on digitization and accurate assessments of:
|
26 |
+
Per-acre yields.
|
27 |
+
Seasonal crop cultivation data.
|
28 |
+
Livestock records.
|
29 |
+
Fairness and Revenue Capacity:
|
30 |
+
|
31 |
+
Taxation on agriculture has historically been resisted due to strong political and industrial lobbies.
|
32 |
+
Landowners have used agriculture income as a means of tax evasion, hiding profits from other sources (e.g., industry).
|
33 |
+
Implementation Concerns:
|
34 |
+
|
35 |
+
The Revenue Department’s ability to handle income-based taxation is questionable.
|
36 |
+
There is a risk of corruption and inefficiencies in handling expenditures and determining taxable income.
|
37 |
+
Analysis
|
38 |
+
The reforms align with IMF conditionalities and aim to generate much-needed revenue for Punjab.
|
39 |
+
With agriculture accounting for 23% of GDP but contributing less than 1% to the tax-to-GDP ratio, this reform is a step towards fiscal equity.
|
40 |
+
Provinces like Balochistan, rich in livestock resources, could benefit from adopting similar measures.
|
41 |
+
Historical Context
|
42 |
+
Agriculture was historically taxed through land revenue (based on ownership, not income), abolished decades ago.
|
43 |
+
Agricultural income tax was introduced later but faced resistance due to the influence of land-owning classes.
|
44 |
+
Conclusion
|
45 |
+
The new law aims to ensure fairness and accountability in agricultural taxation.
|
46 |
+
However, its success will depend on systemic reforms, capacity-building in the Revenue Department, and digitization of agricultural records.
|
47 |
+
The move marks a shift toward reducing the monopoly of large landowners in evading taxes, fostering a more equitable taxation system.
|
Preview/Assad's_Fall_in_Syria/Assad's Fall in Syria.txt
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Bashar al-Assad's regime in Syria collapsed following a decisive offensive by a coalition of armed opposition groups, led by Hayat Tahrir al-Sham (HTS).
|
3 |
+
Assad and his family fled to Russia, ending over five decades of Ba'ath Party rule.
|
4 |
+
External factors, including weakened support from allies Russia and Iran, significantly contributed to the regime's downfall.
|
5 |
+
Key Events Leading to Assad’s Fall
|
6 |
+
Internal Challenges:
|
7 |
+
|
8 |
+
Decades of authoritarian governance under Assad and his father.
|
9 |
+
Economic stagnation, corruption, inequality, and lack of social reforms fueled public discontent.
|
10 |
+
Militarized suppression of opposition further deepened the crisis.
|
11 |
+
External Influences:
|
12 |
+
|
13 |
+
Geopolitical rivalries turned Syria into a battleground.
|
14 |
+
Western countries, Arab monarchies, Turkey, Saudi Arabia, and Israel supported opposition forces to weaken Assad's allies (Russia and Iran).
|
15 |
+
Russia’s focus on Ukraine and Iran’s tensions with Israel weakened Assad’s external support network.
|
16 |
+
Critical Developments:
|
17 |
+
|
18 |
+
Israeli strikes weakened Hezbollah and Iranian influence.
|
19 |
+
Loss of key cities (Aleppo, Homs) and encirclement of Damascus facilitated the opposition's victory.
|
20 |
+
Consequences of Assad’s Ouster
|
21 |
+
Regional Instability:
|
22 |
+
|
23 |
+
Syria is expected to remain fragmented, similar to post-Gaddafi Libya.
|
24 |
+
Conflicts among diverse rebel factions (secular, Islamist, ethno-nationalist) may exacerbate instability.
|
25 |
+
Extremist organizations could exploit the power vacuum.
|
26 |
+
Impact on Iran:
|
27 |
+
|
28 |
+
Assad’s fall disrupts Iran’s “Axis of Resistance” and logistical ties to Hezbollah.
|
29 |
+
Growing internal discontent and external pressures in Iran may trigger a “Persian Autumn,” leading to regional upheavals.
|
30 |
+
Geopolitical Shifts:
|
31 |
+
|
32 |
+
A potential chain reaction could revise borders, change political regimes, and intensify resource struggles in the Middle East.
|
33 |
+
Israel and other nations may capitalize on Syria’s instability to strengthen regional influence.
|
34 |
+
Analysis
|
35 |
+
The collapse was a culmination of long-standing internal and external contradictions rather than a sudden event.
|
36 |
+
Assad’s leadership style, marked by inexperience and an inability to adapt, left him vulnerable to systemic and external pressures.
|
37 |
+
The region faces significant challenges in achieving stability, with risks of prolonged conflicts and intensified geopolitical rivalries.
|
38 |
+
Conclusion
|
39 |
+
The international community must prioritize aiding Syria’s reconstruction and refrain from further foreign interference.
|
40 |
+
Syria’s future should be shaped by its people, without being a pawn in global power struggles.
|
41 |
+
Stability in the region will require addressing underlying issues of governance, economic inequality, and external exploitation.
|
Preview/Elusive_National_Unity/Elusive National Unity.txt
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Pakistan's founding unity during the independence movement has dissipated over time.
|
3 |
+
Quaid-e-Azam Muhammad Ali Jinnah envisioned a democratic, inclusive state but his untimely demise in 1948 left these ideals unfulfilled.
|
4 |
+
Colonial legacies, centralized power structures, and political mismanagement have fostered internal divisions and weakened national cohesion.
|
5 |
+
Key Issues Affecting National Unity
|
6 |
+
Historical and Political Factors
|
7 |
+
Colonial Legacy:
|
8 |
+
Left Pakistan with fragmented governance and centralized power structures, undermining federalism and national integration.
|
9 |
+
Governance Challenges:
|
10 |
+
Dynastic political parties, praetorian governance, and establishment interference have eroded democracy.
|
11 |
+
The suppression of regional identities has fueled separatist movements and insurgencies.
|
12 |
+
Ethnic and Regional Disparities
|
13 |
+
Balochistan:
|
14 |
+
|
15 |
+
Persistent ethnic conflicts and insurgencies, rooted in power concentration and systematic marginalization.
|
16 |
+
Four major insurgencies since 1947, the latest beginning in 2006 after the killing of Nawab Akbar Bugti.
|
17 |
+
High rates of enforced disappearances; as of August 2023, 2,708 cases reported in Balochistan.
|
18 |
+
Grievances linked to inequitable control over natural resources and suppression of regional autonomy.
|
19 |
+
Khyber Pakhtunkhwa (KP):
|
20 |
+
|
21 |
+
Marginalization and violence persist, exemplified by movements like the Pashtun Tahafuz Movement (PTM).
|
22 |
+
PTM highlights injustices, including the loss of 76,584 lives and 6,700 missing persons due to state violence and terrorism.
|
23 |
+
Sectarian and tribal disputes, such as the Kurram district convoy ambush on November 21, 2023, exacerbate instability.
|
24 |
+
KP and Balochistan are hotspots for terrorism, with the majority of 2023 attacks concentrated in these regions.
|
25 |
+
Systemic Flaws
|
26 |
+
Centralized Power:
|
27 |
+
Concentration of resources and authority in the central government alienates provinces and deepens distrust.
|
28 |
+
Security Issues:
|
29 |
+
Weak governance and unchecked actions of security forces undermine public trust.
|
30 |
+
Ineffective Federalism:
|
31 |
+
Failure to implement the 18th Amendment, which aims to decentralize power, hinders regional autonomy.
|
32 |
+
Path Forward
|
33 |
+
Strengthening Federalism:
|
34 |
+
|
35 |
+
Full implementation of the 18th Amendment to decentralize power.
|
36 |
+
Address regional grievances and ensure equitable control over resources.
|
37 |
+
Promote provincial autonomy as outlined in the constitution.
|
38 |
+
Accountability and Justice:
|
39 |
+
|
40 |
+
Investigate and resolve cases of missing persons.
|
41 |
+
Hold security forces accountable for abuses to rebuild public trust.
|
42 |
+
Inclusive Development:
|
43 |
+
|
44 |
+
Shift from oppressive governance to welfare-oriented policies.
|
45 |
+
Ensure representation and respect for ethnic and regional identities.
|
46 |
+
Conclusion
|
47 |
+
To achieve national unity and stability, Pakistan must embrace its founding principles of democracy, equality, and justice.
|
48 |
+
By addressing systemic flaws, respecting regional identities, and promoting inclusive governance, the nation can foster cohesion and thrive as envisioned by Jinnah
|
Preview/Europe_and_Trump_2.0/Europe and Trump 2.0.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Challenges for Europe: Historic political chaos, the ongoing war in Ukraine, and economic stagnation have left Europe in a fragile state. The prospect of Donald Trump's return as U.S. President exacerbates concerns about Europe’s security, economy, and political cohesion.
|
3 |
+
Key Question: Will Trump 2.0 be a threat or an opportunity for Europe to reassert its autonomy?
|
4 |
+
Europe’s Existential Crises
|
5 |
+
Mass Migration:
|
6 |
+
Overwhelms social institutions and public services.
|
7 |
+
Creates societal and political tensions.
|
8 |
+
Economic Stagnation:
|
9 |
+
EU’s corporatist economic model enriches elites but undermines productivity.
|
10 |
+
Centralized bureaucracies and overregulation hinder growth.
|
11 |
+
Political Dysfunction:
|
12 |
+
Instability in France and Germany, with weakened leadership.
|
13 |
+
Rise of virtue-signaling politics over pragmatic governance.
|
14 |
+
The Trump Factor
|
15 |
+
NATO and Security:
|
16 |
+
Trump demands European accountability in NATO, potentially reducing U.S. involvement.
|
17 |
+
NATO may shift military responsibility to European nations.
|
18 |
+
Energy Policies:
|
19 |
+
Contrasts U.S. energy independence with Europe’s reliance on "green dogma."
|
20 |
+
Europe’s energy crisis is seen as a self-inflicted wound.
|
21 |
+
Trade War Risks:
|
22 |
+
Potential U.S. tariffs (10-20%) and a 60% tariff on Chinese goods could trigger global economic conflicts.
|
23 |
+
Europe’s dependency on Chinese imports could deepen its economic vulnerability.
|
24 |
+
Europe’s Misdoings
|
25 |
+
Internal Failures:
|
26 |
+
Failure to address mass migration effectively.
|
27 |
+
Economic policies stifling competitiveness and growth.
|
28 |
+
Inability to defend national sovereignty or foster unity.
|
29 |
+
The Role of Trump:
|
30 |
+
Seen as an external force exposing Europe’s weaknesses.
|
31 |
+
Opportunity for Europe to redefine its strategies and reclaim geopolitical relevance.
|
32 |
+
Future Directions
|
33 |
+
Defense and Security:
|
34 |
+
Ensure continued military aid and security guarantees for Ukraine.
|
35 |
+
Strengthen Europe’s own defense mechanisms, including nuclear deterrence.
|
36 |
+
Trade and Economy:
|
37 |
+
Prepare countermeasures against U.S. tariffs.
|
38 |
+
Diversify trade partners to reduce reliance on the U.S. and China.
|
39 |
+
European Unity:
|
40 |
+
Avoid bilateral deals with the U.S. that undermine EU cohesion.
|
41 |
+
Develop a collective strategy to handle external pressures.
|
42 |
+
Conclusion
|
43 |
+
Resilience in Crisis: As Jean Monnet stated, "Europe will be forged in crises." Trump’s presidency may act as a wake-up call for Europe to strengthen its institutions and unity.
|
44 |
+
Opportunity for Growth: Europe’s response to Trump 2.0 could define its future, transitioning from a dependent actor to a self-reliant global player.
|
Preview/Going_Down_with_Democracy/Going Down with Democracy.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
The 20th century saw the rise and consolidation of democracy, culminating in the so-called "victory of democracy" after the Cold War.
|
3 |
+
The 21st century marks democratic regression with the rise of autocratic models (e.g., China, Russia) and the weakening of democratic values.
|
4 |
+
Technology, identity politics, and the decline of participatory governance challenge the democratic ideal.
|
5 |
+
Key Issues
|
6 |
+
Selective Freedom of Speech and Cancel Culture
|
7 |
+
Role of Big Tech:
|
8 |
+
Platforms like Meta, X (formerly Twitter), and Google significantly influence political discourse.
|
9 |
+
Selective censorship undermines freedom of speech, as seen with Elon Musk's management of X.
|
10 |
+
Government Interference:
|
11 |
+
Examples include compliance with government requests for censorship (e.g., Turkey, India).
|
12 |
+
This erodes the level playing field in democratic processes and suppresses political debate.
|
13 |
+
Spread of Disinformation:
|
14 |
+
Viral social media content amplifies false narratives, overwhelming the capacity for verification.
|
15 |
+
Platforms prioritize sensational content for monetization, further distorting truth.
|
16 |
+
From Active Participation to Passive Clicktivism
|
17 |
+
Political Impassivity:
|
18 |
+
Social media has reduced democracy to a spectator sport, fostering passive activism.
|
19 |
+
Users feel a false sense of achievement through actions like liking posts or tweeting about causes.
|
20 |
+
Decline in Concrete Actions:
|
21 |
+
Real political participation, like organizing movements or influencing policymaking, has diminished.
|
22 |
+
Online engagement often replaces meaningful efforts for social change.
|
23 |
+
The Unfamiliar Market of Ideas
|
24 |
+
Failure of the Free Market of Ideas:
|
25 |
+
The classic liberal concept that good ideas will outcompete bad ones has failed in the age of social media.
|
26 |
+
Lies, disinformation, and propaganda thrive due to platform algorithms favoring sensationalism.
|
27 |
+
Manipulation of Public Fears:
|
28 |
+
Human psychology is manipulated by "fear instinct" and "negativity instinct," as described by Hans Rosling.
|
29 |
+
Negative and fear-inducing content garners more attention, suppressing rational discourse.
|
30 |
+
Technological Threats to Democracy
|
31 |
+
Tech giants' control over information undermines the democratic process.
|
32 |
+
CEOs of major platforms have disproportionate influence on political behavior, election outcomes, and public debate.
|
33 |
+
This shift risks reducing democracy from "by the people" to control by a few powerful individuals.
|
34 |
+
Future Considerations
|
35 |
+
Government Regulation:
|
36 |
+
Governments need to regulate tech platforms to ensure fair practices and accountability.
|
37 |
+
Promoting Active Participation:
|
38 |
+
Encourage grassroots political engagement and education to revive participatory democracy.
|
39 |
+
Restoring the Free Market of Ideas:
|
40 |
+
Limit manipulation by tech platforms and prioritize transparency in information dissemination.
|
41 |
+
Conclusion
|
42 |
+
The democratic ideal faces significant challenges in the modern age of technological disruptions.
|
43 |
+
Without addressing these threats, the future risks being dominated by a few tech leaders rather than the collective will of the people.
|
44 |
+
Governments and citizens must collaborate to preserve democracy's integrity and ensure it remains resilient in the face of evolving challenges.
|
Preview/Indonesia's_Pancasila_Philosophy/Indonesia's Pancasila Philosophy.txt
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Indonesia's Diversity: A multicultural nation with diverse cultural, religious, and ethnic practices spread across 17,000 islands.
|
3 |
+
Pancasila: The governing philosophy introduced by Soekarno, Indonesia’s first president, to unify the nation through five guiding principles.
|
4 |
+
Objective: To promote national unity, equitable governance, and a cohesive social fabric.
|
5 |
+
The Five Pillars of Pancasila
|
6 |
+
Belief in One Supreme God (Ketuhanan yang Maha Esa):
|
7 |
+
|
8 |
+
Emphasizes spirituality and respect for all religious practices.
|
9 |
+
Creates harmony in a predominantly Muslim nation while honoring diverse faiths.
|
10 |
+
Just and Civilized Humanity (Kemanusiaan yang Adil dan Beradab):
|
11 |
+
|
12 |
+
Advocates justice, compassion, and the humane treatment of all individuals.
|
13 |
+
Focuses on human dignity and empathy.
|
14 |
+
Unity of Indonesia (Persatuan Indonesia):
|
15 |
+
|
16 |
+
Promotes national identity over regional or cultural divisions.
|
17 |
+
Reinforces the motto “Bhinneka Tunggal Ika” (Unity in Diversity).
|
18 |
+
Strengthens cohesion across Indonesia’s vast ethnic and religious spectrum.
|
19 |
+
Democracy through Deliberation (Kerakyatan yang Dipimpin oleh Hikmat Kebijaksanaan dalam Permusyawaratan/Perwakilan):
|
20 |
+
|
21 |
+
Encourages democracy rooted in deliberation and consultation.
|
22 |
+
Collective decision-making is guided by representatives reflecting the wisdom of the people.
|
23 |
+
Combines democratic participation with cultural inclusivity.
|
24 |
+
Social Justice for All (Keadilan Sosial bagi Seluruh Rakyat Indonesia):
|
25 |
+
|
26 |
+
Ensures equitable distribution of resources and opportunities.
|
27 |
+
Focuses on reducing inequality, fostering sustainable development, and uplifting marginalized communities.
|
28 |
+
Relevance to Pakistan
|
29 |
+
Shared Challenges:
|
30 |
+
Both countries face ethnic and linguistic diversity, regional disparities, and fragile democratic systems.
|
31 |
+
Social polarization and sectarian conflicts hinder national progress.
|
32 |
+
Lessons from Pancasila:
|
33 |
+
A unified national identity can help Pakistan address regional and ethnic divisions.
|
34 |
+
Emphasizing shared values and collaborative governance can reduce polarization.
|
35 |
+
Collective commitment to social justice can promote stability and sustainable development.
|
36 |
+
Potential Benefits:
|
37 |
+
Following Pancasila’s principles could foster greater national cohesion in Pakistan.
|
38 |
+
Embracing diversity as a strength may help Pakistan overcome challenges and build resilience.
|
39 |
+
Conclusion
|
40 |
+
Pancasila as a Model:
|
41 |
+
Demonstrates how core principles can guide governance and unity in a diverse society.
|
42 |
+
Offers valuable lessons for Pakistan to strengthen its social fabric and achieve cohesive growth.
|
43 |
+
Path Forward for Pakistan:
|
44 |
+
Unify its diverse communities through shared values and collective governance.
|
45 |
+
Build a sense of pride and identity around its cultural and ethnic diversity.
|
46 |
+
Transform diversity into a foundation for progress and regional leadership.
|
Preview/Pakistan's_Semiconductor_Ambitions/Pakistan's Semiconductor Ambitions.txt
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Global Semiconductor Demand:
|
3 |
+
Fueled by digital technologies, AI, IoT, and 5G.
|
4 |
+
Global semiconductor revenue projected to reach $1 trillion by 2030.
|
5 |
+
Pakistan’s Potential:
|
6 |
+
Currently negligible share in the global market.
|
7 |
+
Potential to generate $4 billion annually through strategic development.
|
8 |
+
What are Semiconductors?
|
9 |
+
Definition:
|
10 |
+
Semiconductors are materials that conduct electricity under certain conditions, essential for modern technology.
|
11 |
+
Commonly used in devices like phones, laptops, LEDs, solar panels, and defense systems.
|
12 |
+
Types:
|
13 |
+
Intrinsic Semiconductors: Pure and free from impurities.
|
14 |
+
Extrinsic Semiconductors: Doped with impurities to enhance conductivity, classified into:
|
15 |
+
N-type: Conducts via electrons.
|
16 |
+
P-type: Conducts via positive electron deficiencies ("holes").
|
17 |
+
Applications:
|
18 |
+
Consumer electronics, renewable energy, LEDs, transistors, RFID tags, and defense technologies.
|
19 |
+
Global Geopolitics of Semiconductors
|
20 |
+
US-China Rivalry:
|
21 |
+
Export controls and sanctions to curb China’s access to advanced semiconductor technologies.
|
22 |
+
Taiwan (TSMC) remains a critical player but is geopolitically sensitive.
|
23 |
+
Role of South Korea and Japan:
|
24 |
+
Major players in the global supply chain, navigating between US and China.
|
25 |
+
Europe’s Strategic Autonomy:
|
26 |
+
"Digital Compass" initiative to reduce reliance on Asia.
|
27 |
+
China’s Self-Reliance:
|
28 |
+
Focus on domestic semiconductor production under "Made in China 2025."
|
29 |
+
Global Market:
|
30 |
+
Estimated annual market size of $4 trillion, with Pakistan contributing less than $50 million.
|
31 |
+
Pakistan’s Semiconductor Industry
|
32 |
+
Historical Efforts:
|
33 |
+
Initial interest during Imran Khan’s tenure, with collaboration proposals from China.
|
34 |
+
Provincial funding of Rs. 41.75 million for chip design centers in Punjab universities.
|
35 |
+
Current Developments:
|
36 |
+
Pakistan National Semiconductor Plan (PNSP) outlines a roadmap:
|
37 |
+
Initial phases focus on designing, assembling, and testing chips.
|
38 |
+
Long-term goal: Indigenous manufacturing by 2047.
|
39 |
+
NUST Chip Design Center launched with Rs. 190 million allocation.
|
40 |
+
Challenges:
|
41 |
+
Limited government investment and inconsistent focus.
|
42 |
+
Economic and political instability deterring private and foreign investors.
|
43 |
+
Recommendations (Pakistan National Semiconductor Plan)
|
44 |
+
Broad Policies:
|
45 |
+
Ensure access to critical semiconductor technologies by 2050.
|
46 |
+
Form a cabinet-level task force for implementation.
|
47 |
+
Establish offices at key consulates to promote semiconductor businesses.
|
48 |
+
Short-Term Goals (2025):
|
49 |
+
Create a private nonprofit association (Pakistan Semiconductor Association).
|
50 |
+
Invest in universities to enhance education and research in semiconductors.
|
51 |
+
Establish Advanced Training Institutes (ATIs) for workforce development.
|
52 |
+
Attract Chinese and US companies to set up design centers.
|
53 |
+
Begin package and testing businesses as the first step toward manufacturing.
|
54 |
+
Way Forward
|
55 |
+
Investments:
|
56 |
+
Allocate significant funds for infrastructure, research, and training.
|
57 |
+
Provide tax incentives and subsidies to attract foreign investment.
|
58 |
+
Private Sector Involvement:
|
59 |
+
Encourage startups and private companies in semiconductor innovation.
|
60 |
+
Human Capital Development:
|
61 |
+
Utilize the 100,000 STEM graduates entering the workforce annually.
|
62 |
+
Train professionals to international standards.
|
63 |
+
Global Collaboration:
|
64 |
+
Foster partnerships with leading semiconductor nations, including China, the US, and South Korea.
|
65 |
+
Conclusion
|
66 |
+
Pakistan’s semiconductor industry remains in its infancy but holds significant potential to contribute to the global market.
|
67 |
+
Strategic investments and consistent policies are crucial for establishing a competitive industry.
|
68 |
+
With strong leadership and collaboration, Pakistan can position itself as a key player in the global semiconductor landscape.
|
Preview/Pakistan_in_Choppy_Waters/Pakistan in Choppy Waters.txt
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Historical Lessons: Nations like India and Japan overcame severe crises through visionary leadership and robust reforms.
|
3 |
+
Pakistan’s Current Challenges: Economic instability, terrorism, political volatility, and youth migration are key issues undermining progress.
|
4 |
+
Key Challenges
|
5 |
+
Economic Crisis:
|
6 |
+
|
7 |
+
Inflation exceeds 25%, reducing purchasing power.
|
8 |
+
40% of the population lives below the poverty line.
|
9 |
+
Rising costs of food, fuel, and electricity aggravate discontent.
|
10 |
+
Dependency on IMF loans due to inconsistent policies.
|
11 |
+
Terrorism and Security:
|
12 |
+
|
13 |
+
While the frequency of terror attacks has decreased, insurgent activity persists.
|
14 |
+
Pakistan remained on the FATF grey list (2018–2022), damaging its international image.
|
15 |
+
Decline in tourism and sports diplomacy due to security concerns.
|
16 |
+
Brain Drain:
|
17 |
+
|
18 |
+
Economic uncertainty and poor governance force youth to emigrate.
|
19 |
+
In 2023, 1.62 million people, primarily youth, left for Gulf and European nations.
|
20 |
+
Massive brain drain undermines the country's long-term prospects.
|
21 |
+
Political Instability:
|
22 |
+
|
23 |
+
Frequent changes in leadership and long-standing political unrest hinder governance.
|
24 |
+
Sit-ins, protests, and partisan conflicts distract from developmental priorities.
|
25 |
+
Policy Dependence on Foreign Powers:
|
26 |
+
|
27 |
+
Historical examples include training jihadists in the 1980s and facilitating U.S. operations post-9/11.
|
28 |
+
These decisions have fueled extremism, terrorism, and social unrest.
|
29 |
+
Inadequate Public Services:
|
30 |
+
|
31 |
+
Education and healthcare remain inaccessible despite heavy taxation.
|
32 |
+
Public sector job opportunities are limited, and private businesses struggle due to infrastructure challenges.
|
33 |
+
Proposed Solutions
|
34 |
+
Strengthening Democracy:
|
35 |
+
|
36 |
+
Ensure all state pillars function within constitutional boundaries.
|
37 |
+
Promote transparent and accountable leadership.
|
38 |
+
Prudent Policy-Making:
|
39 |
+
|
40 |
+
Focus on long-term, sustainable economic reforms.
|
41 |
+
Resolve regional and bilateral issues (e.g., Balochistan, India) through dialogue.
|
42 |
+
Renegotiate unfavorable agreements like those with Independent Power Producers (IPPs).
|
43 |
+
Youth Empowerment:
|
44 |
+
|
45 |
+
Provide opportunities to harness the potential of the country’s human capital.
|
46 |
+
Improve the environment for entrepreneurship, education, and employment.
|
47 |
+
Attract foreign investment and technological innovation to create a thriving ecosystem for youth.
|
48 |
+
Silver Lining and Potential
|
49 |
+
Resilience: Despite challenges, Pakistan’s geographic and human capital advantages offer immense opportunities for growth.
|
50 |
+
Strategic Location: Positioned as a key player in South Asia, Pakistan can leverage trade and regional partnerships.
|
51 |
+
Path Forward: A cohesive focus on governance, economic stability, and youth development can lead Pakistan toward sustainable prosperity.
|
52 |
+
Conclusion
|
53 |
+
Hardships and recovery are cyclical in nature; Pakistan must act decisively to break free from its recurring challenges.
|
54 |
+
By fostering democratic institutions, implementing sound economic reforms, and prioritizing youth, the country can unlock its true potential.
|
55 |
+
The nation’s future lies in the collective efforts of its leaders and citizens.
|
Preview/Preserving_Pakistan's_Cultural_Heritage/Preserving Pakistan's Cultural Heritage.txt
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Cultural Heritage Significance:
|
3 |
+
Acts as a bridge connecting Pakistan’s past, present, and future.
|
4 |
+
Encompasses architectural wonders, traditions, music, dance, poetry, and handicrafts.
|
5 |
+
Diversity as Strength:
|
6 |
+
Each province contributes unique cultural elements to the national tapestry, showcasing unity in diversity.
|
7 |
+
Key Aspects of Pakistan’s Cultural Heritage
|
8 |
+
Historical Landmarks:
|
9 |
+
Mohenjo-Daro: Reflects the grandeur of the Indus Valley Civilization.
|
10 |
+
Taxila: Showcases Buddhist relics and wisdom.
|
11 |
+
Badshahi Mosque: A symbol of Mughal magnificence.
|
12 |
+
Intangible Heritage:
|
13 |
+
Music and Poetry: Bulleh Shah, Shah Abdul Latif Bhittai’s verses resonate across generations.
|
14 |
+
Traditional Dances: Pashtun Attan, Sindhi Jhumar foster community bonds.
|
15 |
+
Handicrafts: Balochi embroidery, Multani pottery demonstrate artistic mastery.
|
16 |
+
Provincial Highlights:
|
17 |
+
Punjab: Basant festival, Sufi shrine celebrations.
|
18 |
+
Sindh: Ajrak textiles, Tharparkar’s folk melodies.
|
19 |
+
Khyber Pakhtunkhwa: Pashto poetry, resilience.
|
20 |
+
Balochistan: Ancient craftsmanship, storytelling traditions.
|
21 |
+
Challenges
|
22 |
+
Urbanization:
|
23 |
+
Encroaches on historical sites, endangering preservation.
|
24 |
+
Environmental Factors:
|
25 |
+
Climate change and pollution damage ancient landmarks.
|
26 |
+
Neglect and Funding:
|
27 |
+
Insufficient government support for heritage conservation.
|
28 |
+
Younger generations are losing touch with their cultural roots.
|
29 |
+
Opportunities
|
30 |
+
Economic Growth through Tourism:
|
31 |
+
Countries like Italy, Egypt, and Turkey thrive on cultural tourism.
|
32 |
+
Pakistan’s UNESCO sites (Mohenjo-Daro, Taxila, Makli Necropolis) have global appeal.
|
33 |
+
With better infrastructure, visitor spending could grow significantly (from $16 billion in 2022 to a projected $30 billion by 2033).
|
34 |
+
Global Promotion:
|
35 |
+
Leverage social media, documentaries, and international events to highlight cultural treasures.
|
36 |
+
Use modern tools like virtual reality and digital archives for wider accessibility.
|
37 |
+
Support for Artisans:
|
38 |
+
Financial assistance and training can help preserve traditional crafts.
|
39 |
+
Exporting products like carpets, jewellery, and pottery could boost the economy.
|
40 |
+
Recommendations
|
41 |
+
Infrastructure Development:
|
42 |
+
Enhance roads, accommodations, and guided tours at historical sites.
|
43 |
+
Modernize airports and ensure traveler safety to attract foreign tourists.
|
44 |
+
Education and Awareness:
|
45 |
+
Integrate cultural history into school curricula.
|
46 |
+
Organize field trips and promote participation in traditional activities.
|
47 |
+
Cultural Festivals:
|
48 |
+
Events like Lok Virsa Mela foster unity and showcase diversity.
|
49 |
+
Bridge gaps between urban and rural communities.
|
50 |
+
Harnessing Tourism Potential:
|
51 |
+
Address safety concerns and improve international perception.
|
52 |
+
Develop strategic promotion campaigns to position Pakistan as a global destination.
|
53 |
+
Conclusion
|
54 |
+
Preserving the Past for the Future:
|
55 |
+
Protecting heritage is vital for honoring ancestors and inspiring future generations.
|
56 |
+
Path to Economic and Social Harmony:
|
57 |
+
Heritage is not just history but a source of identity and pride.
|
58 |
+
By safeguarding and promoting cultural wealth, Pakistan can achieve economic progress, global recognition, and social cohesion.
|
Preview/Tackling_Informal_Economy/Tackling Informal Economy.txt
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Significance of the Informal Sector:
|
3 |
+
Contributes approximately $661 billion to Pakistan's economy (35.5% of GDP).
|
4 |
+
Serves as a safety net in areas with limited formal job opportunities.
|
5 |
+
Challenges of Informality:
|
6 |
+
High income inequality and poverty.
|
7 |
+
Limited tax revenue collection and lower productivity.
|
8 |
+
Key Features of the Informal Economy
|
9 |
+
Employment:
|
10 |
+
Engages nearly 75% of Pakistan’s labor force.
|
11 |
+
Critical for regions with limited formal employment opportunities.
|
12 |
+
Fiscal Implications:
|
13 |
+
Wholesale and retail trade (WRT) sector contributes only 2.9% to direct taxes despite accounting for 18% of GDP.
|
14 |
+
Significant tax revenue losses due to unregistered businesses and workers.
|
15 |
+
Comparison with Other Countries
|
16 |
+
Global Trends:
|
17 |
+
Informal sector accounts for 50% of GDP in India and 30–40% in Mexico and Brazil.
|
18 |
+
60–70% of the workforce in low-income countries is employed in the informal sector.
|
19 |
+
Fiscal Losses:
|
20 |
+
South Africa: 5–10% of GDP lost to informality.
|
21 |
+
Kenya: Up to 8% of GDP lost annually.
|
22 |
+
Pakistan’s Challenges
|
23 |
+
Tax Evasion:
|
24 |
+
Only 300,000 of 3.5 million retailers file tax returns.
|
25 |
+
Retail sector’s potential tax revenue is underutilized.
|
26 |
+
Sectoral Imbalance:
|
27 |
+
Manufacturing contributes 34.5% to direct taxes, while WRT contributes only 2.9%.
|
28 |
+
Policy Weakness:
|
29 |
+
Absence of streamlined taxation systems for the informal sector.
|
30 |
+
Initiatives and Solutions
|
31 |
+
Tajir Dost (Special) Procedure, 2024:
|
32 |
+
Aimed at small traders and shopkeepers to bring them into the tax net.
|
33 |
+
Advance tax of PKR 1,200 per year to be paid monthly through computerized systems.
|
34 |
+
FBR Point of Sale (POS) System:
|
35 |
+
Integrates retail sales with tax systems.
|
36 |
+
Benefits:
|
37 |
+
Real-time data transmission and improved tax compliance.
|
38 |
+
Incentives for retailers, transparency, and better business insights.
|
39 |
+
Tier-1 Retailers:
|
40 |
+
Businesses meeting specific criteria (e.g., large retail chains, high electricity usage) must integrate POS systems.
|
41 |
+
Only 58,802 traders registered under Tier-1, highlighting a gap in tax compliance.
|
42 |
+
Tax Potential
|
43 |
+
Retail Sector:
|
44 |
+
Estimated retail market size of $300 billion in 2023.
|
45 |
+
A 4% market size tax and 1% income tax could generate $15 billion annually.
|
46 |
+
Current Contributions:
|
47 |
+
Retail sector contributes Rs. 48.2 billion in taxes, far below its potential.
|
48 |
+
Overall tax collection for 2022–23 stood at Rs. 7,164 billion.
|
49 |
+
Recommendations
|
50 |
+
Simplified Tax Schemes:
|
51 |
+
Introduce low-rate, easy-to-implement tax schemes for small businesses.
|
52 |
+
Expand POS Integration:
|
53 |
+
Ensure wider adoption of FBR POS systems for transparency and compliance.
|
54 |
+
Awareness Campaigns:
|
55 |
+
Educate informal sector workers and businesses about the benefits of formalization.
|
56 |
+
Incentivize Formalization:
|
57 |
+
Offer tax rebates and financial support to businesses transitioning from informal to formal.
|
58 |
+
Conclusion
|
59 |
+
Economic Potential:
|
60 |
+
Addressing informality can enhance tax revenues and reduce fiscal deficits.
|
61 |
+
Strategic Focus:
|
62 |
+
Combining administrative reforms, technology integration, and incentives is critical for formalizing the informal economy.
|
63 |
+
Long-Term Goal:
|
64 |
+
Formalizing the informal sector is essential for sustainable economic growth and achieving development goals.
|
Preview/Technical_Education_in_Pakistan/Technical Education in Pakistan.txt
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Significance: Technical education is critical for economic and societal development, enabling skilled labor and innovation.
|
3 |
+
Current State in Pakistan:
|
4 |
+
Low enrollment rate in technical education (5.8%) compared to the global average (9.2%).
|
5 |
+
Outdated curricula and inadequate funding hinder progress.
|
6 |
+
Key Challenges
|
7 |
+
Lack of Quality Institutions:
|
8 |
+
Only a few of the 1,600 technical institutes meet international standards.
|
9 |
+
Outdated Curriculum:
|
10 |
+
Curricula fail to align with market needs, leaving graduates ill-prepared for the workforce.
|
11 |
+
Government Support:
|
12 |
+
Only PKR 6.98 billion (0.1% of the total budget) allocated to technical education.
|
13 |
+
Shortage of Qualified Teachers:
|
14 |
+
Limited investment in teacher training affects education quality.
|
15 |
+
Demand-Supply Gap:
|
16 |
+
Pakistan ranks 122nd out of 137 countries in talent retention.
|
17 |
+
Skilled workers often emigrate, exacerbating the brain drain.
|
18 |
+
Structural Issues
|
19 |
+
Fragmented Vocational Training System:
|
20 |
+
Bodies like TEVTA, NAVTTC, PSDF, and PVTC oversee training, but efforts lack coordination.
|
21 |
+
Blue-collar workers typically acquire skills informally without formal credentials.
|
22 |
+
Global Recognition:
|
23 |
+
Training credentials of Pakistani workers are not widely accepted abroad.
|
24 |
+
Bilateral agreements are needed to facilitate manpower export to developed economies.
|
25 |
+
Opportunities
|
26 |
+
Adopting Foreign Models:
|
27 |
+
Learn from Europe, particularly Germany's vocational training system, which emphasizes structured, guild-based training.
|
28 |
+
Utilizing Human Capital:
|
29 |
+
Pakistan’s resilient and enterprising youth can thrive with proper training.
|
30 |
+
Economic Growth:
|
31 |
+
Skilled labor can stimulate entrepreneurship, innovation, and economic integration.
|
32 |
+
Recommendations
|
33 |
+
Increased Investment:
|
34 |
+
Allocate more funds to equip institutions with modern resources.
|
35 |
+
Curriculum Update:
|
36 |
+
Align training programs with current market demands to ensure job readiness.
|
37 |
+
Teacher Training and Development:
|
38 |
+
Enhance the capacity of educators to provide quality education.
|
39 |
+
Incentivize Participation:
|
40 |
+
Offer scholarships and incentives to attract students to technical education, especially in rural areas.
|
41 |
+
Global Partnerships:
|
42 |
+
Establish bilateral agreements to export skilled labor and enhance international recognition of credentials.
|
43 |
+
Awareness Campaigns:
|
44 |
+
Promote technical education as a viable career path alongside traditional fields like medicine and engineering.
|
45 |
+
Long-Term Vision
|
46 |
+
Cultural Shift:
|
47 |
+
Build societal acceptance for vocational training through awareness campaigns.
|
48 |
+
Comprehensive Road Map:
|
49 |
+
Develop a modern skill development framework with sustained government and private-sector support.
|
50 |
+
Empower the Youth:
|
51 |
+
Equip future generations to play a transformative role in the nation’s economic growth.
|
52 |
+
Conclusion
|
53 |
+
Call to Action:
|
54 |
+
Pakistan must capitalize on its human capital by modernizing technical education systems and increasing societal awareness.
|
55 |
+
Economic and Societal Impact:
|
56 |
+
With proper training and investments, technical education can address unemployment, boost economic productivity, and integrate Pakistan into the global economy.
|
Preview/The_Case_for_Solidarity_Levies/The Case for Solidarity Levies.txt
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Global Solidarity Levies Task Force:
|
3 |
+
Launched at COP28 in 2023 with Barbados, France, and Kenya as co-chairs.
|
4 |
+
Aims to propose scalable, progressive levy options to address climate finance gaps.
|
5 |
+
Focuses on financial solidarity between developed and developing nations to achieve climate goals.
|
6 |
+
Proposed Levy Options and Potential Revenues
|
7 |
+
Shipping:
|
8 |
+
|
9 |
+
Responsible for 3% of global emissions.
|
10 |
+
Proposed levy rates range from $18.75 to $150/tonne of CO₂, increasing every five years.
|
11 |
+
Revenue Projections:
|
12 |
+
$127 billion annually (2027–2030) under high levy scenarios.
|
13 |
+
$60 billion annually in a decarbonized scenario by 2050.
|
14 |
+
Aviation:
|
15 |
+
|
16 |
+
Accounts for 2% of global emissions and benefits from tax exemptions (e.g., VAT).
|
17 |
+
Proposals include levies on kerosene fuel, private jets, and luxury tickets.
|
18 |
+
Revenue Projections:
|
19 |
+
$164 billion annually for global coverage.
|
20 |
+
$58 billion annually for levies on high-income countries only.
|
21 |
+
Fossil Fuels:
|
22 |
+
|
23 |
+
Proposals include extraction levies and windfall profit taxes on energy companies.
|
24 |
+
Revenue Projections:
|
25 |
+
Extraction levy: $3.5 trillion globally by 2030 ($5/tonne CO₂e, rising yearly).
|
26 |
+
Windfall tax: $212–$382 billion from major fossil fuel companies (2021–2023).
|
27 |
+
Financial Transactions:
|
28 |
+
|
29 |
+
A 0.1% tax on stocks and bonds and 0.01% on derivatives globally.
|
30 |
+
Revenue Projections:
|
31 |
+
$237.9–$418.8 billion annually.
|
32 |
+
Carbon Pricing:
|
33 |
+
|
34 |
+
Covers 24% of global emissions but is priced below effective climate targets.
|
35 |
+
Revenue Projections:
|
36 |
+
$104 billion in 2023 from current mechanisms.
|
37 |
+
$50/tonne carbon price could raise 0.5–2% of GDP by 2030.
|
38 |
+
Wealth Tax:
|
39 |
+
|
40 |
+
Proposed 2% global tax on dollar billionaires.
|
41 |
+
Revenue Projections:
|
42 |
+
$250 billion annually.
|
43 |
+
Cryptocurrency:
|
44 |
+
|
45 |
+
Taxes on energy usage for mining and transactions.
|
46 |
+
Revenue Projections:
|
47 |
+
$15.8 billion from transaction taxes.
|
48 |
+
$5.2 billion from energy use taxes (e.g., $0.045 per kWh for mining).
|
49 |
+
Key Goals of Solidarity Levies
|
50 |
+
Provide predictable and stable finance for climate action without increasing debt burdens.
|
51 |
+
Ensure those with the highest emissions and financial means contribute their fair share.
|
52 |
+
Enable all nations to raise ambitions for limiting temperature rise to 1.5°C.
|
53 |
+
Challenges
|
54 |
+
Legal and political barriers to implementing cross-border levies (e.g., aviation and financial transactions).
|
55 |
+
Need for consensus among countries with differing economic capacities and priorities.
|
56 |
+
Recommendations
|
57 |
+
Political Leadership:
|
58 |
+
Mobilize coalitions of willing nations to lead implementation.
|
59 |
+
Equitable Contributions:
|
60 |
+
Balance levy rates to ensure fairness for both developed and developing nations.
|
61 |
+
Innovative Financial Mechanisms:
|
62 |
+
Link levies with existing global initiatives (e.g., carbon markets, renewable energy projects).
|
63 |
+
Conclusion
|
64 |
+
Solidarity levies represent an essential tool for bridging the climate finance gap.
|
65 |
+
Ambitious leadership and collaboration are key to turning these proposals into actionable solutions.
|
66 |
+
The 10th anniversary of the Paris Agreement in 2025 could be a milestone for implementing these levies.
|
Preview/The_Decline_of_the_Sole_Superpower/The Decline of the Sole Superpower.txt
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
U.S. Global Dominance: Rooted in economic, military, technological, and institutional leadership.
|
3 |
+
Current Shift: The rise of multipolarity and regional powers is redefining global influence.
|
4 |
+
Key Pillars of U.S. Dominance
|
5 |
+
Economic Leadership:
|
6 |
+
|
7 |
+
Established post-Bretton Woods (1944) with institutions like the World Bank, IMF, and WTO.
|
8 |
+
The U.S. dollar’s dominance as the global exchange currency underpins this power.
|
9 |
+
Protector of the neoliberal economic order, giving leverage over capitalist democracies.
|
10 |
+
Military and Security Alliances:
|
11 |
+
|
12 |
+
Extensive global military presence: 450,000 active soldiers in 135+ countries.
|
13 |
+
Alliances like NATO, Quad, AUKUS, and BECA secure U.S. geopolitical interests.
|
14 |
+
"Global policeman" role through military interventions and security collaborations.
|
15 |
+
Containment Policy:
|
16 |
+
|
17 |
+
Successful containment of the USSR during the Cold War established post-Cold War dominance.
|
18 |
+
Current focus on containing rivals like China, Russia, Iran, and North Korea through sanctions and regional partnerships.
|
19 |
+
Partnerships in the Indo-Pacific (India, Japan, South Korea, Australia) target China’s expansion.
|
20 |
+
Technological Innovation:
|
21 |
+
|
22 |
+
Near monopoly on R&D and innovation (e.g., Meta, Microsoft, NASA, Google).
|
23 |
+
Leadership in AI, robotics, and space exploration reinforces global influence.
|
24 |
+
Manipulation of International Institutions:
|
25 |
+
|
26 |
+
Uses influence in organizations like the UN, IMF, and World Bank to shape global policies.
|
27 |
+
Historically exploited these institutions to uphold U.S. interests and suppress rivals.
|
28 |
+
Challenges to U.S. Dominance
|
29 |
+
Economic and Military Rise of China:
|
30 |
+
Establishment of rival institutions and technological advancements.
|
31 |
+
Belt and Road Initiative (BRI) strengthens China’s global economic reach.
|
32 |
+
Russia’s Resurgence:
|
33 |
+
New security dilemmas for the U.S., particularly in Europe.
|
34 |
+
Increasing alignment with China to challenge U.S.-led global order.
|
35 |
+
Emerging Multipolarity:
|
36 |
+
Middle powers like India, Brazil, Turkey, and Saudi Arabia gain influence.
|
37 |
+
Organizations like BRICS and SCO challenge the dominance of the U.S. dollar and military power.
|
38 |
+
Evolving Alliances:
|
39 |
+
Countries are exploring autonomy from U.S.-led systems, reshaping alliances.
|
40 |
+
Future Outlook
|
41 |
+
Dynamic Power Structures:
|
42 |
+
The traditional unipolar dominance of the U.S. is being replaced by a multipolar global order.
|
43 |
+
Emerging Economies:
|
44 |
+
Nations like China, India, and Brazil are reshaping global politics and economics.
|
45 |
+
Regional Autonomy:
|
46 |
+
Increased influence of regional powers is redefining the global balance of power.
|
47 |
+
Conclusion
|
48 |
+
Reevaluation of Dominance:
|
49 |
+
U.S. influence, while still significant, faces redefinition amidst rising global challenges.
|
50 |
+
Adaptation to Multipolarity:
|
51 |
+
The U.S. must navigate an increasingly complex geopolitical landscape to maintain its strategic interests.
|
Preview/The_Power_of_Big_Oil/The Power of Big Oil.txt
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Climate Emergency:
|
3 |
+
2024 is projected to be the warmest year on record, with global temperatures exceeding 1.5°C above pre-industrial levels.
|
4 |
+
Human-caused climate change, primarily driven by burning fossil fuels, is the key contributor to this crisis.
|
5 |
+
Role of Oil:
|
6 |
+
Oil remains the most consumed fossil fuel, underpinning transportation, electricity, industrial processes, and even plastics production.
|
7 |
+
The oil industry contributes about one-third of global carbon emissions, making it central to climate challenges.
|
8 |
+
Big Oil
|
9 |
+
Refers to the world's largest oil and gas companies, including state-owned entities.
|
10 |
+
Economic Power:
|
11 |
+
Generated $1 trillion in annual profits (1970–2020), peaking in 2022 due to energy price spikes post-Ukraine invasion.
|
12 |
+
Paid $111 billion to shareholders in 2022 alone.
|
13 |
+
Political Influence:
|
14 |
+
Funds academic research favorable to its interests.
|
15 |
+
Strong presence at global climate summits, with record lobbyist numbers at COP28, surpassing the combined representation of the 10 most climate-vulnerable nations.
|
16 |
+
Challenges to Climate Action
|
17 |
+
Industry Awareness and Negligence:
|
18 |
+
Major oil companies were aware of fossil fuels’ climate impact since the 1950s but ignored warnings.
|
19 |
+
Trillions continue to flow into fossil fuel development despite the International Energy Agency's (IEA) call for no new oil and gas projects to achieve net-zero by 2050.
|
20 |
+
Strategies to Delay Energy Transition:
|
21 |
+
Downplaying renewable energy viability.
|
22 |
+
Framing renewables as a threat to energy security and affordability.
|
23 |
+
Promoting market-based solutions over systemic changes.
|
24 |
+
Big Oil’s Role in Emissions
|
25 |
+
Oil and gas contributed over 50% of global fuel combustion emissions in 2022.
|
26 |
+
Investments in clean energy remain marginal:
|
27 |
+
$30 billion in 2023, only 4% of total capital expenditure.
|
28 |
+
Companies claim leadership in renewables and carbon capture technologies, but progress is slow.
|
29 |
+
Public Relations and Influence
|
30 |
+
Uses PR campaigns, media sponsorships, and think tanks to shape narratives favoring fossil fuels.
|
31 |
+
Promotes the perception of being essential to energy security while undermining renewable growth.
|
32 |
+
Key Figures and Observations
|
33 |
+
Scope 3 Emissions:
|
34 |
+
These emissions include customer combustion of fuels, the largest contributor to Big Oil’s carbon footprint.
|
35 |
+
Production Trends:
|
36 |
+
Short-term increases in production despite long-term plans to peak or decline.
|
37 |
+
Contradicts global calls for emission reductions.
|
38 |
+
Criticism and Calls for Action
|
39 |
+
Environmental and Social Costs:
|
40 |
+
The relentless pursuit of profit exacerbates climate breakdown and creates climate refugees.
|
41 |
+
Delayed energy transitions increase the risk of catastrophic climate impacts.
|
42 |
+
Lack of Regulation:
|
43 |
+
Fossil fuel executives resist voluntary emission cuts.
|
44 |
+
Meaningful progress requires enforceable policies from global leaders.
|
45 |
+
Conclusion
|
46 |
+
The fossil fuel industry remains a primary obstacle to climate action despite being aware of the consequences for decades.
|
47 |
+
Leaders must take decisive steps to regulate and transition away from oil dependency, leveraging existing solutions to address the climate crisis.
|
48 |
+
The urgency of the situation demands global solidarity and immediate action to avert further damage.
|
Preview/Trump_2.0_and_Pakistan's_Emerging_Foreign_Policy/Trump 2.0 and Pakistan's Emerging Foreign Policy.txt
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Global Context:
|
3 |
+
Geopolitical shifts under new leadership often lead to realignments in global power structures.
|
4 |
+
Donald Trump’s re-election as the 47th U.S. President in November 2024 is expected to significantly alter U.S. foreign policy, with implications for Pakistan.
|
5 |
+
Pakistan’s Historical Relations with the U.S.
|
6 |
+
Republican Governments:
|
7 |
+
Historically, Pakistan has fared better under Republican administrations (e.g., Nixon’s support during the 1971 War, Reagan’s assistance in the Afghan War).
|
8 |
+
Democratic Governments:
|
9 |
+
Periods marked by arms embargos and sanctions.
|
10 |
+
Transactional Nature:
|
11 |
+
U.S.-Pakistan relations have always been pragmatic and based on regional and global circumstances rather than consistent ideological alignment.
|
12 |
+
Key Dynamics under Trump 2.0
|
13 |
+
China Policy:
|
14 |
+
|
15 |
+
U.S.-China tensions are likely to intensify under Trump’s assertive stance.
|
16 |
+
Pakistan’s strong economic ties with China (e.g., Belt and Road Initiative) could create friction with the U.S.
|
17 |
+
Pakistan may face sanctions, as seen with U.S. penalties on China-related military hardware.
|
18 |
+
Economic Policies:
|
19 |
+
|
20 |
+
Trump’s protectionist policies, including high tariffs, could disrupt global trade and Pakistan’s economy.
|
21 |
+
Pakistan’s reliance on Chinese economic support places it at odds with U.S. priorities.
|
22 |
+
Military Relations:
|
23 |
+
|
24 |
+
Unlikely to receive military hardware from the U.S. due to India’s strategic importance in the Indo-Pacific.
|
25 |
+
Continued reliance on Turkiye and China for military support may attract U.S. scrutiny.
|
26 |
+
Strategic Considerations for Pakistan
|
27 |
+
Economic Dependencies:
|
28 |
+
|
29 |
+
Pakistan’s reliance on U.S. engagement is crucial, particularly in light of its IMF loan program.
|
30 |
+
Simultaneously, its dependence on China for infrastructure, energy, and trade limits flexibility.
|
31 |
+
"Benign Realignment" Strategy:
|
32 |
+
|
33 |
+
Engage diplomatically with both the U.S. and China to balance relationships:
|
34 |
+
Warm relations with China when U.S.-China tensions ease.
|
35 |
+
Maintain impartiality during periods of antagonism between the two powers.
|
36 |
+
Focus on trade and economic partnerships rather than financial aid dependency.
|
37 |
+
Regional Stability:
|
38 |
+
|
39 |
+
U.S. support may continue for counter-terrorism efforts in Afghanistan.
|
40 |
+
Maintain strategic balance to avoid becoming entangled in U.S.-China competition.
|
41 |
+
Potential Risks
|
42 |
+
Strained U.S.-Pakistan Relations:
|
43 |
+
Pakistan’s dependence on China could lead to mistrust from the U.S.
|
44 |
+
Risk of sanctions or reduced diplomatic engagement.
|
45 |
+
Economic Vulnerabilities:
|
46 |
+
Protectionist U.S. policies may disrupt trade.
|
47 |
+
Reliance on external aid and investment limits policy independence.
|
48 |
+
Policy Recommendations
|
49 |
+
Diversify Economic Partnerships:
|
50 |
+
Reduce overreliance on China by expanding trade relations with other nations.
|
51 |
+
Strengthen Regional Cooperation:
|
52 |
+
Engage with regional forums and neighboring countries to build a resilient economy.
|
53 |
+
Focus on Stability and Growth:
|
54 |
+
Shift foreign policy from aid-seeking to trade-focused strategies.
|
55 |
+
Avoid Provocation:
|
56 |
+
Exercise caution to ensure neutrality in U.S.-China tensions.
|
57 |
+
Conclusion
|
58 |
+
The Trump administration’s transactional approach and assertive policies pose challenges and opportunities for Pakistan.
|
59 |
+
By adopting a strategy of "benign realignment" and prioritizing economic resilience, Pakistan can navigate the complexities of global power dynamics while safeguarding its national interests.
|
Preview/Trump_and_the_World_2.0/Trump and the World 2.0.txt
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Donald Trump’s second presidency will inherit a world marked by strategic fatigue in ongoing conflicts and a sharp rise in U.S.-China rivalry.
|
3 |
+
Key global theaters like Russia-Ukraine and Israel-Lebanon present evolving challenges.
|
4 |
+
Global Dynamics
|
5 |
+
Russia-Ukraine Conflict:
|
6 |
+
|
7 |
+
Strategic exhaustion and Russian on-ground successes complicate U.S. diplomatic leverage.
|
8 |
+
Trump’s insistence on Ukraine staying out of NATO is unlikely to gain European support.
|
9 |
+
Middle East:
|
10 |
+
|
11 |
+
Iran's nuclear program has accelerated post-JCPOA withdrawal.
|
12 |
+
Regional instability persists with active threats from Houthis, Hamas, and Hezbollah.
|
13 |
+
China as the Primary Foe:
|
14 |
+
|
15 |
+
China’s Belt and Road Initiative (BRI) and strengthening military position challenge U.S. hegemony.
|
16 |
+
The appointment of hawkish figures like Marco Rubio and Mike Waltz underscores a confrontational stance.
|
17 |
+
The U.S. Navy’s war-readiness plan for 2027 reflects preparations for potential conflict in the Pacific.
|
18 |
+
Indo-Pacific Strategy:
|
19 |
+
|
20 |
+
Australia is apprehensive about the future of AUKUS, fearing Trump’s "America First" policy might prioritize U.S. naval interests over partnerships.
|
21 |
+
Biden’s Indo-Pacific strategy may face significant revisions under Trump.
|
22 |
+
Implications for Pakistan
|
23 |
+
Geopolitical Pressures:
|
24 |
+
|
25 |
+
U.S. support for India aims to counter China and disrupt Pakistan’s China-Pakistan Economic Corridor (CPEC).
|
26 |
+
Possible U.S. efforts to destabilize Pakistan through economic and political means to hinder CPEC’s success.
|
27 |
+
Internal Challenges:
|
28 |
+
|
29 |
+
Pakistan faces persistent internal instability with daily attacks in regions like Khyber Pakhtunkhwa and Balochistan.
|
30 |
+
Ineffective political leadership and hollow responses to violence exacerbate the crisis.
|
31 |
+
Path Forward for Pakistan:
|
32 |
+
|
33 |
+
Focus on domestic security and political stability to counter external machinations.
|
34 |
+
Rebooting CPEC is vital for economic recovery and resisting regional isolation.
|
35 |
+
Key Allies and Adversaries in Trump 2.0
|
36 |
+
India:
|
37 |
+
Elevated as the primary strategic ally in the Indo-Pacific.
|
38 |
+
A key outpost for advancing U.S. interests against China.
|
39 |
+
China:
|
40 |
+
Cemented as the top adversary with strategies to contain its rise.
|
41 |
+
CPEC’s disruption is central to undermining China’s BRI ambitions.
|
42 |
+
Israel:
|
43 |
+
Expected to remain the greatest beneficiary of Trump’s foreign policy.
|
44 |
+
Challenges to Trump’s Vision
|
45 |
+
Declining U.S. Power:
|
46 |
+
Dependence on military dominance is at odds with growing multipolarity.
|
47 |
+
Trump’s aggressive policies could falter against China’s sustained rise.
|
48 |
+
Complex Ground Realities:
|
49 |
+
Balancing the “America First” philosophy with global responsibilities remains a critical challenge.
|
50 |
+
Conclusion
|
51 |
+
U.S.-China Rivalry:
|
52 |
+
The core focus of Trump’s foreign policy will be to counter China’s growing influence.
|
53 |
+
Opportunities and Risks for Pakistan:
|
54 |
+
Stability and economic revival through CPEC are critical to counteracting external pressures.
|
55 |
+
Pakistan must strategically balance relations with both the U.S. and China.
|
56 |
+
Global Shifts:
|
57 |
+
Trump’s return signals an era of intensified U.S. assertiveness but also exposes its vulnerabilities in a changing world.
|
Preview/Trump_vs_BRICS/Trump vs BRICS.txt
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Trump’s Statement:
|
3 |
+
Threatened a 100% tariff on BRICS countries if they develop or support a rival currency to the U.S. dollar.
|
4 |
+
Highlights U.S. concerns over maintaining dollar dominance in global finance and trade.
|
5 |
+
BRICS:
|
6 |
+
A bloc of nine nations (Brazil, Russia, India, China, South Africa, Egypt, Iran, UAE, and Ethiopia) seeking to challenge Western financial hegemony.
|
7 |
+
Proposals for a common currency aim to reduce reliance on the dollar.
|
8 |
+
U.S. Dollar’s Global Role
|
9 |
+
Core Functions:
|
10 |
+
Used in international payments, trade invoices, foreign exchange reserves, debt, and loans.
|
11 |
+
Accounts for 59% of global foreign currency reserves and 58% of international payments (2024).
|
12 |
+
Factors Behind Dollar Dominance:
|
13 |
+
Large and dynamic U.S. economy (~25% of global GDP).
|
14 |
+
Robust investor protections and legal framework.
|
15 |
+
Open and deep capital markets.
|
16 |
+
Petrodollar agreement with Saudi Arabia ensures steady capital flows.
|
17 |
+
Challenges to Dollar Dominance
|
18 |
+
Relative Decline:
|
19 |
+
Share of dollar in global reserves fell from 70% in 2000 to 59% in 2024.
|
20 |
+
Geopolitical fragmentation and the rise of the Global South contribute to this trend.
|
21 |
+
BRICS as a Counterweight:
|
22 |
+
Represents 46% of the global population and 35.6% of GDP (PPP).
|
23 |
+
Proposals for alternative currencies gained momentum after U.S. sanctions on Russia and Iran highlighted the dollar’s weaponization.
|
24 |
+
Feasibility of a BRICS Currency
|
25 |
+
Challenges:
|
26 |
+
Lack of institutions for creating and managing a common currency.
|
27 |
+
Absence of a banking union, fiscal union, or shared central market.
|
28 |
+
Geopolitical tensions among members, particularly China and India.
|
29 |
+
Dominance of China in any potential BRICS currency raises concerns among smaller members.
|
30 |
+
Historical Context:
|
31 |
+
Developing a common currency, like the Euro, took the EU over 50 years.
|
32 |
+
BRICS faces far greater structural and political hurdles.
|
33 |
+
Trump’s Concerns
|
34 |
+
Impact of Local Currencies:
|
35 |
+
Increased use of local currencies in trade threatens the dollar’s primacy.
|
36 |
+
BRICS initiatives to develop payment systems outside SWIFT and CHIPS bypass U.S.-led sanctions.
|
37 |
+
Advantages of Dollar Hegemony:
|
38 |
+
Reduces borrowing costs for the U.S. government.
|
39 |
+
Enables global sanctions and economic coercion.
|
40 |
+
Potential Consequences of Trump’s Threats
|
41 |
+
Unintended Backlash:
|
42 |
+
Accelerated use of bilateral currencies for trade.
|
43 |
+
Increased fragmentation of global financial systems.
|
44 |
+
Economic Implications:
|
45 |
+
Imposing 100% tariffs would raise U.S. import prices, fueling inflation and harming the domestic economy.
|
46 |
+
Long-Term Risks to Dollar Hegemony:
|
47 |
+
Coercive policies undermine global confidence in the dollar.
|
48 |
+
Future Outlook
|
49 |
+
BRICS’ Limited Immediate Threat:
|
50 |
+
A rival currency remains unlikely in the short term due to political and logistical challenges.
|
51 |
+
India’s reluctance to de-dollarize further reduces momentum for a common currency.
|
52 |
+
Emerging Trends:
|
53 |
+
Gradual shift toward local currency trade by the Global South.
|
54 |
+
Calls for reform in international financial institutions to reflect the rise of emerging economies.
|
55 |
+
Conclusion
|
56 |
+
No Immediate Threat:
|
57 |
+
Trump’s concerns over a BRICS currency may be exaggerated; creating such a currency is a complex, long-term endeavor.
|
58 |
+
Global Financial Reform:
|
59 |
+
The Global South should focus on reducing dollar reliance through local currencies and reforms in global financial governance.
|
60 |
+
U.S. Policy Risks:
|
61 |
+
Overreaction to non-existent threats could erode the dollar’s position and harm U.S. economic interests.
|
Preview/US-China_Trade_War/US-China Trade War.txt
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Trump’s Second Term:
|
3 |
+
Signals an escalation of the US-China trade war, with potential tariffs as high as 60% on Chinese goods.
|
4 |
+
Reflects Trump’s "America First" policy and hardline stance against China.
|
5 |
+
Implications:
|
6 |
+
Trade wars create both distortions and opportunities in global markets, impacting various economies.
|
7 |
+
Key Elements of Trump’s Trade War Strategy
|
8 |
+
Cabinet Appointments:
|
9 |
+
Key positions filled by China hawks (e.g., Marco Rubio as Secretary of State, John Ratcliffe as CIA head, and Michael Waltz as National Security Adviser).
|
10 |
+
Indicates an uncompromising approach to China as a strategic rival.
|
11 |
+
Tariff Beliefs:
|
12 |
+
Trump perceives tariffs as a financial tool to bolster the U.S. economy, with the belief that costs are borne by exporters.
|
13 |
+
Research, however, indicates that importers, consumers, and foreign manufacturers share the burden.
|
14 |
+
Phase One Trade Deal Disappointment:
|
15 |
+
Discontent with previous trade agreements may lead to a more aggressive stance.
|
16 |
+
Impacts of the Trade War
|
17 |
+
Global Economic Effects:
|
18 |
+
Higher tariffs could disrupt supply chains and global trade flows.
|
19 |
+
Non-participating countries may benefit from trade diversions.
|
20 |
+
Opportunities for Pakistan:
|
21 |
+
Increased competitiveness of Pakistani textiles and other goods in the U.S. market due to high tariffs on Chinese products.
|
22 |
+
Potential for Pakistan to boost exports in areas like textiles, surgical tools, and sportswear.
|
23 |
+
Potential Gains for Pakistan
|
24 |
+
High Tariffs on Chinese Goods:
|
25 |
+
Creates an opening for Pakistani exports to fill gaps in the U.S. market.
|
26 |
+
Categories with potential include engineering goods, packaging, footwear, furniture, and jewelry.
|
27 |
+
Relocation of Chinese Industries:
|
28 |
+
To evade tariffs, Chinese manufacturers may relocate labor-intensive industries to Pakistan.
|
29 |
+
Such moves could be facilitated by Pakistan’s infrastructure improvements under CPEC.
|
30 |
+
Economic Opportunities
|
31 |
+
Special Economic Zones (SEZs):
|
32 |
+
Relocated industries could spur SEZ development in Pakistan.
|
33 |
+
Attracts additional foreign investments and boosts economic growth.
|
34 |
+
Geostrategic Advantage:
|
35 |
+
Pakistan’s location positions it as a hub for global trade and investment.
|
36 |
+
Could serve as a manufacturing base for other nations seeking to bypass trade restrictions.
|
37 |
+
Challenges and Recommendations
|
38 |
+
Challenges:
|
39 |
+
Political and economic instability in Pakistan could deter investors.
|
40 |
+
Overestimating or underestimating its potential may lead to missteps in policy.
|
41 |
+
Recommendations:
|
42 |
+
Closely monitor developments in the US-China trade war.
|
43 |
+
Develop strategic action plans aligned with geopolitical and economic realities.
|
44 |
+
Avoid hasty decisions and assess long-term feasibility of investment and export strategies.
|
45 |
+
Conclusion
|
46 |
+
Opportunity Amidst Conflict:
|
47 |
+
The US-China trade war offers Pakistan a unique chance to increase exports and attract foreign investment.
|
48 |
+
Strategic Approach Needed:
|
49 |
+
The government must tread carefully, leveraging the trade war to position Pakistan as a key player in global markets.
|
50 |
+
Balanced Policy:
|
51 |
+
A measured and well-planned response can turn one of the greatest economic shifts into a transformative opportunity for Pakistan.
|
Preview/War_on_Humanity/War on Humanity.txt
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Focus: The humanitarian crisis in Gaza, driven by Israeli military actions and compounded by global political failures.
|
3 |
+
Key Themes: Crimes against humanity, global complicity, and the need for ethical and moral leadership.
|
4 |
+
Humanitarian Crisis in Gaza
|
5 |
+
Impact of Israeli Military Actions:
|
6 |
+
|
7 |
+
Amnesty International and the UN have reported war crimes, genocide, and crimes against humanity in Gaza.
|
8 |
+
Over 45,000 civilians massacred, with 16,000 children and women killed.
|
9 |
+
Continuous bombardment by Israeli forces, using U.S.-supplied weapons, has devastated infrastructure, including hospitals, schools, and places of worship.
|
10 |
+
Scale of Destruction:
|
11 |
+
|
12 |
+
Bombings equivalent to four Hiroshima nuclear bombs have been dropped on Gaza.
|
13 |
+
Tens of thousands remain buried under rubble, with unaccounted casualties mounting.
|
14 |
+
Global Silence and Complicity:
|
15 |
+
|
16 |
+
Western leaders and institutions have largely ignored these atrocities.
|
17 |
+
Arab and Muslim leaders are criticized for their inaction, described as complicit in the suffering of Palestinians.
|
18 |
+
Underlying Motivations
|
19 |
+
Strategic Goals:
|
20 |
+
Israeli plans to depopulate Gaza and seize its natural resources, including offshore gas reserves.
|
21 |
+
Historical context: Military operations like “Operation Cast Lead” aimed at occupation and expulsion of Palestinians.
|
22 |
+
Geopolitical Dynamics:
|
23 |
+
Arab-Muslim leaders’ failures have left the Palestinian cause marginalized.
|
24 |
+
Western powers’ selective application of human rights principles exacerbates the crisis.
|
25 |
+
Moral and Ethical Perspectives
|
26 |
+
Divine Teachings:
|
27 |
+
Quranic verses stress justice, the sanctity of life, and universal brotherhood, contrasting with the ongoing atrocities.
|
28 |
+
Call for Humanity:
|
29 |
+
Scholars and thinkers urge a collective awakening to protect human dignity and sustainable peace.
|
30 |
+
Failure to act is described as a betrayal of humanity and an endorsement of global dehumanization.
|
31 |
+
Criticism of Global Leadership
|
32 |
+
Western Hypocrisy:
|
33 |
+
Leaders like U.S. President Joe Biden are accused of enabling Israeli aggression under the guise of peacemaking.
|
34 |
+
The “Two-State Solution” rhetoric is seen as hollow, with no tangible steps taken to ensure its implementation.
|
35 |
+
Arab-Muslim Leadership:
|
36 |
+
Described as ineffective and complicit, enabling Israel’s expansionist policies through inaction.
|
37 |
+
Key Observations
|
38 |
+
Dehumanization of Palestinians:
|
39 |
+
Systematic efforts to delegitimize Palestinian identity and rights.
|
40 |
+
Proposed plans for forced relocation to Egypt underline the disregard for Palestinian sovereignty.
|
41 |
+
Global Indifference:
|
42 |
+
International institutions have failed to uphold principles of fairness and human dignity in addressing the conflict.
|
43 |
+
Recommendations and Reflections
|
44 |
+
Proactive Global Leadership:
|
45 |
+
The international community must converge to hold perpetrators accountable and protect civilian lives.
|
46 |
+
Equitable treatment for all parties in the conflict is crucial to restore faith in global governance.
|
47 |
+
Need for Ethical Leadership:
|
48 |
+
Moral and spiritually enlightened leaders are essential to counter escalating injustices and ensure peace.
|
49 |
+
Call to Humanity:
|
50 |
+
Scholars and thinkers advocate for a collective reawakening to prioritize human dignity and sustainability over geopolitical interests.
|
51 |
+
Conclusion
|
52 |
+
The Gaza conflict represents a failure of humanity, where political, ethnic, and cultural divisions have overridden ethical considerations.
|
53 |
+
There is an urgent need for global solidarity, moral courage, and systemic reforms to prevent further atrocities and protect the rights of all people.
|
Preview/Women's_Suppression_in_Afghanistan/Women's Suppression in Afghanistan.txt
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Context: Since the Taliban regained power in 2021, women’s rights in Afghanistan have been systematically curtailed under strict interpretations of Sharia law.
|
3 |
+
Global Recognition: Afghanistan is now considered “the most repressive country in the world [for] women’s rights” (UNAMA).
|
4 |
+
Human Rights Framework
|
5 |
+
Universal Declaration of Human Rights (UDHR):
|
6 |
+
Affirms rights like life, freedom, education, work, and social security for all, irrespective of gender.
|
7 |
+
Denying these rights is a crime against humanity under international law.
|
8 |
+
SDG Goal 5:
|
9 |
+
Calls for gender equality and empowerment of women and girls worldwide.
|
10 |
+
Historical Context
|
11 |
+
Pre-2021 Period:
|
12 |
+
Under U.S.-backed governance (2001–2021), Afghan women experienced advancements in education, political representation, and personal freedoms.
|
13 |
+
Despite challenges, rights were constitutionally recognized.
|
14 |
+
Taliban Era (1996–2001):
|
15 |
+
Harsh restrictions on women’s rights, now reinstated with the Taliban’s return to power.
|
16 |
+
Current Restrictions Under Taliban Rule
|
17 |
+
Key Restrictions:
|
18 |
+
Ban on education for girls aged 11 and above.
|
19 |
+
Closure of female salons and prohibition on women speaking, singing, or reading in public.
|
20 |
+
Exclusion from public parks and public life, including policymaking and cabinet representation.
|
21 |
+
Travel restrictions requiring a male chaperone.
|
22 |
+
Mandatory covering of the body and face.
|
23 |
+
Male doctors barred from treating female patients, exacerbating healthcare access issues.
|
24 |
+
Enforcement:
|
25 |
+
Ministry for the Propagation of Virtue and the Prevention of Vice enforces these laws, reinstating measures from their earlier rule.
|
26 |
+
Impact on Women
|
27 |
+
Healthcare:
|
28 |
+
Lack of female doctors severely limits access to healthcare.
|
29 |
+
Social Exclusion:
|
30 |
+
Women are effectively barred from public life and economic participation.
|
31 |
+
Media Suppression:
|
32 |
+
Crackdown on media coverage of women’s rights issues.
|
33 |
+
Human Rights Violations:
|
34 |
+
Described as systemic repression affecting nearly all aspects of women’s lives (Amnesty International).
|
35 |
+
Resilience and Resistance
|
36 |
+
Protests and Advocacy:
|
37 |
+
Women have taken to the streets to peacefully protest against the Taliban’s oppressive policies.
|
38 |
+
Online Platforms:
|
39 |
+
Leveraging social media to raise awareness and educate others.
|
40 |
+
Secret Education:
|
41 |
+
Women are organizing covert educational efforts to continue learning and teaching.
|
42 |
+
Economic Initiatives:
|
43 |
+
Utilizing online platforms to run businesses and earn livelihoods for their families.
|
44 |
+
Broader Implications
|
45 |
+
Global Responsibility:
|
46 |
+
International organizations and nations must prioritize advocacy and aid for Afghan women.
|
47 |
+
Moral and Ethical Call:
|
48 |
+
The repression of women is a crime against humanity that demands collective global action.
|
49 |
+
Conclusion
|
50 |
+
Call for Change:
|
51 |
+
Afghan women demonstrate courage and resilience despite oppressive conditions.
|
52 |
+
The international community must act to ensure human rights and freedoms for Afghan women and hold the Taliban accountable for violations.
|
Prview/Going_Down_with_Democracy/Going Down with Democracy.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
The 20th century saw the rise and consolidation of democracy, culminating in the so-called "victory of democracy" after the Cold War.
|
3 |
+
The 21st century marks democratic regression with the rise of autocratic models (e.g., China, Russia) and the weakening of democratic values.
|
4 |
+
Technology, identity politics, and the decline of participatory governance challenge the democratic ideal.
|
5 |
+
Key Issues
|
6 |
+
Selective Freedom of Speech and Cancel Culture
|
7 |
+
Role of Big Tech:
|
8 |
+
Platforms like Meta, X (formerly Twitter), and Google significantly influence political discourse.
|
9 |
+
Selective censorship undermines freedom of speech, as seen with Elon Musk's management of X.
|
10 |
+
Government Interference:
|
11 |
+
Examples include compliance with government requests for censorship (e.g., Turkey, India).
|
12 |
+
This erodes the level playing field in democratic processes and suppresses political debate.
|
13 |
+
Spread of Disinformation:
|
14 |
+
Viral social media content amplifies false narratives, overwhelming the capacity for verification.
|
15 |
+
Platforms prioritize sensational content for monetization, further distorting truth.
|
16 |
+
From Active Participation to Passive Clicktivism
|
17 |
+
Political Impassivity:
|
18 |
+
Social media has reduced democracy to a spectator sport, fostering passive activism.
|
19 |
+
Users feel a false sense of achievement through actions like liking posts or tweeting about causes.
|
20 |
+
Decline in Concrete Actions:
|
21 |
+
Real political participation, like organizing movements or influencing policymaking, has diminished.
|
22 |
+
Online engagement often replaces meaningful efforts for social change.
|
23 |
+
The Unfamiliar Market of Ideas
|
24 |
+
Failure of the Free Market of Ideas:
|
25 |
+
The classic liberal concept that good ideas will outcompete bad ones has failed in the age of social media.
|
26 |
+
Lies, disinformation, and propaganda thrive due to platform algorithms favoring sensationalism.
|
27 |
+
Manipulation of Public Fears:
|
28 |
+
Human psychology is manipulated by "fear instinct" and "negativity instinct," as described by Hans Rosling.
|
29 |
+
Negative and fear-inducing content garners more attention, suppressing rational discourse.
|
30 |
+
Technological Threats to Democracy
|
31 |
+
Tech giants' control over information undermines the democratic process.
|
32 |
+
CEOs of major platforms have disproportionate influence on political behavior, election outcomes, and public debate.
|
33 |
+
This shift risks reducing democracy from "by the people" to control by a few powerful individuals.
|
34 |
+
Future Considerations
|
35 |
+
Government Regulation:
|
36 |
+
Governments need to regulate tech platforms to ensure fair practices and accountability.
|
37 |
+
Promoting Active Participation:
|
38 |
+
Encourage grassroots political engagement and education to revive participatory democracy.
|
39 |
+
Restoring the Free Market of Ideas:
|
40 |
+
Limit manipulation by tech platforms and prioritize transparency in information dissemination.
|
41 |
+
Conclusion
|
42 |
+
The democratic ideal faces significant challenges in the modern age of technological disruptions.
|
43 |
+
Without addressing these threats, the future risks being dominated by a few tech leaders rather than the collective will of the people.
|
44 |
+
Governments and citizens must collaborate to preserve democracy's integrity and ensure it remains resilient in the face of evolving challenges.
|
Prview/The_Power_of_Big_Oil/The Power of Big Oil.txt
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Climate Emergency:
|
3 |
+
2024 is projected to be the warmest year on record, with global temperatures exceeding 1.5°C above pre-industrial levels.
|
4 |
+
Human-caused climate change, primarily driven by burning fossil fuels, is the key contributor to this crisis.
|
5 |
+
Role of Oil:
|
6 |
+
Oil remains the most consumed fossil fuel, underpinning transportation, electricity, industrial processes, and even plastics production.
|
7 |
+
The oil industry contributes about one-third of global carbon emissions, making it central to climate challenges.
|
8 |
+
Big Oil
|
9 |
+
Refers to the world's largest oil and gas companies, including state-owned entities.
|
10 |
+
Economic Power:
|
11 |
+
Generated $1 trillion in annual profits (1970–2020), peaking in 2022 due to energy price spikes post-Ukraine invasion.
|
12 |
+
Paid $111 billion to shareholders in 2022 alone.
|
13 |
+
Political Influence:
|
14 |
+
Funds academic research favorable to its interests.
|
15 |
+
Strong presence at global climate summits, with record lobbyist numbers at COP28, surpassing the combined representation of the 10 most climate-vulnerable nations.
|
16 |
+
Challenges to Climate Action
|
17 |
+
Industry Awareness and Negligence:
|
18 |
+
Major oil companies were aware of fossil fuels’ climate impact since the 1950s but ignored warnings.
|
19 |
+
Trillions continue to flow into fossil fuel development despite the International Energy Agency's (IEA) call for no new oil and gas projects to achieve net-zero by 2050.
|
20 |
+
Strategies to Delay Energy Transition:
|
21 |
+
Downplaying renewable energy viability.
|
22 |
+
Framing renewables as a threat to energy security and affordability.
|
23 |
+
Promoting market-based solutions over systemic changes.
|
24 |
+
Big Oil’s Role in Emissions
|
25 |
+
Oil and gas contributed over 50% of global fuel combustion emissions in 2022.
|
26 |
+
Investments in clean energy remain marginal:
|
27 |
+
$30 billion in 2023, only 4% of total capital expenditure.
|
28 |
+
Companies claim leadership in renewables and carbon capture technologies, but progress is slow.
|
29 |
+
Public Relations and Influence
|
30 |
+
Uses PR campaigns, media sponsorships, and think tanks to shape narratives favoring fossil fuels.
|
31 |
+
Promotes the perception of being essential to energy security while undermining renewable growth.
|
32 |
+
Key Figures and Observations
|
33 |
+
Scope 3 Emissions:
|
34 |
+
These emissions include customer combustion of fuels, the largest contributor to Big Oil’s carbon footprint.
|
35 |
+
Production Trends:
|
36 |
+
Short-term increases in production despite long-term plans to peak or decline.
|
37 |
+
Contradicts global calls for emission reductions.
|
38 |
+
Criticism and Calls for Action
|
39 |
+
Environmental and Social Costs:
|
40 |
+
The relentless pursuit of profit exacerbates climate breakdown and creates climate refugees.
|
41 |
+
Delayed energy transitions increase the risk of catastrophic climate impacts.
|
42 |
+
Lack of Regulation:
|
43 |
+
Fossil fuel executives resist voluntary emission cuts.
|
44 |
+
Meaningful progress requires enforceable policies from global leaders.
|
45 |
+
Conclusion
|
46 |
+
The fossil fuel industry remains a primary obstacle to climate action despite being aware of the consequences for decades.
|
47 |
+
Leaders must take decisive steps to regulate and transition away from oil dependency, leveraging existing solutions to address the climate crisis.
|
48 |
+
The urgency of the situation demands global solidarity and immediate action to avert further damage.
|
Prview/Trump_and_the_World_2.0/Trump and the World 2.0.txt
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Overview
|
2 |
+
Donald Trump’s second presidency will inherit a world marked by strategic fatigue in ongoing conflicts and a sharp rise in U.S.-China rivalry.
|
3 |
+
Key global theaters like Russia-Ukraine and Israel-Lebanon present evolving challenges.
|
4 |
+
Global Dynamics
|
5 |
+
Russia-Ukraine Conflict:
|
6 |
+
|
7 |
+
Strategic exhaustion and Russian on-ground successes complicate U.S. diplomatic leverage.
|
8 |
+
Trump’s insistence on Ukraine staying out of NATO is unlikely to gain European support.
|
9 |
+
Middle East:
|
10 |
+
|
11 |
+
Iran's nuclear program has accelerated post-JCPOA withdrawal.
|
12 |
+
Regional instability persists with active threats from Houthis, Hamas, and Hezbollah.
|
13 |
+
China as the Primary Foe:
|
14 |
+
|
15 |
+
China’s Belt and Road Initiative (BRI) and strengthening military position challenge U.S. hegemony.
|
16 |
+
The appointment of hawkish figures like Marco Rubio and Mike Waltz underscores a confrontational stance.
|
17 |
+
The U.S. Navy’s war-readiness plan for 2027 reflects preparations for potential conflict in the Pacific.
|
18 |
+
Indo-Pacific Strategy:
|
19 |
+
|
20 |
+
Australia is apprehensive about the future of AUKUS, fearing Trump’s "America First" policy might prioritize U.S. naval interests over partnerships.
|
21 |
+
Biden’s Indo-Pacific strategy may face significant revisions under Trump.
|
22 |
+
Implications for Pakistan
|
23 |
+
Geopolitical Pressures:
|
24 |
+
|
25 |
+
U.S. support for India aims to counter China and disrupt Pakistan’s China-Pakistan Economic Corridor (CPEC).
|
26 |
+
Possible U.S. efforts to destabilize Pakistan through economic and political means to hinder CPEC’s success.
|
27 |
+
Internal Challenges:
|
28 |
+
|
29 |
+
Pakistan faces persistent internal instability with daily attacks in regions like Khyber Pakhtunkhwa and Balochistan.
|
30 |
+
Ineffective political leadership and hollow responses to violence exacerbate the crisis.
|
31 |
+
Path Forward for Pakistan:
|
32 |
+
|
33 |
+
Focus on domestic security and political stability to counter external machinations.
|
34 |
+
Rebooting CPEC is vital for economic recovery and resisting regional isolation.
|
35 |
+
Key Allies and Adversaries in Trump 2.0
|
36 |
+
India:
|
37 |
+
Elevated as the primary strategic ally in the Indo-Pacific.
|
38 |
+
A key outpost for advancing U.S. interests against China.
|
39 |
+
China:
|
40 |
+
Cemented as the top adversary with strategies to contain its rise.
|
41 |
+
CPEC’s disruption is central to undermining China’s BRI ambitions.
|
42 |
+
Israel:
|
43 |
+
Expected to remain the greatest beneficiary of Trump’s foreign policy.
|
44 |
+
Challenges to Trump’s Vision
|
45 |
+
Declining U.S. Power:
|
46 |
+
Dependence on military dominance is at odds with growing multipolarity.
|
47 |
+
Trump’s aggressive policies could falter against China’s sustained rise.
|
48 |
+
Complex Ground Realities:
|
49 |
+
Balancing the “America First” philosophy with global responsibilities remains a critical challenge.
|
50 |
+
Conclusion
|
51 |
+
U.S.-China Rivalry:
|
52 |
+
The core focus of Trump’s foreign policy will be to counter China’s growing influence.
|
53 |
+
Opportunities and Risks for Pakistan:
|
54 |
+
Stability and economic revival through CPEC are critical to counteracting external pressures.
|
55 |
+
Pakistan must strategically balance relations with both the U.S. and China.
|
56 |
+
Global Shifts:
|
57 |
+
Trump’s return signals an era of intensified U.S. assertiveness but also exposes its vulnerabilities in a changing world.
|
WRONG_Question.txt
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Importing dependencies
|
2 |
+
from dotenv import load_dotenv
|
3 |
+
import streamlit as st
|
4 |
+
from PyPDF2 import PdfReader
|
5 |
+
from langchain.text_splitter import CharacterTextSplitter
|
6 |
+
from langchain.embeddings import HuggingFaceEmbeddings
|
7 |
+
from langchain.vectorstores import FAISS
|
8 |
+
from langchain.prompts import PromptTemplate
|
9 |
+
from langchain.memory import ConversationBufferMemory
|
10 |
+
from langchain.chains import ConversationalRetrievalChain
|
11 |
+
from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
|
12 |
+
from htmlTemplates import css, bot_template, user_template
|
13 |
+
|
14 |
+
# Load environment variables
|
15 |
+
load_dotenv()
|
16 |
+
|
17 |
+
# Creating custom template to guide LLM model
|
18 |
+
custom_template = """Given the following conversation and a follow-up question, rephrase the follow-up question to be a standalone question, in its original language.
|
19 |
+
Chat History:
|
20 |
+
{chat_history}
|
21 |
+
Follow Up Input: {question}
|
22 |
+
Standalone question:"""
|
23 |
+
|
24 |
+
CUSTOM_QUESTION_PROMPT = PromptTemplate.from_template(custom_template)
|
25 |
+
|
26 |
+
# Extracting text from PDF
|
27 |
+
def get_pdf_text(docs):
|
28 |
+
text = ""
|
29 |
+
for pdf in docs:
|
30 |
+
pdf_reader = PdfReader(pdf)
|
31 |
+
for page in pdf_reader.pages:
|
32 |
+
text += page.extract_text()
|
33 |
+
return text
|
34 |
+
|
35 |
+
# Converting text to chunks
|
36 |
+
def get_chunks(raw_text):
|
37 |
+
text_splitter = CharacterTextSplitter(
|
38 |
+
separator="\n",
|
39 |
+
chunk_size=1000,
|
40 |
+
chunk_overlap=200,
|
41 |
+
length_function=len
|
42 |
+
)
|
43 |
+
chunks = text_splitter.split_text(raw_text)
|
44 |
+
return chunks
|
45 |
+
|
46 |
+
# Using Hugging Face embeddings model and FAISS to create vectorstore
|
47 |
+
def get_vectorstore(chunks):
|
48 |
+
embeddings = HuggingFaceEmbeddings(
|
49 |
+
model_name="sentence-transformers/all-MiniLM-L6-v2",
|
50 |
+
model_kwargs={'device': 'cpu'}
|
51 |
+
)
|
52 |
+
vectorstore = FAISS.from_texts(texts=chunks, embedding=embeddings)
|
53 |
+
return vectorstore
|
54 |
+
|
55 |
+
# Generating conversation chain
|
56 |
+
def get_conversationchain(vectorstore):
|
57 |
+
# Use a Hugging Face model for question-answering
|
58 |
+
model_name = "distilbert-base-uncased-distilled-squad" # Pretrained QA model
|
59 |
+
qa_pipeline = pipeline("question-answering", model=model_name, tokenizer=model_name)
|
60 |
+
|
61 |
+
def qa_function(question, context):
|
62 |
+
response = qa_pipeline(question=question, context=context)
|
63 |
+
return response['answer']
|
64 |
+
|
65 |
+
memory = ConversationBufferMemory(
|
66 |
+
memory_key='chat_history',
|
67 |
+
return_messages=True,
|
68 |
+
output_key='answer'
|
69 |
+
)
|
70 |
+
|
71 |
+
def conversation_chain(inputs):
|
72 |
+
question = inputs['question']
|
73 |
+
# Extract text content from Document objects
|
74 |
+
documents = vectorstore.similarity_search(question, k=5)
|
75 |
+
if not documents:
|
76 |
+
answer = "Sorry, I couldn't find relevant information in the document. Please ask a question related to the document."
|
77 |
+
memory.save_context({"user_input": question}, {"answer": answer})
|
78 |
+
return {"chat_history": memory.chat_memory.messages, "answer": answer}
|
79 |
+
|
80 |
+
context = "\n".join([doc.page_content for doc in documents]) # Extract `page_content` from each Document
|
81 |
+
answer = qa_function(question, context)
|
82 |
+
memory.save_context({"user_input": question}, {"answer": answer})
|
83 |
+
return {"chat_history": memory.chat_memory.messages, "answer": answer}
|
84 |
+
|
85 |
+
return conversation_chain
|
86 |
+
|
87 |
+
# Generating response from user queries and displaying them accordingly
|
88 |
+
def handle_question(question):
|
89 |
+
response = st.session_state.conversation({'question': question})
|
90 |
+
st.session_state.chat_history = response["chat_history"]
|
91 |
+
for i, msg in enumerate(st.session_state.chat_history):
|
92 |
+
if i % 2 == 0:
|
93 |
+
st.write(user_template.replace("{{MSG}}", msg.content), unsafe_allow_html=True)
|
94 |
+
else:
|
95 |
+
st.write(bot_template.replace("{{MSG}}", msg.content), unsafe_allow_html=True)
|
96 |
+
|
97 |
+
def main():
|
98 |
+
st.set_page_config(page_title="Chat with multiple PDFs", page_icon=":books:")
|
99 |
+
st.write(css, unsafe_allow_html=True)
|
100 |
+
|
101 |
+
if "conversation" not in st.session_state:
|
102 |
+
st.session_state.conversation = None
|
103 |
+
|
104 |
+
if "chat_history" not in st.session_state:
|
105 |
+
st.session_state.chat_history = None
|
106 |
+
|
107 |
+
st.header("CSS Edge - Intelligent Document Chatbot :books:")
|
108 |
+
question = st.text_input("Ask a question from your document:")
|
109 |
+
if question:
|
110 |
+
handle_question(question)
|
111 |
+
|
112 |
+
with st.sidebar:
|
113 |
+
st.subheader("Your documents")
|
114 |
+
docs = st.file_uploader("Upload your PDF here and click on 'Process'", accept_multiple_files=True)
|
115 |
+
if st.button("Process"):
|
116 |
+
with st.spinner("Processing..."):
|
117 |
+
# Get the PDF text
|
118 |
+
raw_text = get_pdf_text(docs)
|
119 |
+
|
120 |
+
# Get the text chunks
|
121 |
+
text_chunks = get_chunks(raw_text)
|
122 |
+
|
123 |
+
# Create vectorstore
|
124 |
+
vectorstore = get_vectorstore(text_chunks)
|
125 |
+
|
126 |
+
# Create conversation chain
|
127 |
+
st.session_state.conversation = get_conversationchain(vectorstore)
|
128 |
+
|
129 |
+
if __name__ == '__main__':
|
130 |
+
main()
|
__pycache__/htmlTemplates.cpython-312.pyc
ADDED
Binary file (1.21 kB). View file
|
|
app.py
CHANGED
@@ -1,4 +1,179 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
from dotenv import load_dotenv
|
3 |
import streamlit as st
|
4 |
+
from langchain.text_splitter import CharacterTextSplitter
|
5 |
+
from langchain.embeddings import HuggingFaceEmbeddings
|
6 |
+
from langchain.vectorstores import FAISS
|
7 |
+
from langchain.prompts import PromptTemplate
|
8 |
+
from langchain.memory import ConversationBufferMemory
|
9 |
+
from transformers import pipeline
|
10 |
+
from htmlTemplates import css, bot_template, user_template
|
11 |
|
12 |
+
# Load environment variables
|
13 |
+
load_dotenv()
|
14 |
+
|
15 |
+
# Creating custom template to guide LLM model
|
16 |
+
custom_template = """Given the following conversation and a follow-up question, rephrase the follow-up question to be a standalone question, in its original language.
|
17 |
+
Chat History:
|
18 |
+
{chat_history}
|
19 |
+
Follow Up Input: {question}
|
20 |
+
Standalone question:"""
|
21 |
+
|
22 |
+
CUSTOM_QUESTION_PROMPT = PromptTemplate.from_template(custom_template)
|
23 |
+
|
24 |
+
# Extracting text from .txt files
|
25 |
+
def get_text_files_content(folder):
|
26 |
+
text = ""
|
27 |
+
for filename in os.listdir(folder):
|
28 |
+
if filename.endswith('.txt'):
|
29 |
+
with open(os.path.join(folder, filename), 'r', encoding='utf-8') as file:
|
30 |
+
text += file.read() + "\n"
|
31 |
+
return text
|
32 |
+
|
33 |
+
# Converting text to chunks
|
34 |
+
def get_chunks(raw_text):
|
35 |
+
text_splitter = CharacterTextSplitter(
|
36 |
+
separator="\n",
|
37 |
+
chunk_size=1000,
|
38 |
+
chunk_overlap=200,
|
39 |
+
length_function=len
|
40 |
+
)
|
41 |
+
chunks = text_splitter.split_text(raw_text)
|
42 |
+
return chunks
|
43 |
+
|
44 |
+
# Using Hugging Face embeddings model and FAISS to create vectorstore
|
45 |
+
def get_vectorstore(chunks):
|
46 |
+
embeddings = HuggingFaceEmbeddings(
|
47 |
+
model_name="sentence-transformers/all-MiniLM-L6-v2",
|
48 |
+
model_kwargs={'device': 'cpu'}
|
49 |
+
)
|
50 |
+
vectorstore = FAISS.from_texts(texts=chunks, embedding=embeddings)
|
51 |
+
return vectorstore
|
52 |
+
|
53 |
+
# Generating conversation chain with improved out-of-scope handling
|
54 |
+
def get_conversationchain(vectorstore):
|
55 |
+
# Use a Hugging Face model for question-answering
|
56 |
+
model_name = "distilbert-base-uncased-distilled-squad" # Pretrained QA model
|
57 |
+
qa_pipeline = pipeline("question-answering", model=model_name, tokenizer=model_name)
|
58 |
+
|
59 |
+
def qa_function(question, context):
|
60 |
+
response = qa_pipeline(question=question, context=context)
|
61 |
+
return response['answer'], response['score']
|
62 |
+
|
63 |
+
memory = ConversationBufferMemory(
|
64 |
+
memory_key='chat_history',
|
65 |
+
return_messages=True,
|
66 |
+
output_key='answer'
|
67 |
+
)
|
68 |
+
|
69 |
+
def conversation_chain(inputs):
|
70 |
+
question = inputs['question']
|
71 |
+
# Extract text content from Document objects
|
72 |
+
documents = vectorstore.similarity_search(question, k=5)
|
73 |
+
|
74 |
+
# If no similar documents are found or similarity is too low
|
75 |
+
if not documents:
|
76 |
+
answer = "Sorry, I couldn't find relevant information in the document. Please ask a question related to the document."
|
77 |
+
memory.save_context({"user_input": question}, {"answer": answer})
|
78 |
+
return {"chat_history": memory.chat_memory.messages, "answer": answer}
|
79 |
+
|
80 |
+
context = "\n".join([doc.page_content for doc in documents]) # Extract `page_content` from each Document
|
81 |
+
answer, score = qa_function(question, context)
|
82 |
+
|
83 |
+
# Define a threshold for confidence (e.g., 0.5)
|
84 |
+
if score < 0.5:
|
85 |
+
answer = "Sorry, I couldn't find relevant information in the document. Please ask a question related to the document."
|
86 |
+
|
87 |
+
memory.save_context({"user_input": question}, {"answer": answer})
|
88 |
+
return {"chat_history": memory.chat_memory.messages, "answer": answer}
|
89 |
+
|
90 |
+
return conversation_chain
|
91 |
+
|
92 |
+
# Generating response from user queries and displaying them accordingly
|
93 |
+
def handle_question(question):
|
94 |
+
response = st.session_state.conversation({'question': question})
|
95 |
+
st.session_state.chat_history = response["chat_history"]
|
96 |
+
for i, msg in enumerate(st.session_state.chat_history):
|
97 |
+
if i % 2 == 0:
|
98 |
+
st.write(user_template.replace("{{MSG}}", msg.content), unsafe_allow_html=True)
|
99 |
+
else:
|
100 |
+
st.write(bot_template.replace("{{MSG}}", msg.content), unsafe_allow_html=True)
|
101 |
+
|
102 |
+
def main():
|
103 |
+
st.set_page_config(page_title="Chat with Notes and AI", page_icon=":books:", layout="wide")
|
104 |
+
st.write(css, unsafe_allow_html=True)
|
105 |
+
|
106 |
+
if "conversation" not in st.session_state:
|
107 |
+
st.session_state.conversation = None
|
108 |
+
|
109 |
+
if "chat_history" not in st.session_state:
|
110 |
+
st.session_state.chat_history = None
|
111 |
+
|
112 |
+
st.header("CSS Edge - Intelligent Document Chatbot with Notes :books:")
|
113 |
+
|
114 |
+
# Subject selection dropdown
|
115 |
+
subjects = [
|
116 |
+
"A Trumped World", "Agri Tax in Punjab", "Assad's Fall in Syria", "Elusive National Unity", "Europe and Trump 2.0",
|
117 |
+
"Going Down with Democracy", "Indonesia's Pancasila Philosophy", "Pakistan in Choppy Waters",
|
118 |
+
"Pakistan's Semiconductor Ambitions", "Preserving Pakistan's Cultural Heritage", "Tackling Informal Economy",
|
119 |
+
"Technical Education in Pakistan", "The Case for Solidarity Levies", "The Decline of the Sole Superpower",
|
120 |
+
"The Power of Big Oil", "Trump 2.0 and Pakistan's Emerging Foreign Policy", "Trump and the World 2.0",
|
121 |
+
"Trump vs BRICS", "US-China Trade War", "War on Humanity", "Women's Suppression in Afghanistan"
|
122 |
+
]
|
123 |
+
data_folder = "data"
|
124 |
+
preview_folder = "Preview"
|
125 |
+
subject_folders = {subject: os.path.join(data_folder, subject.replace(' ', '_')) for subject in subjects}
|
126 |
+
preview_folders = {subject: os.path.join(preview_folder, subject.replace(' ', '_')) for subject in subjects}
|
127 |
+
selected_subject = st.sidebar.selectbox("Select a Subject:", subjects)
|
128 |
+
|
129 |
+
st.sidebar.info(f"You have selected: {selected_subject}") # Display selected subject
|
130 |
+
|
131 |
+
# Option to upload documents or use preloaded subject data
|
132 |
+
use_preloaded = st.sidebar.radio("Select Data Source:", ("Use Preloaded Notes", "Upload Your Documents"))
|
133 |
+
|
134 |
+
if use_preloaded == "Use Preloaded Notes":
|
135 |
+
# Load preview content
|
136 |
+
preview_folder_path = preview_folders[selected_subject]
|
137 |
+
if os.path.exists(preview_folder_path):
|
138 |
+
preview_text = get_text_files_content(preview_folder_path)
|
139 |
+
st.subheader("Preview of Notes")
|
140 |
+
st.text_area("Preview Content:", preview_text, height=300, disabled=True)
|
141 |
+
else:
|
142 |
+
st.error(f"No preview available for {selected_subject}.")
|
143 |
+
|
144 |
+
# Process data folder for question answering
|
145 |
+
subject_folder_path = subject_folders[selected_subject]
|
146 |
+
if os.path.exists(subject_folder_path):
|
147 |
+
raw_text = get_text_files_content(subject_folder_path)
|
148 |
+
if raw_text:
|
149 |
+
text_chunks = get_chunks(raw_text)
|
150 |
+
vectorstore = get_vectorstore(text_chunks)
|
151 |
+
st.session_state.conversation = get_conversationchain(vectorstore)
|
152 |
+
else:
|
153 |
+
st.error("Could not load the content for question answering.")
|
154 |
+
else:
|
155 |
+
st.error(f"No data available for {selected_subject}.")
|
156 |
+
|
157 |
+
else: # Upload documents option
|
158 |
+
docs = st.sidebar.file_uploader("Upload your text files here:", accept_multiple_files=True, type=['txt'])
|
159 |
+
if docs:
|
160 |
+
st.sidebar.info(f"Uploaded {len(docs)} file(s).")
|
161 |
+
if st.sidebar.button("Process"):
|
162 |
+
with st.spinner("Processing uploaded documents..."):
|
163 |
+
raw_text = "".join([doc.read().decode('utf-8') for doc in docs])
|
164 |
+
st.subheader("Uploaded Notes Preview")
|
165 |
+
st.text_area("Preview Content:", raw_text, height=300, disabled=True)
|
166 |
+
text_chunks = get_chunks(raw_text)
|
167 |
+
vectorstore = get_vectorstore(text_chunks)
|
168 |
+
st.session_state.conversation = get_conversationchain(vectorstore)
|
169 |
+
|
170 |
+
# Chat interface
|
171 |
+
question = st.text_input("Ask a question about your selected subject:")
|
172 |
+
if question and st.session_state.conversation:
|
173 |
+
st.write(f"**Subject:** {selected_subject}") # Display subject before chat
|
174 |
+
handle_question(question)
|
175 |
+
elif question:
|
176 |
+
st.warning("Please process a document before asking a question.")
|
177 |
+
|
178 |
+
if __name__ == '__main__':
|
179 |
+
main()
|
data/A_Trumped_World/A Trumped World.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Movie fans know that sequels are rarely any good, and they often take a darker turn than the original. The first installment of Trump as President was disappointing to many; the remake, too, is going to be worse. Trump sees unpredictability as an asset that keeps others off balance, and his well-deserved reputation for erratic behavior makes it harder to criticize him for being inconsistent. He said a lot of crazy things during his campaign, but how much of it was bluster and bluff and how much was sincere remains to be seen. Trump’s presidency would likely reshape the global balance of power, with the US withdrawing from certain commitments while reasserting itself in other areas. His isolationist tendencies might lead to a reduced American presence in traditional conflict zones, but his assertiveness in trade and diplomacy could redefine relationships with key players like China and Iran. Here is a look at some areas he will be focusing:
|
2 |
+
|
3 |
+
Changing the Ukraine Strategy
|
4 |
+
A cornerstone of reassessment of US support his campaign, Trump criticized the “blank cheque” approach to military and economic aid, suggesting a quick reduction or complete cessation of support. It is difficult to anticipate Trump's policy on the war because his team contains personnel with very different views. One group advocates sharply reducing aid to Ukraine—a view many associate with Trump. This group is naive about the Kremlin's policy toward the United
|
5 |
+
States—Putin states plainly that the United States is adversary number one—and clueless about the danger of a Kremlin victory in Ukraine. The other camp recognizes the threat to US interests in Europe and elsewhere if Washington were to abandon Ukraine. This group would pursue a Reaganesque policy of peace through strength and, unlike the Biden team, not be intimidated by Putin's nuclear bluster. Additionally, Trump is expected to advocate for immediate peace talks between Russia and Ukraine, signaling a preference for negotiated settlements over prolonged military engagement.
|
6 |
+
|
7 |
+
A firm stance on Israel
|
8 |
+
Biden and Blinken's mishandling of the Middle East hurt Harris in the election, as did her unwillingness to distance herself from a policy that was both inhumane and ineffective. Among other things, this position undercut her attempts to portray Trump as a dangerous extremist who didn’t care about human rights, democracy, or the rule of law. But nobody should be under the illusion that matters will improve with Trump in the White House. His Middle East policy will likely continue his staunch support for Israel, positioning him as the most pro-Israel president in American history. However, reviving the "Deal of the Century" appears off the table, as the shifting dynamics in the region make it untenable. The escalation of violence in Palestine has complicated relations between Israel and key players like Saudi Arabia, whose leadership insists on the establishment of a viable and independent Palestinian state—a condition Trump and Israel are unlikely to accept. This unwavering support for Israel may also exacerbate tensions with Iran, although Trump’s historical approach hints at the possibility of unconventional diplomacy reminiscent of his outreach to North Korea.
|
9 |
+
|
10 |
+
Iran: Sanctions and the nuclear question
|
11 |
+
The return of Trump is likely to quickly evoke memories of his maximum-pressure campaign and the killing of Iranian Quds Force leader Qasem Soleimani. It is a clear possibility that Trump would immediately return to this campaign, in which sanctions would not just increase but be enforced. Trump’s strategy, however, would face significant limitations. Existing sanctions, he believes, have lost their effectiveness due to widespread international trade with Tehran. While his administration might explore the possibility of a new nuclear deal, it would likely be framed on terms favorable to the US, reflecting his transactional approach to international agreements.
|
12 |
+
The Trump administration may be unable to recreate its full network of allies to undertake an intensive anti-Iran policy, especially if the policy does not contain a clear end goal of reaching a comprehensive deal with Iran.
|
13 |
+
|
14 |
+
The Abraham Accords between Israel and Arab nations
|
15 |
+
The Abraham Accords will likely serve as a key pillar of US policy in the Middle East for the Trump administration. Knowing that the Accords were among the foremost policy successes during Trump’s first term, the administration will prioritize enhancing and expanding the Accords, with a particular focus on securing agreements with key players such as Saudi Arabia. While the Trump administration will pursue opportunities to engage Palestinian leadership and bring an end to the Israel-Hamas war, it will not see a peace agreement as a necessary precursor for expanding the Accords. Instead, Trump will focus on creating a regional alliance against Iranian influence, leveraging recent Iranian and proxy actions across the region to entice new members with weapons agreements. Additionally, the new administration will likely explore initiatives that foster trade and investment among signatory nations to bolster new and existing agreements.
|
16 |
+
|
17 |
+
Competition with China
|
18 |
+
Trump’s policy toward China in his second administration will likely be similar to his approach during his first term. He has already shown a continued fixation on trade and outlined a plan to impose high tariffs, which will reignite disputes with Beijing over this issue and likely prompt retaliation against US businesses. In other respects, Trump may actually ease tensions with China—but not to the benefit of US strategic interests. Trump stated Russia friendly position on the war in Ukraine will remove a point of contention with Beijing but also serve Chinese leader Xi Jinping's geopolitical agenda. Trump has already signaled a lack of support for Taiwan and seems to believe that he can deter Chinese military action through personal charisma. Xi is not likely to be bedazzled, and Trump's display of weakness could embolden Beijing to take an even more aggressive stance toward the island's democratic government. More broadly, Trump's overt contempt for Washington's traditional allies will likely complicate collective action toward China and open divisions for Xi to exploit and expand Chinese global influence. Trump promises a focus on issues of minimal strategic importance to the United States that nevertheless will lead to Beijing and Washington bickering, along with a withdrawal of US global leadership that allows Xi to promote Chinese power at Washington's expense.
|
19 |
+
|
20 |
+
Balancing China and Russia
|
21 |
+
In terms of great power competition, Trump is expected to adopt a dual strategy: a tough stance on China, primarily through economic measures like tariffs, and a softer approach to Russia. His trade conflict with China would aim to secure more favorable terms for the US, potentially leading to productive negotiations. Meanwhile, his relatively conciliatory posture toward Russia would align with his long-standing skepticism of NATO's expansion and his desire to avoid further confrontation with Moscow.
|
22 |
+
|
23 |
+
Relations with the EU
|
24 |
+
Trump's return to the White House will pose a significant challenge for the US-European Union (EU) relationship. The relationship will become much less strategic and much less all-encompassing. Instead, EU and member state leaders will have to expend political capital at home and in Washington to make progress. And things will get worse quickly before they get better. Trump may well make good on his threat of imposing tariffs on the bloc, which would pressure Brussels into retaliation and a tit-for-tat trade war.
|
25 |
+
The Trump administration will probably not look kindly on existing initiatives that the EU enjoyed with the Biden administration, and many in the Trump circle aiming for top jobs are not friends of Brussels. The EU will no longer have a strategic partner by default, including in its support for Ukraine or ambitions for EU defense, economic security, or the green transition. Paradoxically, the Trump administration will also likely demand more from the EU—on trade, China policy, and support for Ukraine if US aid is to continue, and more.
|
26 |
+
|
27 |
+
Conclusion
|
28 |
+
In essence, Trump's return would signal a marked departure from the current administration's strategies, reflecting his unique blend of nationalism, pragmatism, and unpredictability. How the world would respond to this shift remains a critical question for policymakers and analysts alike.
|
29 |
+
|
data/Agri_Tax_in_Punjab/Agri Tax in Punjab.txt
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The Punjab government has taken the lead in amending its agricultural income tax law, bringing existing tax rates for individuals and businesses at par with federal income tax rates. The Punjab Agricultural Income Tax (Amendment) Bill 2024, which was passed by the provincial assembly on November 14, introduces sweeping reforms to modernize the agricultural tax regime in the province.
|
2 |
+
|
3 |
+
Key Highlights
|
4 |
+
The bill, amending the 1997 law, omitted exemptions given on farm income, while also taxing income from the livestock sector. Under the new legislation, several key changes have been made to the 1997 Act.
|
5 |
+
|
6 |
+
As per the legislation, the income generated from livestock owned by farmers is also considered "agricultural income" and shall be brought into the tax net. The income generated from livestock will also come under the tax net. The farmers with higher incomes will also face tax on income after the passage of the bill.
|
7 |
+
|
8 |
+
On November 14, the provincial assembly of Punjab passed the Agricultural Income Tax Amendment Bill, 2024, which removes all exemptions on agricultural income that will now be taxed. According to the bill, a super tax will be imposed on high-income farmers and landowners. The tax will also be imposed on the livestock sector, which will also be considered agricultural income.
|
9 |
+
|
10 |
+
Effective from January 1, 2025, the amendments aim at ensuring equitable taxation by incorporating income from both traditional agriculture and livestock, aligning the provincial system more closely with the federal tax standards.
|
11 |
+
|
12 |
+
The tax defaulters will also have to pay a total of 0.1 percent fine on their total income per day. Furthermore, the default surcharge rate has been revised to 12% or KIBOR plus three percent, whichever is higher, which aligns with federal financial standards and reinforces timely tax compliance.
|
13 |
+
|
14 |
+
Another change includes the modernization of language within the Act, with terms such as “assessee” being replaced by “taxpayer,” and phrases like “income year” and “assessment year” being updated to “tax year,” simplifying the tax code and ensuring consistency with other tax laws in Pakistan.
|
15 |
+
|
16 |
+
The amendments, as stated by the minister-in-charge, are designed to create a fairer agricultural tax system, particularly by including livestock income and adjusting tax schedules in line with federal standards.
|
17 |
+
|
18 |
+
The government aims for these reforms to ensure timely tax adjustments, smoother administration, and increased revenue from Punjab’s agricultural sector.
|
19 |
+
|
20 |
+
Analysis
|
21 |
+
The passage of legislation to impose agriculture tax in Punjab is a step in the right direction. It was exempted for decades because of obvious political reasons, as land-wielding classes were instrumental in arm-twisting any such attempt, and in collusion with tax officials, were able to manoeuvre whatever little levies they were supposed to pay on agrarian lands. The bill has come as an umbrella to effectively tax farm incomes, including livestock. Though this was done to fulfil one of the IMF conditionalities, it goes without saying that it was essentially desired to not only raise a lawful and entitled source of revenue but also to end the monopoly that the feudal component had enjoyed by remaining aloof from their share of liability towards the national economy.
|
22 |
+
|
23 |
+
The biggest riddle, however, is that the tax machinery in Pakistan is corrupt and officials do not have the capacity to assess proper revenue estimates from sources. The present Patwari-based revenue system has enough loopholes and operates in a world of whims and wishes of its own. The digitization of land, correct estimates of per-acre yield, the number of crops cultivated in two seasons, and now livestock data will be of essential importance to make the legislation a success. Otherwise, it will be like putting the cart before the horse and will be fraught with consequences.
|
24 |
+
|
25 |
+
Moreover, a super tax that will come into effect on high-income farmers with the abolition of the exemption on agricultural land will require some minute shadowing.
|
26 |
+
|
27 |
+
Agriculture accounts for 23% of the GDP, and is abysmally low in terms of tax-to-GDP ratio of below 1.0%. The bill has brought earnings from ‘commercial’ or ‘income-generating’ livestock into the tax net and scrapped exemptions on landholdings of less than 12.5 acres, and on absentee landholders. Introducing agricultural income tax rates for individuals and businesses on par with federal income tax rates is a great addition in the new law, and one hopes other provinces will also come up with their share in the national kitty. Balochistan, especially, is a treasure trove in livestock and rightful taxation there will be of great value.
|
28 |
+
|
29 |
+
Conclusion
|
30 |
+
Agricultural income has become a tool of evasion for those who obtain their income from other sources, such as industry. They show their profitable industry as making a loss, and declare the profits as agricultural income. Then there are large landowners, who do not pay any tax on substantial incomes, which leaves them sufficient surpluses to contest elections (thus saving political parties from having to put up the sums required to finance campaigns).
|
31 |
+
|
32 |
+
Thus, national and provincial legislatures have seen strong agricultural and industrial lobbies, which have prevented a proper agricultural income tax from being imposed.
|
33 |
+
|
34 |
+
It is not as if agriculture was untaxed. Going back to the Mughals, ownership (rather than income) was taxed in the form of land revenue. Once the primary source of income for the government, when it was finally abolished a few decades ago, it had been dwarfed by other taxes. Agricultural income tax was levied for the first time around then, using the same methods. Like land revenue, it was a tax on ownership rather than income. Under the bill, livestock is to be included. The government will have to consider whether the Revenue Department has the capacity to handle the taxation of income, which will ultimately involve the filing of not just returns but also expenditures, after which taxable income will be determined. Another danger will be corruption. There is no evidence that farmers are more moral than traders. It should be remembered that it is not a question of revenues, but of fairness.
|
35 |
+
|
36 |
+
There seems to be no reason for agricultural income to be exempt, except that farmers fill the halls of the legislatures. IMF pressure might not be a good reason for making the agricultural income more comprehensive.
|
data/Assad's_Fall_in_Syria/Assad's Fall in Syria.txt
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
President Bashar Al-Assad's regime in Syria has collapsed like a house of cards. It was only on November 27 that a coalition of armed opposition groups, led by Hayat Tahrir al-Sham (HTS), began an offensive against Assad government-held positions in Aleppo and Idlib provinces in the northwest of Syria. As Russia—the main backer of Assad in the region—got bogged down in Ukraine and Iran got embroiled in dangerous escalation with Israel, the regime became vulnerable, providing a godsend to the Syrian rebels, led by Abu Mohammed al-Julani's HTS, to unleash a decisive assault on Damascus. Within less than two weeks, they rolled into Damascus, and al-Assad and his family fled to Russia, marking a spectacular end of five decades of Ba'ath Party rule in the country.
|
2 |
+
|
3 |
+
Despite Assad's ruthless actions against his own people, internal factors were not the sole drivers of his regime's collapse. Syria became a battleground for geopolitical rivalries, as external powers exploited the crisis to further their own agendas. Already after the regime change, as if waiting for this opportunity, Israel quickly sent its troops into a demilitarized zone within Syrian territory along the Golan Heights, which Israel already illegally partially occupies. At the same time, Israeli warplanes carried out hundreds of airstrikes in Syria, targeting purported positions of its adversaries—Hezbollah and Iran.
|
4 |
+
|
5 |
+
The Syrian rebel groups who captured Damascus range from secular democrats to Islamists and ethno-nationalists, reflecting a volatile mix of ideologies and loyalties. As they jostle for a bigger share in power and influence, Syria could become another casualty of the geopolitical gamble, sucking in regional nations pursuing conflicting agendas.
|
6 |
+
|
7 |
+
Hence, with Assad's ouster, the Middle East has entered a new era, and its previous foundations, political and social, have already irrevocably gone. The ouster of Assad is the deathblow to Iran’s “Axis of Resistance,” as Syria was the main logistical hub for Tehran to supply arms to its ally Hezbollah in Lebanon. A crisis in Iran will possibly set off a chain reaction that may lead to a revision of borders, changes in political regimes, and an intensification of the struggle for resources and influence.
|
8 |
+
|
9 |
+
What caused the fall of the Assad government?
|
10 |
+
The fall of Bashar al-Assad’s government and the opposition’s rise to power were the result of many years of internal and external contradictions that had intertwined into a complex knot, leading to devastating consequences for Syria. These events cannot be called sudden or unexpected. They were the logical outcome of deep-seated processes that had been tearing the country apart for years and gradually eroding the foundations of its political system.
|
11 |
+
|
12 |
+
Bashar al-Assad, having taken office as President in 2000, inherited a state with enormous potential but also with no less significant internal problems. The authoritarian model of governance built by his father, Hafez al-Assad, ensured stability but did not allow the system to adapt to new challenges. Growing discontent among the population, caused by economic stagnation, inequality, corruption, and a lack of social prospects, became the foundation for the gap between the government and society.
|
13 |
+
|
14 |
+
Instead of reforms and compromise, the government chose the path of suppression and militarized the conflict, which further deepened the crisis. However, the internal problems were only aggravated by the influence of external forces. The Syrian crisis quickly turned into an arena of geopolitical struggle, with each side pursuing its own interests. Western countries and Arab monarchies openly supported the opposition, seeking to weaken the Assad government and undermine the influence of its allies, Russia and Iran. Turkiye, Saudi Arabia, and Israel also saw Syria as an opportunity to strengthen their positions in the region, which was expressed in economic, military, and political support for the opposition forces.
|
15 |
+
|
16 |
+
At the same time, Russia and Iran, playing the role of key allies of Damascus, sought to maintain Assad's power and stabilize the situation in the country, viewing Syria as an important element of their influence in the Middle East.
|
17 |
+
|
18 |
+
The events of October 7, 2023, had a significant impact on the situation in Syria, aggravating the crisis. Israeli strikes seriously damaged Iranian influence in the region and particularly weakened Hezbollah, which was a key military ally of Bashar al-Assad’s government. The loss of Hezbollah and the reduction of Iranian support deprived the Syrian government of important resources in the fight against the armed opposition. This allowed the opposition forces to become more active, which led to the loss of Aleppo, Homs, and the encirclement of Damascus.
|
19 |
+
|
20 |
+
Syria also fell victim to the chaos brought about by terrorist groups that took advantage of the weakness of the central government. Militants acting without rules not only exacerbated the crisis but also discredited the very idea of political dialogue.
|
21 |
+
|
22 |
+
In such conditions, the Assad government was unable to cope with the challenges, and attempts to remain in power by force only accelerated the process of destabilization. An important factor was the decline in trust in the regime on the part of those who had recently supported it. Economic difficulties, rising prices, shortages of basic goods, and constant hostilities made life unbearable for the population. Years of sanctions and an economic blockade had deprived the leadership of room for maneuver, and the lack of reforms convinced many that change was necessary, even if it brought destruction.
|
23 |
+
Bashar al-Assad found himself in a difficult position as a political figure. His initial reluctance to become the country’s leader, his upbringing in a household dominated by his older brother Basil, and his lack of political ambitions left him vulnerable to challenges. After Basil’s death, Assad was forced to take over as heir, but his secular education in London and lack of experience in governing the country made him more of a symbol of the system than its real architect. Over the years, accumulated problems and personal tragedies, such as the illness of his wife Asma, sapped his energy and may have affected his willingness to change. Assad ultimately found himself trapped in a system that could no longer provide stability or prospects for development.
|
24 |
+
|
25 |
+
On the threshold of a “Persian autumn”
|
26 |
+
It is premature to talk about the end of the crisis in Syria, because the example of Libya clearly demonstrates that the overthrow of a regime does not always bring long-awaited stability. Since the fall of Muammar Gaddafi, Libya has failed to find peace, becoming an arena of incessant wars, internecine strife, and the shattered hopes of millions of citizens. The country has been fragmented between numerous groups, each pursuing its own interests, and the population has found itself in conditions of endless chaos, a loss of security, and destroyed infrastructure.
|
27 |
+
|
28 |
+
A similar fate could befall Syria, where the apparent success of the opposition and its Western patrons hides a real threat of protracted conflicts. They could lead to even greater disunity in the country, exacerbate its exhaustion, and make the restoration of peace distant and almost unattainable.
|
29 |
+
|
30 |
+
After the fall of Bashar al-Assad, the conflict potential in the region will inevitably increase.
|
31 |
+
Syria, which has long served as an arena for confrontation between global and regional players, will become a source of instability that could spill over to neighboring states. The political vacuum created by Assad’s loss of control will inevitably provoke new conflicts between various ethnic and religious groups, as well as the increased activity of extremist organizations.
|
32 |
+
|
33 |
+
The next point of crisis may be Iran, which will find itself under pressure from both internal and external factors. On the one hand, growing popular discontent, economic difficulties, and tensions between various political and social strata are already visible within the country. On the other hand, external pressure, including sanctions and possible provocations from neighboring states, may aggravate the situation, pushing Iran into a new stage of crisis.
|
34 |
+
|
35 |
+
The region that experienced the “Arab Spring” risks finding itself on the threshold of a “Persian Autumn.” This metaphor symbolizes possible profound changes in the geopolitical and social structure of the Middle East, where Iran may become the epicenter of transformation processes. It is difficult to predict what consequences these changes will have, but one thing is clear: the region is expecting serious upheavals that will affect the global balance of power.
|
36 |
+
|
37 |
+
These developments will inevitably transform the Middle East, making it even more fragmented, unpredictable, and difficult for international regulation. A crisis in Iran could set off a chain reaction that will lead to a revision of borders, changes in political regimes, and an intensification of the struggle for resources and influence.
|
38 |
+
|
39 |
+
Conclusion
|
40 |
+
Given the years of suffering endured by the Syrian people—caused by both internal and external factors—it is imperative that foreign interference in the country comes to an end. While the international community should step forward to provide aid and funding for Syria's reconstruction, foreign powers must cease using the country as a pawn in their geopolitical chessboards. The future of Syria must be determined by its own people. Only then can the nation truly reap the benefits of ousting a brutal dictator.
|
41 |
+
|
data/Elusive_National_Unity/Elusive National Unity.txt
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
A vast majority of Muslims of the Indian Subcontinent showed remarkable unity and got what they wanted: Pakistan—an independent state for Muslims. One of the bitterest truths is, however, that the unity Muslims had shown during the freedom struggle is still elusive in today’s Pakistan. Pakistan gained its independence from the shackles of the British colonial rule. Quaid-i-Azam Muhammad Ali Jinnah, the founding father of Pakistan, envisioned a state based on democratic principles—freedom, justice, and equality. His speech on August 11, 1947, wherein he said, “You are free; you are free to go to your temples […] to any other places of worship in this State of Pakistan. You may belong to any religion or caste or creed—that has nothing to do with the business of the state,” and his motto “unity, faith, and discipline” was a clarion call for national unity. There was a sense of unity when he was alive, but it seems to have vanished since his untimely demise in 1948.
|
2 |
+
|
3 |
+
Pakistan has been lurching from crisis to crisis since then. The failure to effectively manage power structures, coupled with the migration crisis, institutional deficiencies, and colonial legacies, concentrated power in the hands of a few, stifling the development of an inclusive and cohesive environment necessary for the growth of a nation. These foundational shortcomings have left Pakistan susceptible to internal divisions, where ethnic, linguistic, and regional disparities continue to challenge the unity envisioned by its founding fathers.
|
4 |
+
|
5 |
+
As Lawrence Ziring notes in his book “Pakistan: The Enigma of Political Development,” the colonial legacy in Pakistan left a fragmented political system with centralized power structures that were not conducive to fostering national integration. Instead of building inclusive institutions, the focus remained on maintaining centralized control, which undermined the development of a democratic and cohesive state. However, the praetorian governance structure, the dynastic nature of political parties, and the recurring interference of the establishment have led to a weakened parliament and a pyrrhic democratic structure. The erosion of federalism has, thus, been a consistent feature of Pakistan’s political landscape. Historical events, such as the repressive governance towards East Pakistan, which culminated in the creation of Bangladesh, serve as a stark reminder of the consequences of neglecting regional grievances.
|
6 |
+
As Ayesha Jalal argues in her book, “The Struggle for Pakistan: A Muslim Homeland and Global Politics,” the failure of the central government to recognize the political and cultural aspirations of East Pakistan, coupled with the suppression of autonomy, led to escalating tensions and, ultimately, the secession of East Pakistan in 1971.
|
7 |
+
|
8 |
+
Today, Pakistan faces a similar crisis of national unity, where the trust between the centre and provinces is increasingly frayed. The concentration of power and resources in the hands of the central government has led to a sense of alienation in regions such as Balochistan and Khyber Pakhtunkhwa (KP). Balochistan has been a hotbed of ethnic conflict since 1947, having witnessed four major insurgencies—in 1948, 1962-69, 1973-77 and 2006. The most recent insurgency traces its origins to the killing of prominent Baloch leader Nawab Akbar Shahbaz Khan Bugti during a military oppression in 2006. The concentration of power in the hands of the central government, as well as the systematic suppression of regional identities by Pakistan's ruling elites, has been the key driver of the Baloch ethnic conflict. This issue is closely linked to Pakistan’s struggle with federalism, where one province’s dominance over others has led to insurgencies, terrorist movements and growing extremism in both Balochistan and KP.
|
9 |
+
According to the Commission of Inquiry on Enforced Disappearances, as of August 2023, there were 9,967 reported cases of enforced disappearances in Pakistan, with 2,708 of those originating from Balochistan alone.
|
10 |
+
|
11 |
+
In a similar vein, KP, with its own history of marginalization, is witnessing the rise of movements like the Pashtun Tahafuz Movement (PTM), which underscore the need for a federal framework that accommodates ethnic and regional diversity. The PTM, led by Manzoor Pashteen, has emerged as a strong voice for justice and the rights of the Pashtun community. On October 11, 2023, the Pashtun Qaumi Jirga, convened by Manzoor, united the Pashtun community to highlight the brutalities and injustices they have faced at the hands of the state. A documentary shown during the jirga reported that 76,584 individuals from KP have been killed in bombings, shootings and other attacks, while 6,700 people remain missing. This tragic reality highlights the political instability, violence and social crisis that continue to engulf both Balochistan and KP.
|
12 |
+
|
13 |
+
Both KP and Balochistan are lurching from one crisis to another. On November 21, a heart-wrenching incident occurred in the Kurram district of KP, where a passenger convoy travelling from Parachinar to Peshawar was ambushed by an unknown group. The attack, rooted in long-lasting tribal disputes and deeply entrenched religious sectarianism, left scores of people dead and others injured, including women and children.
|
14 |
+
According to a report released by the Pakistan Institute for Peace Studies (PIPS), the majority of the 48 reported terrorist attacks occurred in KP and Balochistan, highlighting the precarious security situation in these provinces.
|
15 |
+
|
16 |
+
To preserve Pakistan’s unity and stability, it is essential to address the systemic flaws that have long hindered the development of a cohesive state. A shift from an oppressive to a welfare-oriented approach, coupled with the full implementation of the 18th Amendment to decentralize power, is crucial for strengthening federalism and promoting national integration.
|
17 |
+
Proactively addressing regional grievances, ensuring equitable control over natural resources and granting provinces their rightful autonomy in line with the constitution are vital steps in fostering trust between the center and the provinces. Additionally, ensuring justice for missing persons and holding security forces accountable will rebuild public faith in state institutions. Through these comprehensive reforms, Pakistan can move towards a more unified and stable future, where federalism is fully realized and all ethnic and regional identities are respected, allowing the nation to thrive as envisioned by its founders.
|
data/Europe_and_Trump_2.0/Europe and Trump 2.0.txt
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Historic political chaos, the war in Ukraine and economic stagnation on the continent have left Europe in a weaker position to handle the expected fallout
|
2 |
+
from Donald Trump's return to the US presidency. EU is, especially, going to have a tough four years, and then figures like Vice President elect J.D. Vance
|
3 |
+
will be there to take up the reins. Black clouds are everywhere. Europe is threatened from many directions. The reasons for panic are obvious. Trump may be
|
4 |
+
unpredictable and mercurial, but there is little doubt that his political instincts and stated plans will shake the pillars of Europe's security, economic and political order. In fact, Trump 2.0 may just be the catalyst needed to jolt Europe.
|
5 |
+
|
6 |
+
Europe's existential crises
|
7 |
+
Plagued by mass migration, economic decay, political turmoil and an existential crisis of identity, Europe is a civilization in freefall. Trump's ambitious
|
8 |
+
vision - with its focus on strength, sovereignty and economic dynamism - may well be the West's last hope.
|
9 |
+
|
10 |
+
The troubles afflicting Europe broadly run deep, and the trajectory appears increasingly grim. Mass migration, as in Biden's America, is a paralyzing force; eroding social institutions and overwhelming public services. Europe is grappling with an economic malaise that borders on catastrophic.
|
11 |
+
|
12 |
+
This is a decline by design—a continent offering itself on the altar of ideological delusions. Centralized bureaucracies impose crippling regulations, monetary policies stifle growth, and the EU's corporatist economic model enriches elites while gutting industry. The result? Productivity and growth that lag behind the United States, leaving Europe a depressing case study in how not to govern.
|
13 |
+
|
14 |
+
The political landscape is equally bleak. The collapse of the French government in a no-confidence vote is just the latest episode in a long-running drama of dysfunction. Emmanuel Macron, for all his pretensions of being Europe’s reformist savior, has been reduced to a lame-duck president, thwarted by a fractured and hostile parliament. Germany, once deemed to be the economic powerhouse of the EU, finds itself in a similar bind, heading for early elections while its economy is battered by crippling energy policies. At a time when strong leadership is desperately needed, Europe’s elites are playing at committee politics and virtue-signaling, oblivious to the storm clouds gathering on the horizon.
|
15 |
+
|
16 |
+
The Trump Factor
|
17 |
+
Enter Trump 2.0, the antithesis of Europe’s managed decline. His bold, unapologetic vision for America is a direct challenge to the wrongheadedness and complacency of Europe’s leaders. They see his brashness as a threat when it is precisely what the West needs—common sense.
|
18 |
+
|
19 |
+
American presidents are unafraid to confront uncomfortable truths and act decisively on the world stage. Consider Trump’s approach to NATO. Unlike Europe’s feckless leaders, who have treated the alliance as a free ride on America’s dime, Trump demands accountability. By insisting that member states pay their fair share, he not only strengthens NATO but exposes the hypocrisy of Europeans who lecture on "shared values" while shirking their responsibilities. So, NATO itself may well go "dormant," with America radically reducing its participation and handing responsibility for the alliance’s military command and resources over to the Europeans.
|
20 |
+
|
21 |
+
On energy, the contrast is equally stark. While the UK and much of Europe cripple themselves with net zero dogma, Trump is promising to unleash America’s energy sector in an attempt to secure both economic stability and strategic autonomy. His policies, rooted in pragmatism, recognize that energy independence is achievable without sacrificing growth or security. Europe’s energy crisis is no accident; it is the direct result of leaders who prioritize green ideology over common sense.
|
22 |
+
|
23 |
+
The economic scenarios are even scarier. Trump has talked about imposing a universal import tariff of 10-20 percent, and a 60 percent tariff on goods from China. Such a policy risks triggering a global trade war, with governments introducing retaliatory measures against the United States. If China is shut out of the US market, Europeans will be even more vulnerable to the supply effects of its manufacturing overcapacity.
|
24 |
+
|
25 |
+
Making matters worse, Europe’s response to another Trump presidency may well be hampered by the “liberal international,” which includes Hungarian Prime Minister Viktor Orban and Italian Prime Minister Giorgia Meloni.
|
26 |
+
|
27 |
+
For all these reasons, European leaders are on the verge of panic and feel tempted to rush to Washington to cut bilateral deals—as many did during Trump’s first term. If they do, it will come directly at the expense of European unity.
|
28 |
+
|
29 |
+
Europe’s Misdoings
|
30 |
+
However, to blame Trump for Europe’s woes—as some predictably do and will—is to miss the point entirely. If dark days are ahead, they are not the result of Trump’s rise but the culmination of Europe’s own failures—its refusal to tackle mass migration, its suicidal economic policies, and its unwillingness to defend national sovereignty. Trump’s return is not a threat but an opportunity—a chance for Europe to reverse course and embrace a bold new direction.
|
31 |
+
|
32 |
+
The choice before Europe is stark: continue down the path of ruin, or follow Trump’s lead and reclaim its destiny. His vision, with its emphasis on strength, self-determination, and unflinching realism, offers a lifeline to a continent on the brink. Whether Europe seizes it or squanders it will define the future of the West.
|
33 |
+
|
34 |
+
How to Cope with Trump 2.0
|
35 |
+
Confronted with these scenarios, the most urgent task for European leaders is to agree on their common interests and work out how to defend them—together with the US, if possible, but alone, if necessary. That means drafting a concrete plan to protect Europe from both security and economic pressures.
|
36 |
+
|
37 |
+
The most immediate concern is Ukraine. To prevent a deal that leaves Ukraine demilitarized and shut out of NATO, Europe needs to ensure a steady flow of ammunition and air defenses in the short term, while providing Ukraine with credible long-term security guarantees. It also must figure out how to spend more efficiently on defense, increase the volume of combat-ready forces available to NATO and the European Union, and, if necessary, strengthen its own nuclear deterrence.
|
38 |
+
|
39 |
+
The second most challenging issue will be trade. If Trump keeps his promise of levying across-the-board import tariffs, a trade war between the EU and its biggest export market is inevitable. In a world where geopolitics and geoeconomics are increasingly intertwined, the bloc should prepare countermeasures against the US and seek to expand trade with the rest of the world.
|
40 |
+
|
41 |
+
Conclusion
|
42 |
+
The EU’s future depends on the courage and maturity of European elites. As the European Union’s founding architect Jean Monnet predicted: "Europe will be forged in crises and will be the sum of the solutions adopted for those crises." Once again, these words ring true. The EU has proved its resilience time and again. In that spirit, Trump’s new presidency could act as a trigger for Europe to deal with its most pressing issues. Indeed, if it responds strategically, the EU has a chance to cease being a geopolitical teenager and progressively assert itself on the world stage.
|
data/Going_Down_with_Democracy/Going Down with Democracy.txt
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
This chaotic world has always been a coliseum for the big powers to brandish and flex their might, with one’s rise orchestrating another’s fall. Each browbeat is more than its opponent; from giving death stares in the Cold War to engaging in various indirect brawls in foreign territories, ending up, sometimes, in the Thucydides trap. The last century witnessed the battle of ideologies, which ended with the so-called “victory of democracy” – and “the end of history” as propounded by Francis Fukuyama. [Fukuyama’s argument was that with the imminent collapse of the Soviet Union, the last ideological alternative to liberalism had been eliminated. Fascism had been killed off in the Second World War, and now Communism was imploding. In states, like China, that called themselves Communist, political and economic reforms were heading in the direction of a liberal order.] Despite all other competitive ideologies, the world in the 20th century was always more democratic than in the past, with newer and newer democracies emerging, older democracies becoming more stable, free and vibrant, and even the autocracies softening and opening up. But that’s not the case anymore; the current century has proved to be a period of democratic regression with the rise of newer powers in the world like China and the resurgence of old powers like Russia, each presenting an alternative model, which is a big fat threat to Western democracy. Technology is somehow seen to be in favour of these competitive ideologies; with cancel culture on the rise, the West is not only receding back to identity politics, tribalism and patrimonialism but also seems to be falling out of love with the very idea that they have nurtured and fought for for many centuries: the sweet democracy.
|
2 |
+
|
3 |
+
Selective freedom of speech and the cancel culture
|
4 |
+
Our understanding of the world is today mediated most of the time by the screens, not only in poor or developing states but also in the First-World states. The three big tech corps – Meta, X (formerly Twitter) and Google – are messing with democracy in unprecedented ways. Last time, it was Facebook and Zuckerberg’s meddling with people’s voting behaviour in the Project Alamo for the Trump presidency and Cambridge Analytical’s venture for Brexit that rattled the political pundits all over the world. Things have changed exponentially since then. Think beyond that: what if a single person, who is the CEO of an online media platform, could determine if a certain candidate will be allowed to use his platform for his campaign or not? Or maybe influence masses using this platform? No need to think further; our wildest dreams are reality now. It’s not Facebook but rather X that has raised hackles in the political community this time. While Elon Musk claims to be a “free speech absolutist,” he turned out to be a selective absolutist, only for those who share his ideology. After Trump’s election as the new president, X complied with 83% of requests made by the governments for censoring or surveilling the accounts of the critics. The same platform underwent a deal with Turkish president Erdogan, who demanded X for censoring or blocking his political opponents, and the platform complied. Similarly, the Indian government’s requests for removing the controversial documentary on Narendra Modi was also accepted, and all the accounts of the critics were blocked. All these are blunt attacks on freedom of speech, strangling the political debate that is always essential for nurturing mature political culture. The democracy’s promise of giving a level playing field to everyone in the electoral process is doubtful today. Even in the US, the First Amendment put restrictions on the government that it can't suppress or put any restriction on the freedom of speech so that none of the individuals or the corporations that have so much power and influence over the political behaviour is capable of determining the outcome of the elections. The disinformation is like the dust of elections; you put something on social media, it goes dandelion; you put something on social media, it goes places and countries you didn’t even hear of. And there’s virtually no way of determining its authenticity; no one goes through the hard task of filtering, and no one goes through the hard task of filtering. Moreover, these media giants decide themselves what is “hate speech,” and every now and then a person becomes a victim of this cancel culture, and when this particular person decides to speak against all that, he gets blocked by X or Facebook.
|
5 |
+
|
6 |
+
From men of deeds to men of clicks
|
7 |
+
From men of deeds that has emerged due to social media is political impassivity, democracy is now a spectator’s sport but rather requires the active participation of each and every individual. What these social media platforms have done is that they have taken away the avenue of any concrete action from the people and replaced it with a fake, self-defined sense of achievement and satisfaction associated with posting status, tweets on X or liking a particular post, e.g., you go to your social media account and post something against racism, like a tweet against extremism. You have stoked your ego and feel self-conceited that you have already performed your part of the duty by liking that tweet on X, which says, “Every human, irrespective of race, colour or religion, should be respected.” The real political participation involving the arduous task of mobilizing people for a cause, pressurizing [authorities], going to the legislature for lawmaking, going to the courts, and getting a law passed to bring about a social change is actually a hard thing, and Gen-Z settles for something easier and within their comfort zone. They pick a screen, log in and post something to their accounts about it, liking all the relevant posts, retweeting those, and that’s all. These online platforms have transformed, if not killed, the concept of participatory democracy, where the only participation left is limited to a few clicks and taps on screens.
|
8 |
+
|
9 |
+
The unfamiliar market of ideas
|
10 |
+
The classic liberal concept of a free market of ideas is also failing democracy due to the rise of technology and social media. The notion that good ideas always outcompete the bad ones in democracy has proved to be farcical; rather, studies show that these social media platforms have become a cesspool of lies, disinformation, and propaganda. And these not only fare well in this online market of ideas but also outperform the true information all the time. It’s not that these platforms like Meta, X, or Google are inherently evil, but rather it’s their business model that is architected in this way; the more activity, engagement and debate there, the more they get monetized. The physician and author, Hans Rosling, in his book Factfulness, talks about a shrewd play of evolution that controls this, known as the fear instinct and the negativity instinct, which implies that normal and good is bland for human beings and always overtaken by something that is negative, sensational or anything that manipulates or plays with our fears and arouses emotions. The liberal notion of a free market of ideas is incompatible with human psychology; we are operated, not compatible with human psychology; we are operated, controlled and manipulated by our fears and emotions controlled and manipulated by our fears and emotions...
|
11 |
+
...these take over our rational decision-making.**
|
12 |
+
|
13 |
+
We are experiencing a revolutionary change; the notion of democracy, which has been evolving from the times of the Greeks, is indeed witnessing yet another big change in the age of technological disruptions. What happens in the future is to be determined by us, whether the governments take these private individuals and corporations under their control, taking down their personalized, selective regulation of free speech and letting the classical liberal idea of a free market of ideas prevail, or letting these tech giants control and decide what things can be said and who is “appropriate” to exercise this freedom. In the later case, the future of the world will be in the hands of a dozen people like Elon Musk, Mark Zuckerberg and other tech entrepreneurs, who will decide and influence our voting behaviours. It will be a major downgrade from democracy being all about people to democracy by the Mark, for the Musk, and of the Steve.
|
data/Indonesia's_Pancasila_Philosophy/Indonesia's Pancasila Philosophy.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Indonesia, the world's largest Muslim-majority nation, is a multicultural country having significant cultural, ethnic, religious, and linguistic diversity, ranging from the daily Hindu rituals practiced on the island of Bali to the grandeur of Islamic sharia law in Aceh (Sumatra) or the semi-nomadic hunter-gatherer lifestyles of the Mentawai people. The archipelago's governing philosophy is based on the foundation of Pancasila, a philosophical theory composed of five principles that make it stand as a unique example of how national unity is maintained through shared foundational beliefs.
|
2 |
+
|
3 |
+
Background
|
4 |
+
Soon after the independence of Indonesia, various regions experienced separate political and economic histories which still show in the current regional dynamics. This heterogeneity required a national framework to bind the country together. To build the foundation of the country’s unity, Soekarno, the leader of the independence movement, presented his speech to the United Nations (UN).
|
5 |
+
|
6 |
+
Indonesian struggle for independence from the Dutch colonialists and the country's first president, Soekarno, introduced Pancasila to the world. This is a set of five guiding principles that shape the nation’s governance, values, and social structure and continue to be deeply embedded in its educational and civic systems.
|
7 |
+
|
8 |
+
The Five Pillars of Pancasila
|
9 |
+
|
10 |
+
Belief in One Supreme God (Ketuhanan yang Maha Esa):
|
11 |
+
This pillar highlights the importance of spirituality and religion in the Indonesian state. While Indonesia is predominantly Muslim, this principle ensures that all religious practices are respected, creating a society that harmonizes faith and humanity.
|
12 |
+
|
13 |
+
Just and Civilized Humanity (Kemanusiaan yang Adil dan Beradab):
|
14 |
+
This principle focuses on the fair and humane treatment of individuals, advocating for justice, compassion, and civility. It reflects the nation’s commitment to upholding human dignity and fostering empathy within society.
|
15 |
+
|
16 |
+
3. Unity of Indonesia (Persatuan Indonesia):
|
17 |
+
With over 17,000 islands and numerous ethnic and religious groups, Indonesia’s unity pillar promotes the idea that national identity should supersede regional or cultural differences. This concept fortifies the nation’s motto, Bhinneka Tunggal Ika (Unity in Diversity), reinforcing that Indonesia’s strength lies in embracing its vast diversity while maintaining a shared national identity.
|
18 |
+
|
19 |
+
Democracy through Deliberation (Kerakyatan yang Dipimpin oleh Hikmat Kebijaksanaan dalam Permusyawaratan/Perwakilan):
|
20 |
+
This pillar emphasizes a unique form of democracy rooted in deliberation and consultation. Decisions are to be made collectively, considering the voices of representatives who embody the wisdom of the people. This principle seeks to balance democratic participation with wise and inclusive decision-making, integrating cultural values into governance.
|
21 |
+
|
22 |
+
Social Justice for All (Keadilan Sosial bagi Seluruh Rakyat Indonesia):
|
23 |
+
The final pillar focuses on ensuring equitable opportunities and resources for all citizens, promoting social and economic justice. It underscores policies that aim to reduce inequality, support sustainable development, and uplift marginalized communities. This commitment to social welfare is seen as essential for long-term stability and prosperity.
|
24 |
+
|
25 |
+
Lessons for Pakistan
|
26 |
+
For Pakistan, understanding the structure and influence of Pancasila offers valuable insights. In Pakistan, there is ethnic diversity. The euphoria surrounding the independence movement obscured certain ethnic and geographical divisions. But as the movement's initial exhilaration passed, regional and racial divisions reappeared. They were developing a sense of political engagement among many ethnic groups within a democratic and participatory framework that proved to be a complex undertaking. With time, ethnic and linguistic variety emerged as the most challenging political and social issues that significantly influenced the character and course of Pakistani politics. The country is still facing numerous problems, ranging from regional disparities to a fragile democratic system. Besides these challenges, Pakistan continues to experience polarization that hampers its ability to evolve as a modern, stable, and prosperous state. A lack of consensus on vital issues such as a shared national identity, governance, and national integrity has fueled social polarization, which has further exacerbated existing sectarianism and ethnic conflicts. Violence is one of the main issues in Pakistan, and over the years, has created various anarchical situations in the country. By following these principles, people with different thoughts or ways of thinking, and provinces, can work collectively to boost Pakistan’s growth.
|
27 |
+
|
28 |
+
Conclusion
|
29 |
+
In conclusion, Indonesia’s Pancasila stands as an example of how core principles can guide a nation towards cohesive governance and peaceful coexistence. While it is essential to consider the criticisms of such a system, the broader lesson lies in how shared national ethics can support unity and resilience in a diverse society. Pakistan’s future requires unity, where the strength of its diversity becomes the foundation of its progress. By unifying in its diversity, strengthening its social fabric, and taking pride in its shared identity, Pakistan can overcome its challenges and unlock its true potential, emerging as a beacon of hope and progress for the entire region and the world at large.
|
data/Pakistan's_Semiconductor_Ambitions/Pakistan's Semiconductor Ambitions.txt
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
With the rise of digital technologies, AI, IoT, and 5G, the demand for semiconductors is skyrocketing. Although Pakistan’s semiconductor industry is still in its early stages, it has the potential to grow, making the country well-positioned to capitalize on this trend. It is highly encouraging that the Pakistan government is developing a strategy to export integrated circuit design services, aiming to boost the skills of students and young professionals and generate foreign exchange by entering the multibillion-dollar chip design and semiconductor industry. As considerable work has already been undertaken in this vital sector, the need is to build upon that to establish Pakistan’s semiconductor industry on a firmer footing.
|
2 |
+
|
3 |
+
The global semiconductor industry is thriving at an enormous pace. With a continued surge in AI-related demand and recovery in electronic production, the global revenue of this industry is projected to grow 14% in 2025 to total $717 billion, and $1 trillion by 2030. However, this industry is currently dominated by companies from the United States, Taiwan, China, South Korea, and Japan. Although Pakistan’s share in the global semiconductor industry is negligible at the moment, there is a lot of potential for Pakistan to reap the benefits this sector offers.
|
4 |
+
|
5 |
+
What are semiconductors?
|
6 |
+
Often referred to as ‘chips,’ semiconductors are the electronic ‘engines’ underlying almost all technology applications, and hence a significant proportion of regional, national, and global industry development, economic performance, and growth. These are the key enablers of modern electronics and are responsible for the advances made in communications, healthcare, agriculture, transportation, energy, computing, and so much more. Today’s semiconductor technology has greatly affected our world and increased our quality of life in countless ways. We now have the Internet of Things (IoT), Artificial Intelligence (AI), Machine Learning (ML), and 5G, to name just a few.
|
7 |
+
|
8 |
+
Scientifically, semiconductors are materials with electrical properties that fall between those of conductors (like metals) and insulators (like rubber). They have a unique ability to conduct electricity under certain conditions while acting as insulators under others. They are sometimes referred to as integrated circuits (ICs) or microchips made from pure elements, typically silicon or germanium.
|
9 |
+
|
10 |
+
How are they made?
|
11 |
+
Semiconductors are made from a variety of raw materials, including silicon, germanium, gallium arsenide, and indium phosphide. These materials are processed and purified to create a crystalline structure, which forms the foundation for building semiconductor devices such as transistors, diodes, and ICs. Other raw materials used in the manufacture of semiconductors include impurities such as boron and phosphorus for doping – a process whereby small amounts of impurities are added to these types of elements, causing large changes in the conductivity of the material – as well as metals for interconnects, insulators for isolation, and various chemicals for cleaning and etching.
|
12 |
+
|
13 |
+
How do they work?
|
14 |
+
Most semiconductors are composed of crystals made of several materials. To better understand how semiconductors work, we need to first understand atoms and how electrons organize themselves within the atom. Electrons arrange themselves in layers called shells inside an atom. The outermost shell in the atom is known as a valence shell.
|
15 |
+
|
16 |
+
The electrons in this valence shell are the ones that form bonds with neighboring atoms. Such bonds are called covalent bonds. Most conductors have just one electron in the valence shell. Semiconductors, on the other hand, typically have four electrons in their valence shell. However, if atoms nearby are made of the same valence, electrons may bind with the valence electrons of other atoms. Whenever that happens, atoms organize themselves into crystal structures. We make most semiconductors with such crystals, mainly with silicon crystals.
|
17 |
+
|
18 |
+
Types
|
19 |
+
Semiconductors are divided into two categories: intrinsic semiconductors and extrinsic semiconductors.
|
20 |
+
|
21 |
+
1. Intrinsic semiconductors
|
22 |
+
Intrinsic (meaning inherent and natural) semiconductors, also referred to as pure or undoped, are flawless crystals free of other elements’ flaws and impurities. All semiconductor materials, including those doped with other components, have intrinsic features, with the doping components introducing other desired qualities.
|
23 |
+
|
24 |
+
2. Extrinsic semiconductors
|
25 |
+
An extrinsic semiconductor is divided into two types:
|
26 |
+
i. N-type semiconductor, which carries current mainly in the form of negatively charged electrons, similar to the conduction of current in a wire.
|
27 |
+
ii. P-type semiconductor, which carries current predominantly as electron deficiencies called holes.
|
28 |
+
|
29 |
+
A hole has a positive electric charge, equal and opposite to the charge on an electron. In a semiconductor material, the flow of holes occurs in a direction opposite to the flow of electrons.
|
30 |
+
|
31 |
+
The conductivity of semiconductors can be improved with the help of a small number of suitable atoms known as the impurity. The process that involves adding impurities to the pure semiconductor is called doping. Generally, one atom in 10^7 will be replaced by a dopant atom in a doped semiconductor.
|
32 |
+
|
33 |
+
Applications
|
34 |
+
There are infinite applications where these can be applied to not only improve our lives but to save our lives. Some real-life applications of semiconductors are as under:
|
35 |
+
|
36 |
+
i. Consumer electronics
|
37 |
+
Semiconductors form the foundation of modern electronic devices such as phones, laptops, refrigerators, computers, smartphones, and televisions. Silicon is the most widely used semiconductor material and is crucial for manufacturing ICs and microchips. These components are essential for processing and storing information, enabling the functioning of electronic gadgets. They are also used to make memory devices.
|
38 |
+
|
39 |
+
ii. Energy generation
|
40 |
+
Semiconductor-based solar cells convert sunlight directly into electricity through the photovoltaic effect. Silicon-based photovoltaic cells are the most common type used in solar panels. When sunlight hits the semiconductor material, it excites electrons, generating an electric current. This clean and renewable energy source has revolutionized how we generate electricity and reduce our reliance on fossil fuels.
|
41 |
+
|
42 |
+
iii. LEDs
|
43 |
+
Light-emitting diodes (LEDs) are semiconductor devices that emit light when an electric current passes through them. The LEDs are highly energy-efficient and have replaced the traditional incandescent and fluorescent lights in various applications, including residential lighting, automotive headlights, and streetlights.
|
44 |
+
The semiconductor material determines the colour of emitted light, making the LEDs versatile for the different lighting needs.
|
45 |
+
|
46 |
+
iv. Transistors
|
47 |
+
Transistors are semiconductor devices that amplify or switch electronic signals. Transistors are used as microcontrollers, switches, and digital logic circuits. Most of the transistors are made using silicon. However, germanium and gallium arsenide are two other options of semiconductors that are used in transistors.
|
48 |
+
|
49 |
+
v. RFID tags
|
50 |
+
Radiofrequency Identification (RFID) tags are used to check in and check out in metro stations and are used in contactless payment and electronic toll collection. The semiconductors receive data in the form of radio signals and process the information.
|
51 |
+
|
52 |
+
vi. Defense systems
|
53 |
+
In defense systems, semiconductors are used in drone technology, radar systems, and navigation systems. They are integral components in radar systems, which detect and track aircraft, missiles, ships and other objects. Semiconductor-based radar systems provide long-range detection capabilities, high-resolution imaging and advanced signal processing for target identification and tracking.
|
54 |
+
|
55 |
+
Role in global geopolitics
|
56 |
+
|
57 |
+
i. US-China rivalry
|
58 |
+
The United States has imposed export controls and sanctions to restrict China's access to advanced semiconductor technologies, aiming to curb its rise in critical sectors like AI, 5G and military applications. This has escalated tensions between the two nations, with semiconductors becoming a focal point in the broader US-China trade and tech war. The US aims to regain dominance in semiconductor manufacturing, which has largely shifted to Asia, particularly Taiwan and South Korea. Taiwan’s TSMC (Taiwan Semiconductor Manufacturing Company) is the world’s leading producer of advanced semiconductors.
|
59 |
+
The Taiwanese geopolitical position is highly sensitive, with China considering Taiwan part of its territory and the US viewing it as a critical partner for technology and defence. Any disruption in Taiwan's semiconductor production due to geopolitical conflict could have catastrophic effects on global tech industries.
|
60 |
+
|
61 |
+
ii. South Korea and Japan’s role
|
62 |
+
South Korean and Japanese semiconductor firms are major players in the global supply chain. South Korea faces pressure from both the US and China to align with their respective tech policies, while Japan has strengthened cooperation with the US to secure critical semiconductor materials.
|
63 |
+
|
64 |
+
iii. Europe’s strategic autonomy
|
65 |
+
The European Union is seeking to reduce its dependence on Asia for semiconductors by boosting local production through its “Digital Compass” initiative. Europe is also looking to develop strategic partnerships with the US to strengthen supply chain resilience.
|
66 |
+
|
67 |
+
iv. China’s semiconductor ambitions
|
68 |
+
China has made self-reliance in semiconductors a top national priority as part of its “Made in China 2025” strategy. It has significantly increased investment in domestic semiconductor production and chip design to reduce dependence on US technologies.
|
69 |
+
|
70 |
+
v. Global market and Pakistan’s options
|
71 |
+
The market for chip-incorporating equipment is estimated to be at least $4 trillion annually, yet Pakistan's share is less than $50 million. Pakistan's semiconductor industry is in its nascent phase. Although experts believe Pakistan has the potential to generate $4 billion annually, progress has been painfully slow.
|
72 |
+
|
73 |
+
In Pakistan, interest in building a chip industry began during Imran Khan's government when Pakistan turned to China to start its industry, and provincial governments approved Rs41.75 million in funding for establishing chip design centers in eight universities in Punjab. A roadmap, the Pakistan National Semiconductor Plan (PNSP), was launched, preparing the country's talent and human capital and starting with the designing, assembly, and testing of chips in the first phase before moving towards more advanced and expensive manufacturing phases.
|
74 |
+
|
75 |
+
Plans were to build an indigenous designing and manufacturing semiconductor industry with a resilient supply line until 2047. While some Chinese companies had shown interest, instability and economic crises created hurdles for smooth progress. The new government has allocated Rs. 190 million to create the NUST Chip Design Center. However, this level of dedication is not enough to build a sophisticated technology base, which needs huge investment, the government’s consistent focus, and strong political will.
|
76 |
+
|
77 |
+
Limited government interest and investments hinder progress in Pakistan’s semiconductor industry. Despite these obstacles, private companies and the startup surge in the semiconductor industry show promise. With 100,000 STEM graduates entering the workforce annually and support from its industry-related diaspora, Pakistan possesses significant potential.
|
78 |
+
|
79 |
+
The way forward
|
80 |
+
The 'Pakistan National Semiconductor Plan' has given eight recommendations, consisting of three broader policies and five specific short-term (2025 plan) recommendations, which propose investments of approximately $240 million, including private, public, and private-public partnership (PPP) into the semiconductor sector.
|
81 |
+
|
82 |
+
The three broad recommendations include:
|
83 |
+
|
84 |
+
Establish the national semiconductor goal that Pakistan must ensure accessibility to all critical semiconductor technologies by 2050.
|
85 |
+
Establish a cabinet-level task force, headed by a czar, to implement these goals with short- (2025), medium- (2030), and strategic long-term plans (2050).
|
86 |
+
Establish offices at key consulates headed by special officers with a specific mandate of growing semiconductor businesses in Pakistan.
|
87 |
+
The five specific recommendations include:
|
88 |
+
4. Establish a private nonprofit association, the Pakistan Semiconductor Association (PSA), to work with all stakeholders and promote Pakistan’s semiconductor businesses both within and outside of the country.
|
89 |
+
5. Invest in universities to upgrade semiconductor education and research with PNSP-focused programs in six hubs.
|
90 |
+
6. Invest in Advanced Training Institutes (ATI) to train the human resources so that they can productively work in international-level design centres.
|
91 |
+
7. Invest to incentivize Chinese and US companies to establish design centres in Pakistan.
|
92 |
+
8. Invest in a package and test business as the first step into semiconductor manufacturing.
|
93 |
+
|
94 |
+
Conclusion
|
95 |
+
In recent years, a growing number of Asian players have made forays into the lucrative domain. However, Pakistan is still lagging in this sector. Nonetheless, the industry can bring in up to US$4 billion in forex to Pakistan each year if the country can get 100,000 professionals involved in the next 5 to 6 years. Keeping in view the national economy and security's reliance on semiconductors, the government needs to provide tax incentives and other facilitating programmes to foreign companies, especially Chinese and US investors, to encourage them to set up chip designing centres in Pakistan.
|
96 |
+
|
97 |
+
|
98 |
+
|
data/Pakistan_in_Choppy_Waters/Pakistan in Choppy Waters.txt
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
History gives us numerous examples to understand this cyclic phenomenon of hardship and ease. India, for example, went into a serious economic crisis, which was triggered by a balance-of-payments deficit due to excessive reliance on imports and other external factors, in the 1990s. The then-Prime Minister of India, P. V. Narasimha Rao, and his finance minister, Manmohan Singh, implemented robust economic reforms, including the elimination of restrictions on foreign investment, allowing foreign companies to bring modern technology and industrial development practices to India. The government also reduced import tariffs, opened up the public sector to private enterprise, and cut back on state spending. The leadership's clarity of vision in goals and decisive actions helped India overcome the economic downturn. Resultantly, the country’s GDP per capita grew to be about $2,300 in 2022 with no IMF program since the 1990s.
|
2 |
+
|
3 |
+
Similarly, when Japan was hit by atomic bombs in 1945, around 220,000 people lost their lives in Hiroshima and Nagasaki. Many of the survivors would face deadly diseases like cancer or other terrible side effects from the radiation. Apart from the heavy death toll, the country faced a financial loss of around $55 billion. In spite of such terrible conditions, the Japanese economy recovered at an incredible speed. The recovery was so miraculous that it came to be known as the Japanese Economic Miracle. Although Japan implemented measures like cuts on government expenditure, promoting creative entrepreneurship, clever marketing strategies, and comparatively free global trade, what helped Japan materialize post-war economic growth was its reliance on the good old-fashioned values of quality and diligence.
|
4 |
+
|
5 |
+
Unlike other countries in the region, Pakistan is still facing severe hardships. The topmost challenge is the economic crisis, which is visible in the form of a back-breaking inflation rate of more than 25%. Rising inflation is causing a decline in people's purchasing power as the prices of food, fuel, and electricity continue to rise unabatedly. Around 40% of the country's population remains below the poverty line. The economic hardship has resulted in a great deal of discontent and annoyance, which is manifested in ways such as protests, strikes, riots, and acts of violence.
|
6 |
+
|
7 |
+
Another challenge is terrorism. Although terror attacks have decreased in number and intensity, terrorism is by no means over. In fact, recent reports show a concerning growth in insurgents' activities and violence. Due to terrorism, thousands of civilians have lost their lives, and foreign direct investment has undergone a steep decline. In fact, Pakistan had to remain on the FATF grey list for four years, i.e., from 2018 to 2022. Not only this, Pakistan also lost its soft diplomacy avenues like tourism and sports, which portray the soft images of any country. To cap it all, Pakistan is losing its grip on its most valuable resource, that is, youth. Given the economic uncertainty and poor law and order situation, a large number of youth look towards foreign countries to make their dreams come true. In 2023 alone, more than 1.62 million people, primarily young men and women, left Pakistan for Gulf and European nations in search of greener pastures. Brain drain at such a massive scale mars the prospects of betterment of the country.
|
8 |
+
|
9 |
+
Several reasons can be quoted for Pakistan's hardships; however, political instability, lack of independent policymaking, and rising social insecurity top them all.
|
10 |
+
|
11 |
+
To begin with, political instability has been a trademark of Pakistan for decades. Despite the return of democracy in 2008, Pakistan has witnessed the ouster of prime ministers at frequent intervals. Long marches and sit-ins have long kept those in corridors of power preoccupied. Such events have provided governments a reason to shed the burden of their responsibilities and blame their opponents for the declining performance of institutions. Due to the volatile political environment, policies for economic revival have remained inconsistent, and IMF loans have become the norm of the day.
|
12 |
+
|
13 |
+
Moreover, policymaking has not remained independent ever since the inception of the country. Pakistan has been used by international powers for their vested interests. Examples include the training of jihadists on Pakistani soil in the 1980s to oust the USSR from Afghanistan and paving the way for the US to invade Afghanistan after 9/11. It is because of these botched policies that Pakistan has been facing extremism, terrorism, and social unrest for years. Finally, democracy seems to have failed to provide social security to the citizens of this country. Despite paying hefty taxes, basic facilities like education and health remain inaccessible to the common man. On the one hand, job opportunities in public sector organizations have reduced sharply. On the other hand, private businesses and freelancing fall victim to electricity and internet outages. In such an insecure environment, the youth feel it convenient to move abroad by hook or by crook.
|
14 |
+
|
15 |
+
While the challenges are severe, there is always a silver lining in the cloud. Pakistan can also come out of hard times, and its citizens can enjoy peace and prosperity if democracy is strengthened, prudent policies are formulated and implemented, and youth are prioritized. The most important overarching step among all is solidifying democracy in the country. Democracy thrives when all the pillars of state perform their duties as defined by the constitution and avoid overstepping into each other's domains. Doing so will enable the people of Pakistan to elect leadership that truly represents them.
|
16 |
+
|
17 |
+
Next, governments must design prudent policies that are long-term and serve the interests of Pakistan only. In this regard, dialogue should be used as a tool to resolve bilateral and domestic issues such as with India and in Balochistan, respectively. Likewise, ill-conceived agreements such as the ones with Independent Power Producers (IPPs) should also be revised or concluded through dialogue in the interest of the common people of Pakistan. Improvement of the image of Pakistan will bring in FDI and attract global tech giants to invest here. All the above-mentioned steps will help create a sustainable environment for Pakistani youth. Youth will be able to utilize their talents for the socio-economic betterment of all and sundry.
|
18 |
+
|
19 |
+
Conclusion
|
20 |
+
In conclusion, the cyclic nature of life, marked by hardships and ease, is a universal truth that has shaped the destinies of nations throughout history. Pakistan, too, has experienced its share of trials and tribulations, from economic instability to political turmoil. However, the nation's resilience and potential for greatness cannot be underestimated. By strengthening democratic institutions, implementing sound economic policies, and prioritizing the needs of its youth, Pakistan can overcome its current challenges and embark on a path of sustainable development. The country's rich human capital and strategic geographic location offer immense opportunities for growth and prosperity. Nature has promised that with hardships comes ease. But will Pakistan rise to its full potential, or will it continue to be held back by the shackles of the past? The answer lies in the hands of its leaders and its people.
|
21 |
+
|
data/Preserving_Pakistan's_Cultural_Heritage/Preserving Pakistan's Cultural Heritage.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Cultural heritage is the soul of a nation and a bridge that connects its past with its present while shaping its future as well. In Pakistan, this heritage is a treasure trove of ancient wonders, vibrant traditions and unique customs. Each element of this legacy serves as a reminder of who we are and the heights we can achieve.
|
2 |
+
|
3 |
+
Pakistan is blessed with a wealth of historical landmarks. The ruins of Mohenjo-Daro echo the grandeur of the Indus Valley Civilization, while the Buddhist relics in Taxila narrate timeless stories of peace and wisdom. The majestic Badshahi Mosque in Lahore stands as a testament to Mughal magnificence. These monuments are far more than just structures; they are fragments of history frozen in time. Cultural heritage, however, extends beyond architecture. It pulses through the melodies of music, the rhythm of dance and the depth of poetry. The soulful verses of poets like Bulleh Shah and Shah Abdul Latif Bhittai have transcended centuries, resonating with audiences to this day. Traditional dances, such as the Pashtun Attan and Sindhi Jhumar, foster a sense of community, while handicrafts like Balochi embroidery and Multani pottery showcase artistic mastery.
|
4 |
+
|
5 |
+
This cultural richness is a unifying force, highlighting the beauty of Pakistan's diversity. Each province adds its unique colour to the national tapestry. Punjab is known for its joyous Basant festival and Sufi shrine celebrations, and Sindh for its vibrant Ajrak and Tharparkar’s folk melodies. Khyber Pakhtunkhwa fosters soulful Pashto poetry and exemplifies resilience, while Balochistan boasts ancient craftsmanship and storytelling traditions.
|
6 |
+
|
7 |
+
Despite its value, Pakistan's cultural heritage faces many significant threats: Urbanization has engulfed many historical sites, while climate change and pollution have taken a toll on ancient landmarks. Neglect and insufficient funding exacerbate these challenges, and many traditions are slowly fading as younger generations lose touch with their roots.
|
8 |
+
|
9 |
+
Protecting cultural heritage is not just a moral obligation; it is vital for national identity, pride, and even economic growth. Heritage tourism is a thriving industry worldwide, and countries like Italy, Egypt and Turkey have built robust economies around their cultural attractions. Pakistan has the same potential. Its UNESCO World Heritage Sites, such as Mohenjo-Daro, Taxila and the Makli Necropolis, have universal appeal. With improved infrastructure, these sites could attract countless visitors. Essential upgrades, including better roads, accommodations and guided tours, would greatly enhance the tourism experience.
|
10 |
+
|
11 |
+
Promotion plays a crucial role in drawing global attention. Pakistan must showcase its rich heritage through social media campaigns, documentaries and international cultural events. Modern tools like virtual reality and digital archives can make these treasures accessible to a global audience. Not only would this generate revenue, but it would also improve Pakistan's global image. Cultural festivals offer another opportunity to foster unity and attract tourists. Events like the Lok Virsa Mela celebrate Pakistan's diversity and provide a platform for artisans and performers. These festivals also bridge the gap between urban and rural communities. Supporting local craftsmen is equally important. These individuals preserve traditions through their artistry, and financial assistance or training can ensure their survival. Exporting traditional crafts like carpets, jewellery and pottery can also boost the economy while sharing Pakistan’s stories with the world.
|
12 |
+
|
13 |
+
Education is a key element in preserving heritage. Schools should integrate local history and culture into their curricula. Field trips to historical sites and participation in traditional activities can instil pride and a sense of responsibility in younger generations.
|
14 |
+
|
15 |
+
Cultural heritage also promotes harmony, transcending ethnic and linguistic barriers. Folk music and dance are universal languages that unite people, while festivals create bonds that are stronger than differences. Tourism, in turn, fosters international goodwill. Visitors leave with lasting memories of Pakistan’s hospitality, becoming ambassadors of its charm. This soft power is invaluable for enhancing Pakistan’s standing on the world stage.
|
16 |
+
|
17 |
+
Despite its immense potential, developing foreign tourism in Pakistan is a formidable challenge. Concerns about safety, inadequate infrastructure and poorly maintained roads deter travellers. Airports often fail to meet global standards, and much of Pakistan’s beauty remains hidden from the world. Overcoming these hurdles requires decisive action, including enhanced security, modernized infrastructure and strategic promotion. Only then can Pakistan truly claim its place as a global tourist destination. In 2022, the travel and tourism sector contributed 5.9% to Pakistan’s GDP and generated 4.2 million jobs, as reported by the World Bank Group and the World Travel & Tourism Council (WTTC).
|
18 |
+
|
19 |
+
Despite these figures, the sector’s potential remains underutilized, considering the country’s rich array of tourist destinations. Visitor spending in Pakistan reached USD 16 billion in 2022, with projections indicating this could grow to USD 30 billion by 2033, signalling significant opportunities for future expansion in the tourism industry.
|
20 |
+
|
21 |
+
No doubt, preserving cultural heritage is about more than safeguarding the past. It is about honouring ancestors, inspiring future generations and building a bridge to tomorrow. By cherishing its cultural wealth, Pakistan can achieve not only economic progress but also social harmony. Heritage is more than history; it is identity, pride and limitless potential. Pakistan’s cultural heritage is its most valuable asset. Let us protect, celebrate and share it with the world.
|
22 |
+
|
data/Tackling_Informal_Economy/Tackling Informal Economy.txt
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The informal sector's contribution to Pakistan's economy is remarkable, as it adds a handsome volume of approximately $661 billion, tantamount to 35.5 percent of GDP. The growing size of the informal economy in Pakistan is a major cause for much consternation for our policymakers who are trying to boost tax revenues and widen documentation, primarily through administrative measures.
|
2 |
+
|
3 |
+
Informality is also associated with higher income inequality, poverty, and less progress toward Sustainable Development Goals (SDGs). The informal sector is, on average, less productive than the formal sector because it tends to employ more low-skilled workers, has more restricted access to funding, services, and markets, and lacks economies of scale.
|
4 |
+
|
5 |
+
A recent joint study by the Small and Medium Enterprises Development Authority (SMEDA) and the International Labor Organization provides fresh, and disturbing, evidence of the informal economy's continuing growth. The total size of the informal sector, growing over time, is currently projected to be an enormous $457 billion, in sharp contrast to the size of the formal economy, which was officially estimated at $340 billion in 2023.
|
6 |
+
|
7 |
+
The informal economy, also known as the "shadow economy," "underground economy," or "unregistered economy," refers to economic activities that are not regulated by the government and are typically not subject to standard labor laws or tax codes. The size and characteristics of the informal economy vary widely across countries and regions, but it is estimated that around 61% of the world's workforce is employed in the informal sector of the economy. It is contributing to employment, income generation, and overall economic growth.
|
8 |
+
|
9 |
+
The informal economy is a critical source of employment in many developing countries, particularly in areas with limited formal job opportunities. It provides a safety net for people facing unemployment or those not having access to formal-sector jobs. In fact, in many regions, especially in sub-Saharan Africa, Asia, and Latin America, the informal economy represents a significant portion of the labor force. Nearly 75% of the total labor force in Pakistan is engaged in informal sector employment.
|
10 |
+
|
11 |
+
The ILO estimates that the informal sector employs about 60–70% of the workforce in low-income countries, and in some parts of the world, it accounts for up to 90% of total employment in rural areas. In India, it is estimated that the informal sector accounts for 50% of GDP, while in countries like Mexico and Brazil, the informal economy represents about 30–40% of total economic output. Pakistan's informal economy has a significant impact on the country's economic growth. As recently documented in a study by the Pakistan Business Council (PBC), informality in the wholesale and retail trade (WRT) sector has significant fiscal implications, especially when compared to the more formalized manufacturing sector. The share of the manufacturing sector in direct taxes amounts to 34.5%, a full 22% greater than its share in GDP. On the other hand, WRT contributes a paltry 2.9% towards direct taxes, 15% less than its share in GDP.
|
12 |
+
|
13 |
+
Using FBR data from 2018–19, in rupee terms, a proportionate revenue obligation on the wholesale and retail sector would amount to a minimum of PKR 277 billion, or at least PKR 234 billion greater than its current contribution.
|
14 |
+
|
15 |
+
A similar imbalance emerges in the domain of domestic sales tax collection. Estimates of WRT drawing on non-manufacturing, non-importing business sales tax returns from the Association of Persons (AOPs) and individuals show that the overall percentage contribution to domestic sales tax collection amounts to a negligible 1.65%. In contrast, the manufacturing sector's contribution exceeds 75%.
|
16 |
+
|
17 |
+
A major hitch of the informal economy is the loss of tax revenue. Informal businesses and workers typically do not pay taxes, which creates significant gaps in government fiscal income. The OECD (2024) estimates that in many countries, especially developing nations, the informal economy contributes to tax evasion and reduces the tax-to-GDP ratio. For example, in South Africa, the informal sector is responsible for an estimated 5–10% of lost tax revenue annually. Similarly, in Kenya, the government loses up to 8% of GDP due to informality. This lack of taxation limits the government's ability to provide public services and infrastructure and hampers overall development.
|
18 |
+
|
19 |
+
At present, only 300,000 of an estimated 3.5 million retailers are actively filing tax returns. The newly proposed scheme aims to bring the remaining 3.2 million retailers, primarily located in major cities, into the tax net. This initiative represents a significant step towards expanding the tax base and enhancing revenue collection.
|
20 |
+
|
21 |
+
The Federal Board of Revenue (FBR) introduced a special procedure to levy tax on small traders and shopkeepers, known as the "Tajir Dost (Special) Procedure, 2024." In this context, shopkeepers include wholesalers, dealers, retailers, manufacturer-cum-retailers, importer-cum-retailers, or such persons who combine the activity of retail and wholesale with any other business activity or other person in the supply chain of goods. Advance tax is to be paid on a monthly basis through a computerized payment process. The first installment was to be paid on 15 July 2024, and additional installments were to be due on the 15th day of each month thereafter. The formula calculating advance tax will be prescribed; however, every person shall be liable to pay a minimum advance tax of PKR 1,200 per year.
|
22 |
+
|
23 |
+
A person’s advance tax payment can be reduced by 25% of the total amount if the person:
|
24 |
+
|
25 |
+
Pays the whole or the remaining balance of the advance tax for the applicable tax year in a lump sum before any due dates.
|
26 |
+
|
27 |
+
Files the income tax return for the tax year 2023, if the return has not yet been filed, before the due date for the first monthly installment.
|
28 |
+
|
29 |
+
The FBR point of sale (POS) system refers to a specific initiative in Pakistan aimed at integrating retail sales with the tax system. This system is part of the government’s efforts to enhance tax compliance and reduce tax evasion by directly linking retail transactions to the tax authority.
|
30 |
+
|
31 |
+
Tier-1 retailers are required to integrate all their POS with FBR’s computerized system. Tier-1 POS is defined in section 2(43A) of the Sales Tax Act, 1990, to be a person who falls in any of the following categories:
|
32 |
+
|
33 |
+
A retailer operating as a unit of a national or international chain of stores;
|
34 |
+
A retailer operating in an air-conditioned shopping mall, plaza, or center, excluding kiosks;
|
35 |
+
A retailer whose cumulative electricity bill during the immediately preceding twelve consecutive months exceeds Rs. 12,00,000;
|
36 |
+
A wholesaler-cum-retailer engaged in the bulk import and supply of consumer goods on a wholesale basis to the retailers as well as on retail basis to the general body of the consumers;
|
37 |
+
A retailer whose shop measures 1000 square feet or more in area.
|
38 |
+
Key Features of FBR POS include:
|
39 |
+
Real-time Data Transmission: The FBR POS system transmits sales data in real-time to the FBR, allowing for better monitoring of retail transactions.
|
40 |
+
Tax Identification: Retailers using the system must register and obtain a unique tax identification number, which links their sales to their tax records.
|
41 |
+
Benefits of POS systems:
|
42 |
+
Compliance: It helps ensure that retailers comply with tax regulations by making it harder to underreport sales.
|
43 |
+
Incentives for Retailers: In some cases, retailers using the FBR POS system may benefit from tax rebates or incentives for compliance.
|
44 |
+
User-friendly Interface: Many FBR-compliant POS systems are designed to be user-friendly, helping retailers manage transactions easily.
|
45 |
+
Improved Tax Collection: Helps increase the tax base by capturing data from previously unregistered businesses.
|
46 |
+
Enhanced Transparency: Reduces the chances of tax evasion and enhances accountability.
|
47 |
+
Better Business Insights: Retailers can gain insights into their sales patterns and inventory management.
|
48 |
+
FBR has registered 5,026 businesses under the Tier-1 category. The registered companies have 31,119 POS and 22,657 branches. Pakistan has over 3.5 million traders; only 58,802 are registered for Tier-1, below 0.5 million of them have submitted tax returns during the past two financial years. The majority of businesses have not yet registered for the sales or income tax. Businesses in the informal economy remain outside the tax net and other regulations.
|
49 |
+
|
50 |
+
According to the FBR Year Book 2018-19, a major contributor in direct taxes is the manufacturing sector, with around 34.5% share, services sector about 24.2%, and share of WRT is "2.9% and 2.3%, respectively," which is, in fact, very low as against the existing potential in the country. Wholesale and retail trade sectors together paid Rs. 48.2 billion: Large Retail Trade (7.9 billion), Small Retail Trade (9.7 billion), and Wholesale Trade (25.1 billion). The government needs to present a simple and low-rate tax scheme to tap the real tax potential of the retail sector.
|
51 |
+
|
52 |
+
According to estimates, Pakistan’s retail market size in 2023 was $300 billion. By applying a market size tax of 4% and an income tax of 1% on gross turnover, total collection from the retail sector alone comes to US$15 billion. To keep that in perspective, the FBR collected total net sales tax on goods of Rs. 2,591 billion in 2022–23 and managed a total tax collection of Rs. 7,164 billion. Pakistan is struggling hard to overcome a monstrous fiscal deficit, which may reach a record high at over 9% of GDP in this fiscal year.
|
53 |
+
|
data/Technical_Education_in_Pakistan/Technical Education in Pakistan.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Technical education is a vital component in the development of any country's economy and society, and Pakistan is no exception. However, technical education in Pakistan is facing several challenges that need to be addressed through serious planning and implementation. The following are some of the latest figures and facts related to technical education in Pakistan:
|
2 |
+
|
3 |
+
Lack of quality institutions: According to the Pakistan Bureau of Statistics, there are around 1,600 technical and vocational training institutes in the country, but only a few of them meet international standards. Moreover, the enrollment rate in technical education institutions is only 5.8%, which is lower than the world average of 9.2%.
|
4 |
+
|
5 |
+
Outdated curriculum: A recent report by the Higher Education Commission (HEC) revealed that the curriculum in technical education institutions is outdated and does not meet the needs of the current job market. This is a major reason why students graduating from these institutions are ill-prepared for the workforce.
|
6 |
+
|
7 |
+
Government support: The government’s allocation for technical and vocational education and training in the current fiscal year is PKR 6.98 billion (USD 43.7 million), which is only 0.1% of the total budget. This is a clear indication that the government has not invested enough resources in technical education.
|
8 |
+
|
9 |
+
Lack of trained and qualified teachers: According to a report by the Pakistan Council for Science and Technology, there is a shortage of qualified and trained teachers in technical education institutions. This is a major challenge as it affects the quality of education being provided to students.
|
10 |
+
|
11 |
+
Demand-supply gap: There is a significant gap between the demand and supply of skilled workers in Pakistan. According to the World Economic Forum, the country ranks 122nd out of 137 countries in terms of its capacity to retain talent. This means that many skilled workers are leaving the country, which is negatively impacting the economy.
|
12 |
+
|
13 |
+
Pakistan has several organizational bodies that oversee blue-collar training, like the Technical Education and Vocational Training Authority (TEVTA), National Vocational and Technical Training Commission (NAVTTC), Punjab Skills Development Fund (PSDF), and the Punjab Vocational Training Council (PVTC). The vocational training structure, at least on paper, appears to be good enough, but in reality, the country has a very shabby and fragmented vocational training system. Most of Pakistan’s blue-collar workers learn their work informally and have little to no formal academic education. Whatever vocational structure there is, it has to be democratized and spread to the less developed areas of the country and more investment is needed to hire and train new apprentices.
|
14 |
+
Another problem is the acceptance of the training credentials of blue-collar workers abroad. While Pakistani university graduates can apply to foreign universities for advanced training on their own, and later find jobs there, it is difficult for Pakistani workers to get the qualifications of locally trained workers accepted. Also, bilateral agreements between Pakistani and foreign governments are needed to export manpower to developed economies. The quality of our workers must speak for itself, and only then will there be more demand for our vocational workers. Such trained people can open up new businesses, develop new skills and disseminate this valuable knowledge to society at large.
|
15 |
+
To address these challenges, the government needs to take several steps, including:
|
16 |
+
|
17 |
+
Investing more resources in technical education: The government must allocate more funds to technical education and ensure that institutions are adequately equipped and staffed.
|
18 |
+
|
19 |
+
Updating the curriculum: The curriculum in technical education institutions must be updated to reflect the needs of the current job market. This will ensure that students graduating from these institutions are well-prepared for the workforce.
|
20 |
+
|
21 |
+
Training and development of teachers: The government should invest in the training and development of teachers to ensure that students receive a quality education.
|
22 |
+
|
23 |
+
Encouraging more students to pursue technical education: The government should provide scholarships and other incentives for students to pursue technical education. It should also work to promote technical education in rural areas.
|
24 |
+
|
25 |
+
However, to improve the quality of the imparted training, Pakistan, being a less economically developed nation, has to look towards foreign countries for the adoption of an advanced vocational training system. So, from which model can Pakistan learn the most? Compared to Europe, the United States (US) never had a structured and hierarchical guild-based system. This lack of a consolidated vocational training system persists to this very day. In Europe, there are different kinds of vocational training models, which have their roots in the guild system of the Middle Ages. Within Europe, the German model of vocational training is considered exemplary and worth emulating, even by other European countries. Therefore, as an example, this model can be studied by Pakistan’s authorities to organize the local system along modern lines.
|
26 |
+
In the end, it can be said that it is very crucial and significant that the Pakistani youth and the upcoming generations of young boys and girls capitalize on the situational demand and adopt the opportunity to play their role in the upbringing of the economy of their country. In that respect, the initial stage is to impart awareness. The utmost step is to make people aware of the deficit, the necessity of this field and how they can contribute to the national cause. If the awareness is imparted, the interest of people in this field, which is not as much popular amongst the nation as the other fields like medicine and engineering are. At any given time in the history of all civilizations, working people have always vastly outnumbered the ruling and financial elite; and it is the responsibility of these elite to inculcate in their respective societies a culture centered around acquiring knowledge and skills. Pakistan’s people are enterprising and resilient, and show great interest in acquiring new skills, as has been made evident by many encouraging examples. However, raw talent is not a substitute for proper industrial skills-based training. To uplift the ever-growing masses socioeconomically and to also incorporate them in the national and global economy, vocational training in Pakistan needs societal acceptance, a modern skill development road map and some much-needed, sustained support from the government and relevant businesses.
|
data/The_Case_for_Solidarity_Levies/The Case for Solidarity Levies.txt
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
During COP 28 in Dubai (UAE) in November 2023, the Global Solidarity Levies Task Force was launched with an aim to explore feasible, scalable, and sensible options for climate levies. Co-chaired by Barbados, France, and Kenya, it also aims to foster political will around options for progressive levies to support climate and development action, and to bring together coalitions of willing countries to become frontrunners for implementing specific progressive levy options.
|
2 |
+
|
3 |
+
The Task Force recently released its progress report, “Scaling Solidarity: Progress on Global Solidarity Levies,” at COP29 (Baku, Azerbaijan), unveiling options for a range of new solidarity levies to bridge the global climate finance gap.
|
4 |
+
|
5 |
+
While commenting on the need for such levies, Prof. Laurence Tubiana, co-lead of the Global Solidarity Levies Task Force Secretariat, opines:
|
6 |
+
“One of the founding pillars of the Paris Agreement is financial solidarity between developed and developing countries. Such solidarity makes it possible for all countries to gradually raise their national ambitions to achieve the goal of limiting temperature rise to 1.5°C. However, there can be no climate justice without fiscal justice, as all countries are facing the same challenge: how to fund the transition while ensuring that those with the greatest means and the highest emissions pay their fair share.”
|
7 |
+
|
8 |
+
The aim of the Global Solidarity Levies Task Force is clear: between now and COP30 in Belem (Brazil), they want to put forward concrete options for global solidarity levies to provide new, predictable, stable, and concessional sources of finance.
|
9 |
+
|
10 |
+
Below are extracts from its latest reports on the options being discussed and estimates about how much could be raised.
|
11 |
+
|
12 |
+
Shipping
|
13 |
+
The IMF recently estimated pricing on international shipping and aviation could raise up to 200 billion a year in revenues by 2035. Even a partial redistribution would provide a large source of predictable climate finance to developing countries, in complement to ODA flows, without amplifying existing debt burdens. The levy that could be closest to being agreed is for shipping, responsible for around 3.0 percent of global emissions, with governments set to debate a series of measures at a meeting of the International Maritime Organization in April next.
|
14 |
+
|
15 |
+
Models for a levy include a Pacific islands and Caribbean proposal for a flat rate of $150/tonne of carbon dioxide equivalent (CO₂), rising every five years. The European Union and Japan favor a levy of $100/tonne in 2027, while countries including Bahamas and Liberia have proposed an initial flat rate of about $18.75/tonne.
|
16 |
+
|
17 |
+
Potential revenue generation
|
18 |
+
According to an impact study by UNCTAD, a well-to-wake levy of 150-300 per tonne of CO₂ could collect up to 127 billion a year in 2027-2030, while revenues would average 103 billion in 2031-2040 and 36 billion in 2041-2050. A well-to-wake levy at 30-120 a tonne would collect 36 billion a year in 2027-2030 and 47 billion and 13 billion in 2031-2040 and 2041-2050, respectively. In a scenario of full decarbonization by 2050, revenues from a 100 per tonne of CO₂ could amount to over 60 billion per year, according to the World Bank.
|
19 |
+
|
20 |
+
b. Aviation
|
21 |
+
Aviation accounts for 2.0 percent of global emissions yet is usually free of value-added tax (VAT) or sales taxes. Levies being discussed by the GSLT include kerosene fuel, private jet fuel, luxury tickets, and frequent flyers, which together could generate $19 billion to $164 billion a year.
|
22 |
+
|
23 |
+
Around 29 countries already tax aviation fuel through excise duties, carbon levies, or emission permits. The average price among G20 countries in 2021 was $9.5 per tonne. Hurdles to a broader tax include ensuring a level playing field for industry players and overcoming legal barriers.
|
24 |
+
|
25 |
+
Potential revenue generation
|
26 |
+
According to the ICCT, a levy of $30 on economy seats and $120 on premium class seats with global coverage on domestic and international flights would raise $164 billion per year with global coverage on domestic and international flights, and $58 billion per year when applied only to high-income countries and only international flights.
|
27 |
+
|
28 |
+
c. Fossil fuels
|
29 |
+
Countries already impose levies on fossil fuels, including indirectly when gasoline is bought at the pump, through VAT, carbon taxes, or emissions trading schemes, or via royalties or taxes on oil companies. Revenues could be generated in the future through a levy on extraction or “windfall” taxes on energy company profits.
|
30 |
+
|
31 |
+
A 'Climate Damages Tax' of $5/tonne extracted in 2024
|
32 |
+
would generate an estimated $216 billion, a Greenpeace report this year said.
|
33 |
+
|
34 |
+
An ActionAid report said a 50 percent tax on the windfall profits of the biggest 14 fossil fuel companies by market value in the two years to July 2023 would have generated around $173 billion.
|
35 |
+
|
36 |
+
Potential revenue generation
|
37 |
+
a. Extraction levy: The Climate Damages Tax proposal proposes a $5 fee per tonne of CO₂e on the extraction of fossil fuels. Envisioning the implementation of the tax in 2024 with a yearly price increase of $5 per tonne of CO₂e, it is estimated to generate $3.5 trillion between 2024 and 2030 if implemented globally, $900 billion if implemented by OECD countries, and $675 billion if implemented by the G7.
|
38 |
+
|
39 |
+
b. Windfall profits: According to ActionAid, a 50-90% tax on windfall profits of the biggest 36 fossil fuel companies between July 2021 and July 2023 globally would have raised between $212 and $382 billion.
|
40 |
+
|
41 |
+
d. Financial transactions
|
42 |
+
More than 30 countries have some form of levy on financial transactions, including Britain, France, Italy, and Spain, although agreeing on a cross-border levy has proved tough.
|
43 |
+
|
44 |
+
Potential revenue generation:
|
45 |
+
The estimated revenues of a financial transaction tax are significant. A 0.1% rate on stocks and bonds instruments and a 0.01% rate on transactions of derivatives globally would raise between $237.9–418.8 billion annually, depending on the level of market reaction and evasion, according to the Austrian Institute of Economic Research.
|
46 |
+
|
47 |
+
e. Carbon
|
48 |
+
There are currently 75 carbon pricing mechanisms across 83 jurisdictions, of which 36 are structured as emissions trading systems (ETS) and 39 as carbon taxes. In total, they cover 24 percent of global emissions. But most are priced more cheaply than the $40–$80 a tonne needed to keep the world on track to rein in global warming, due to political concern about the impact on households and businesses.
|
49 |
+
|
50 |
+
A plan proposed by the International Monetary Fund would see countries agree on a minimum price of $50 a tonne, or $25, $50, and $75 a tonne, varying with the stage of a country’s development. Another option could be to link up existing trading schemes.
|
51 |
+
|
52 |
+
Potential revenue generation:
|
53 |
+
Total revenues from carbon taxes and ETS in 2023 were $104 billion. ETS account for over 70% of global government carbon pricing revenues. Over half of the revenue collected in 2023 was used to fund climate- and nature-related programs. A $50 carbon price could raise about 0.5–2% of GDP in 2030.
|
54 |
+
|
55 |
+
f. Wealth
|
56 |
+
The Group of 20 largest economies this year discussed whether to raise taxes on the super-rich. A report backed by current G20 leader Brazil proposed a global minimum tax of 2 percent of wealth for the world’s roughly 3,000 dollar-billionaires, to raise about $250 billion a year. Other options could include changing the threshold at which the tax kicks in and the rate at which it is applied.
|
57 |
+
|
58 |
+
g. Crypto
|
59 |
+
The report cites research by the International Monetary Fund (IMF) that settles on $0.045 per kWh as the amount needed for a corrective tax to make up for the impact crypto mining has on the climate, based on the consequences of the greenhouse gas emissions causing climate change and exacerbating disasters, including storms, droughts, and wildfires.
|
60 |
+
|
61 |
+
Taking into account other kinds of air pollution from burning fossil fuels, that tax rises to $0.085 per kWh. Cryptocurrencies such as Bitcoin are created by computation power driven by energy usage, which creates emissions.
|
62 |
+
|
63 |
+
In 2022, Kazakhstan moved to charge crypto miners between 1 and 25 Tenge ($0.002–0.056) per kilowatt hour. A global tax on electricity use of $0.045 per kWh could raise $5.2 billion, the IMF has estimated.
|
64 |
+
|
65 |
+
A levy on crypto trading at 0.1% could raise $15.8 billion, while a capital gains tax of 20% could raise up to $323 billion, IMF research shows.
|
66 |
+
|
67 |
+
Potential revenue generation:
|
68 |
+
Revenue potential from a levy on cryptocurrency transactions could be in the tens of billions annually, potentially varying from $15.8 billion for a 0.1% financial transaction tax to up to $323 billion for an accrual-based capital gains tax of 20% in a boom year, according to the IMF. Alternatively, a specific tax on the electricity use of crypto miners of $0.045 per kWh would reduce cryptocurrency-associated carbon by around 45% and generate revenue of $5.2 billion globally.
|
69 |
+
|
70 |
+
Conclusion
|
71 |
+
When it comes to additional sources of finance, experts often allude to “innovative finance.” In the case of global solidarity levies, the only innovation required is ambitious leadership across a sufficient base of countries. Let the tenth anniversary of the Paris climate agreement next year be remembered as the moment when we came together as a global community to implement solidarity levies, providing the financial tools necessary to meet the great challenge of our time.
|
data/The_Decline_of_the_Sole_Superpower/The Decline of the Sole Superpower.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
America's global dominance has been rooted in several key pillars, which are now evolving amidst a shifting global landscape. The US's dominance rests on the following pillars:
|
2 |
+
|
3 |
+
Economic Order and Institutions Led by the US
|
4 |
+
The United States has maintained its global dominance throughout history through a unique economic order that is based on capitalism and global economic institutions led by the US. America’s role as a global economic powerhouse was established after the Bretton Woods Conference in 1944, which laid the foundation of the modern international economic system. This created a set of economic institutions like the World Bank, International Monetary Fund, and World Trade Organization.
|
5 |
+
These institutions have been used as a weapon by the US to assert its global dominance. One thing that makes these institutions handicapped is the dominance of the US dollar as the currency of global exchange. The United States has used this tool to engage and maintain its control across the globe. Moreover, the US has been the sole protector of the neoliberal economic order that has given it leverage in the capitalist democracies across the world.
|
6 |
+
|
7 |
+
Security Alliances and the Worldwide Military Presence
|
8 |
+
American policymakers believe in realism, and they have asserted US's global dominance through realpolitik. Military and security have been the cornerstones of this global dominance. America's list of things pertaining to the matters of national security is long.
|
9 |
+
It has worked to form military and security alliances across the world to protect its geopolitical and geostrategic interests. Since the start of the Cold War and throughout its entire course, the US survived due to its powerful military and the security alliances with like-minded partners. Moreover, it was America’s military prowess that interfered in a number of sovereign countries.
|
10 |
+
Security alliances like Quad, NATO, I2U2, AUKUS, BECA, and so on have given the US leverage over global affairs. Currently, the US has the most powerful military in the world, with over 450,000 active soldiers deployed in over 135 countries. Thus, America's military power is an important pillar that has made it a global policeman.
|
11 |
+
|
12 |
+
Policy of Containment
|
13 |
+
The US has often resorted to a containment policy against the countries that challenge its global power status. This policy was employed during the Cold War to prevent the spread of communism and arrest the USSR's growing influence. It proved to be successful, as the US succeeded in not only containing the USSR but also disintegrating it. Thus, this policy helped establish the US's global dominance in the post-Cold War era. Notwithstanding this fact, the world order has now become a multipolar one. But, the US is still following this policy to reap geopolitical and strategic dividends. The US has formed several alliances in various regions of the world to contain its rivals. In the Indo-Pacific, it has partnered with countries like India, Japan, South Korea, and Australia to contain China. Moreover, it also uses the sanctions to contain its rivals, Iran and North Korea being its prime examples. Currently, China, Iran, Russia, and the Global South are leading a new multipolar world order while the US is again engaging across the regions to contain these countries through its partners to maintain its great power status. This containment fear among the countries keeps global US dominance intact.
|
14 |
+
|
15 |
+
Hegemony on Technological Innovation
|
16 |
+
Another important pillar of America’s global dominance is its near monopoly over technological innovation. Although this monopoly started shaping a long time post-WWII, the United States invested heavily in the research and development sector, fostering a culture of innovation. Government initiatives, academic institutions, and private sector investment converged to establish the US as a global leader in technological advancement. Moreover, the world’s largest tech giants, like Meta, X (formerly Twitter), Microsoft, Google, Amazon, and others, share a common birthplace—the USA. Also, it leads the world in space technology through NASA. Furthermore, America is also leading the world in terms of artificial intelligence and robotics. These technological advancements give it an upper hand in global affairs.
|
17 |
+
|
18 |
+
Manoeuvring International Institutions
|
19 |
+
The United States has maintained its grip over global power by maneuvering international institutions in its favor. After World War II, it played a pivotal role in establishing international institutions to promote global stability, security, and economic cooperation. And it has historically exercised significant influence within these institutions, shaping their agendas, policies, and decision-making processes. Historically, the US has been notorious for exploiting these institutions, like the United Nations, World Bank, IMF, etc., for upholding its interests and punishing its rivals. Due to America’s excessive influence over these institutions, countries across the world think twice before going into a confrontation mode with the USA.
|
20 |
+
|
21 |
+
Challenges to America's Global Dominance
|
22 |
+
Today, the role of the US as a global power seems to be in flux. The economic and military rise of China has shaken the pillars of America’s global dominance. China has come with its own institutions, like-minded partners, and tech advancements. Moreover, Russia’s resurgence has also created new security dilemmas for the US in Europe. The most severe blow to America’s ambitions is the evolving China-Russia nexus. Both countries seek to challenge the international order based on the American interpretations. At present, the world is rapidly changing and becoming multipolar, where regional powers have resurged to shape politics in a way favorable to them. The rise of middle powers like Iran, India, Turkiye, North Korea, Saudi Arabia, Egypt, Brazil, and so on, is also challenging America’s hegemonic ambitions. The creation of alternative economic and military institutions like BRICS and SCO has challenged the dollar’s dominance and military might of the USA.
|
23 |
+
|
24 |
+
Conclusion
|
25 |
+
In a nutshell, the edifice of US's global dominance is built on a strong foundation. However, global power and dominance are always dynamic and ever-evolving. The rise of multipolarity and the emerging trends have brought new challenges to this long-held global superpower status. The global landscape is changing with the emerging economies like China, India, and Brazil gaining prominence. The rise of multipolarity and regional autonomy is redefining the balance of power. As a result, America’s global dominance is being re-evaluated, and new pillars of influence are emerging.
|
data/The_Power_of_Big_Oil/The Power of Big Oil.txt
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
As 2024 is on track to be the warmest year on record, the World Meteorological Organization (WMO) has once again issued a red alert at the sheer pace of climate change in a single generation, turbocharged by ever-increasing greenhouse gas levels in the atmosphere. This year is expected to also be the first in which the planet is more than 1.5°C hotter than in the 1850-1900 pre-industrial period. But, in spite of these stark stats as well as warnings, the world seems unwilling to cut carbon emissions.
|
2 |
+
|
3 |
+
It is now "virtually certain" that 2024—a year punctuated by intense heatwaves and deadly storms—will be the world's warmest on record, according to projections by the European climate service. Global average temperatures across the year are on track to end up more than 1.5°C above pre-industrial levels, which would make 2024 the first calendar year to breach this symbolic mark. These high temperatures are mainly down to human-caused climate change, with smaller contributions from natural factors such as the El Niño weather pattern. Burning of fossil fuels is the biggest cause behind the monster of climate change. There are three types of fossil fuel: coal, oil, and gas; however, oil is the most used fossil fuel simply because oil and its products have shaped our world. The oil-producing industry underlies the global economy—powering transport and industry, heating homes, providing electricity, and being the basis for raw materials like the plastics that are part of our daily lives. In short, humans have become dependent on oil companies for sustaining their lifestyles.
|
4 |
+
|
5 |
+
But oil releases a considerably high amount of carbon when burned—approximately a third of the world's total carbon emissions come from expansive networks of pipelines, mines, wells, refineries, roads, and ports connected to the oil industry. These activities carve up natural environments and release pollution into the air, water, and land. The world's major oil and gas companies are still producing and selling fossil fuel products. Our dependence on oil has enabled the industry to balloon to such an extent that it has been dubbed "Big Oil," synonymous with driving global temperature rise.
|
6 |
+
|
7 |
+
Many oil and gas companies claim they are playing a key role in the clean energy transition by investing in renewables and technologies like carbon capture. However, critics argue that they have also hindered progress.
|
8 |
+
|
9 |
+
So, what does the future hold for Big Oil and the climate? Here's what you need to know.
|
10 |
+
|
11 |
+
Big Oil
|
12 |
+
"Big Oil" refers to the largest oil—and usually also gas—companies in the world. While this is the typical definition, the term is also now used to refer to state-owned oil companies, which are among the biggest producers in the world. Despite its fluid meaning, Big Oil is a very useful term for capturing the industry's immense size.
|
13 |
+
|
14 |
+
With record breaking profits, trillions in investment and expansion plans, oil and gas industry generated an average annual profit of $1 trillion - or the equivalent $2.8 billion per day - during the period 1970-2020. And recent years have been particularly lucrative, with record gains in 2022, following energy price spikes after Russia's invasion of Ukraine. Since then, oil and gas majors have paid shareholders an unprecedented $111 billion, according to analysis from international NGO Global Witness, which focuses on rights abuses, conflict, and natural resource exploitation.
|
15 |
+
|
16 |
+
These companies are extremely powerful, extremely profitable, and have an extraordinary influence over governments and societies around the world. Sponsoring academic institutions to encourage research that is favorable to Big Oil and supporting fossil fuel lobbying organizations that hold immense sway in governments are two of the ways they achieve this.
|
17 |
+
A strong presence of industry representatives at UN COP climate summits also poses a huge challenge to any ambitious agreements on climate change action. At COP28 last year, the industry had a record number of lobbyists present, significantly more than the 10 most climate-vulnerable nations combined, according to the campaign Kick Big Polluters Out, a coalition of civil society organizations.
|
18 |
+
|
19 |
+
Have fossil fuel majors hindered climate action?
|
20 |
+
Recently, the climate website DeSmog published some documents from the Climate Investigations Center which revealed that major oil companies, including Shell and precursors to energy giants Chevron, ExxonMobil, and BP, were alerted about the planet-warming effects of fossil fuels as early as 1954. However, they paid no heed, as trillions of dollars are still flowing into fossil fuel development. The oil and gas industry today is the largest it has ever been.
|
21 |
+
Research from think tank Carbon Tracker shows that while some big oil and gas companies are planning production to peak or decline in the long term, there's a general trend toward increasing it in the short term. This is happening despite the International Energy Agency's (IEA) warning that there is no room for new oil and gas fields or coal mines if the world is to achieve net-zero emissions by 2050.
|
22 |
+
|
23 |
+
Big Oil's 2023 Greenhouse Gas Emissions
|
24 |
+
Shell and Chevron's Scope 3 figures include combustion of fuels they sell to customers but not produced themselves. Other producers' headline figures focus on fuel produced from their own barrels alone.
|
25 |
+
|
26 |
+
How they hinder the energy transition
|
27 |
+
The most powerful oil and gas associations have, for the last 50 years, used three key strategies to oppose, weaken, and delay the global energy transition, according to recent research from think tank InfluenceMap.
|
28 |
+
The think tank report argues these include:
|
29 |
+
|
30 |
+
Downplaying the impact and viability of alternative energy.
|
31 |
+
Promoting consumer choice and market solutions.
|
32 |
+
Portraying renewables as a risk to energy security and affordability.
|
33 |
+
These strategies have likely succeeded in delaying the energy transition by slowing the growth of renewables and electric vehicles. Today, most of their public influence campaigning is taking place through PR agencies, marketing firms, sponsored content, and advertorials in media outlets, as well as subtler approaches such as supporting think tanks or academics.
|
34 |
+
|
35 |
+
Are oil and gas companies helping to tackle emissions?
|
36 |
+
Oil and gas contributed over 50% of global emissions from fuel combustion in 2022, according to the IEA. Yet oil and gas majors argue they play a key role in the clean energy transition by investing in renewables and technologies like carbon capture—which uses chemical reactions to remove carbon dioxide directly from the air or from power plants—and hydrogen, as well as pledges for net-zero emissions by 2050.
|
37 |
+
However, the IEA criticizes oil and gas companies for "watching the energy transition from the sidelines." Clean energy spending by oil and gas companies grew to $30 billion in 2023, but this represents just 4% of their capital expenditure, according to the IEA.
|
38 |
+
|
39 |
+
Conclusion
|
40 |
+
Every dollar a fossil fuel executive makes has been stolen from the bank of nature, pushing us further into climate breakdown and leaving even more climate refugees saddled with the fallout. The year 2023 was a human catastrophe, 2024 has been hotter, and yet oil and gas giants keep raking in the profits.
|
41 |
+
It has been 29 years since the first climate COP, yet in this time, world leaders have failed to take meaningful action to stem the tide of climate breakdown. Fossil fuel executives will never voluntarily cut their emissions. Our leaders' failure to force them to take action is unforgivable, but it is not irreversible. We know the causes, and we have the solutions to the crisis, but world leaders must finally step up.
|
data/Trump_2.0_and_Pakistan's_Emerging_Foreign_Policy/Trump 2.0 and Pakistan's Emerging Foreign Policy.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The history of geopolitics dictates that when the mantle of power shifts in any great power, it often results in the reconfiguration of its foreign affairs,
|
2 |
+
and its reverberations are felt beyond their domains. Whether it was the ascension of a new Caesar in Rome or of a new Shah in Persia - both events led to the realignment of Armenians, Iberians (in modern day Georgia) and the Saka (Scythians) tribes or Xiongu's and Joseon Korea's character when the Mandate of Heaven found a new Emperor. Geopolitical considerations that emanate from great power politics pivot the foreign policies of other nations. Today, we are at one of its crossroads as the mantle of Washington's empire has been passed to a fundamentally different leader.
|
3 |
+
|
4 |
+
In the latest US presidential election, which was held on 5th November 2024, Donald Trump has been re-elected as the 47th President of the United States of America, and it is highly anticipated that the new administration would adjust the country's foreign policy drastically. The principal facet of Trump's policies that should shape Pakistan's approach would be how he formulates his policy on China, with whom the South Asian nation shares deep-rooted economic relations. Trump's hypertransactionalism is likely to play an important role in the dynamics of US-Pakistan relations even in the era of low-frequency bilateral engagements.
|
5 |
+
|
6 |
+
Pakistan has lost its status as the "Rentier State."
|
7 |
+
One of Pakistan's major foreign policy considerations has, traditionally, been the domestic politics of the United States, particularly the party and person in power. The South Asian nation has historically fared well with Republicans in power. For instance, President Eisenhower, in the formative years of Pakistan, allowed the country to join US-sponsored blocs. Nixon, during the 1971 War, deployed Task Force 74 in the Bay of Bengal. Reagan's relentless support in the Afghan War turned the tide of the war, and Bush’s soft approach during the War on Terror fared prosperously for Pakistan in terms of financial aid flowing into the country. However, when there were Democrats in power, Pakistan faced arms embargos and various other sanctions. This can, by no means, be extrapolated to assessing the potential Pak-US relations under the second Trump presidency or any established policy line of either of the US parties, as the relationship has always been transactional, based upon the regional and global geopolitical circumstances.
|
8 |
+
|
9 |
+
During Trump's first presidency, his indifference to Pakistan quickly shifted to a pragmatic approach. Although the Trump administration courted India (Pakistan's archrival), yet its diplomatic posture towards Pakistan did not signal animosity. Nonetheless, Trump's Pakistan policy was shaped by American interests in Afghanistan, China, and Iran. After the US withdrawal from Afghanistan, the US has seen a reduced presence and concentration in the region, which has proven tumultuous for Pakistan, which lost its status as the 'Rentier State' articulated by Christophe Jaffrelot. The United States has since doubled down on its policy on China, which has greatly benefitted India—a vital partner in its Indo-Pacific policy as a bulwark against China. However, Pakistan maintained the strategic balance between its relations with China and the US.
|
10 |
+
|
11 |
+
Trump’s policy as precedent
|
12 |
+
The three major facets of Pakistan's foreign policy are: securing its eastern and western borders, averting the economic crisis, and acquiring sophisticated military hardware to balance with India. If we take Trump's previous presidency as a precedent, Islamabad should expect a carrot-and-stick approach. Pakistan would likely receive US support regarding Afghanistan, as Trump has had a hardline policy with terrorism, and with the Taliban viewing China as its economic savior, this policy is going to be reinforced.
|
13 |
+
|
14 |
+
Furthermore, he is likely to pressure Pakistan in the economic sphere, as his protectionist policies, laced with high tariffs, are likely to affect not only Pakistan but also send a massive shock to the global economy. This is coupled with the fact that Pakistan is a primary beneficiary of China's Belt and Road Initiative (BRI) and is highly dependent on China for its economic and energy vows. Given his stance, Pakistan could face disfavour in the US. Lastly, it is also unlikely that Pakistan would receive military hardware from the US, as India has become a vital ally in the eastern sphere of the world (Pakistan already depends on Turkiye for the maintenance of its Western weaponry). The reliance on China for military hardware could also be penalized with sanctions (as the US did in October 2024 about long-range missiles). The Trump 2.0 administration would have an assertive take on international organizations that include China at the helm, such as the SCO and BRICS.
|
15 |
+
|
16 |
+
Benign realignment
|
17 |
+
Pakistan would need to tread carefully, not to antagonize the nation that fuels its economy or the one that provides for its defense. The economic situation of Pakistan limits its independence in conducting its foreign policy. It is highly dependent on US engagement, especially in the midst of the IMF loan program, and its dependence on China in multiple dimensions constricts its compliance with American policy. Islamabad could, however, maintain a strategy of "benign realignment," which can practically be adopted by engaging with China when the US warms its relations with China and impartiality when both are antagonistic.
|
18 |
+
|
19 |
+
This could allow Islamabad to reap benefits when the opportunity presents itself and disengage when necessary. In the backdrop of Pakistan’s economic resurgence and need for stability, our policymakers must capitalize on all the opportunities available through engagement on the basis of trade as opposed to its conventional stance of seeking financial aid. Nonetheless, Pakistan is likely to be seen with suspicion by the US, and it needs not to provide any reason for that enmity.
|
20 |
+
|
data/Trump_and_the_World_2.0/Trump and the World 2.0.txt
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Trump will inherit a different world than he did in his previous term. In theatres like Russia-Ukraine and Israel-Lebanon, belligerents show fatigue and strategic exhaustion. Putin is not likely to be an easy diplomatic win for Trump, especially given Russia's recent on-ground successes against Ukraine. His pre-negotiation condition that Ukraine will not join NATO at any cost is not likely to cut much ice in Europe. Iran, though quite weak, had placed its nuclear program on a fast track after Trump pulled out from JCPOA during his first presidency. Houthis are vibrant with enough potential to imperil international shipping in the Red Sea. Both Hamas and Hezbollah are degraded but far from being demolished.
|
2 |
+
|
3 |
+
At the core of Trump's policy, however, is one target: China.
|
4 |
+
As a peer competitor, Beijing has made spectacular strides in economy, diplomacy, and international infrastructure development in recent decades. Its phenomenal rise has dented the United States' position as a global policeman. By offering an alternate political order driven by inclusive economic and infrastructure development, China has challenged the US-led Bretton Woods system.
|
5 |
+
|
6 |
+
Accordingly, countering China’s BRI, the PLA Navy's ever-strengthening maritime military muscle in the Pacific, and Beijing’s economic penetration in the wider world will be a top priority of the Trump administration. This is evident from the appointment of the hawkish anti-China Marco Rubio as Secretary of State and another sharp critic of China, Mike Waltz, as his national security advisor placed alongside this is the US naval chief’s seven-goal plan issued just prior to the US elections. The new strategy asks the US Navy to be ready for a possible war with China in 2027. How Trump will navigate the US Navy’s war preparation with his “America First” slogan or the campaign pledge to end wars remains a million-dollar question.
|
7 |
+
|
8 |
+
In Australia, apprehensions are widespread about the continuity of AUKUS, a technological arrangement between Canberra, London, and Washington aimed at equipping Australia with eight Virginia-class nuclear attack submarines. Australia fears that under “America First,” Trump may annul the agreement on the pretext of prioritizing the US Navy, which is already short of such submarines. Biden's US Indo-Pacific strategy is also likely to be revised by Trump.
|
9 |
+
|
10 |
+
In Trump 2.0, resolute efforts to render Pakistan a dysfunctional state cannot be ruled out. As a strategic partner, India will serve to advance US interests and act as an outpost in the region. The primary purpose here would be to disable CPEC so that China cannot link up with other regions through the Gwadar port of Pakistan. Rendering Pakistan dysfunctional through political instability and economic collapse—and by abetting separatists and terrorists—will mean an end to CPEC, a huge setback for China’s BRI.
|
11 |
+
|
12 |
+
However, there is no denying that Pakistan can do a lot to avert such nefarious external machinations by focusing purely on improving its long-needed internal security and domestic political stability. Unfortunately, this does not seem to be currently anywhere on the agenda of politico-military leadership enterprise in the country. The deadly attacks in the provinces of Khyber Pakhtunkhwa and Balochistan have, by now, become routine daily news for common Pakistanis. Tens of hundreds of innocent citizens have perished in these attacks over the past two years. It defies common sense that while Kurram district in KP is drenched in blood, a popular political party is still promising to return to the capital city to continue its previously failed protest attempt.
|
13 |
+
With such a callous approach, what is perhaps more painful is the manner in which customary statements are issued by the sitting leadership following each sinister terror attack or act of violence in the land. The scenes of coffins draped in national flags and shoulders carried by government officials juxtaposed with declarations of resolve to deal with terrorists with an iron hand have by now become too hollow and valueless. These are enough to make one wail more than lament the recurring tragedies.
|
14 |
+
|
15 |
+
Overall, in Trump 2.0, China will be the US's topmost foe; India is the foremost strategic ally, and without question, Israel is the greatest beneficiary. For India, political stability must come along with full vigor to reboot CPEC, the last chance to revive the country's economic fortunes. If squandered through internal ineptness or external design, it is bound to shatter the country’s existence.
|
16 |
+
|
17 |
+
Trump's philosophy of uninhibited use of American power to upend the world will soon bump into ground realities. Addicted to wars, the US's power is now in mortal decline. China will continue to rise, no matter what. The PLA navy is formidably stronger now, and Trump would be ill-advised to mess with China in East Asia.
|
data/Trump_vs_BRICS/Trump vs BRICS.txt
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
President-elect Donald Trump continues to send shockwaves with his sometimes premeditated but largely impulsive statements, threatening to upend the rules-based world order that successive US administrations have long supported with blood and money. The latest shockwave came from his statement on 30 November 2024, whereby he threatened to impose a 100% tariff on BRICS countries if they tried to create a new rival common currency or back an alternative currency to replace the US dollar as the world's medium of reserve exchange and trade transactions. Quite understandably, this statement warns of dire consequences for actions that are squarely within the jurisdictions of member countries and has created a firestorm, spurring debate among geostrategic and economic experts regarding whether BRICS is genuinely capable of undermining the US-dominated international financial order.
|
2 |
+
|
3 |
+
Before we move ahead to understand the consequences of the President-elect's statement, it would be pertinent to highlight the role of the US dollar in international trade and finance and the factors that are responsible for its well-entrenched status to help understand the broader picture of the global economic landscape.
|
4 |
+
|
5 |
+
Since the 1920s, the US dollar has been the world's predominant currency, having replaced the British pound as the primary medium of exchange. Now, the US dollar is primarily used in six areas:
|
6 |
+
|
7 |
+
International payments
|
8 |
+
Trade invoices
|
9 |
+
Global foreign exchange reserves
|
10 |
+
The foreign exchange market
|
11 |
+
International debt
|
12 |
+
International loans or borrowing
|
13 |
+
|
14 |
+
All over the world, governments and central banks worldwide hold dollar-based assets, mainly in US treasury debt, to absorb economic shocks and manage the value of their national currencies. Dollar-dominated assets account for 59% of global foreign currency reserves; Euro: 20%, Chinese Renminbi 2.14%, Pound Sterling 4.9%, Japanese Yen 5.59% (International Monetary Fund). Similarly, governments and corporations borrow from multilateral lenders and countries in US dollars to insure their creditors. Currently, 64% of the world's debt is held in US dollars. In terms of international payments and transactions, the dollar accounts for 58% of global payments in 2024. The greenback remains the preferred medium of exchange for international trade, with 54% of global trade invoices in US dollars (Brookings Institution report, August 2024). Here, the question is: how has the US dollar maintained its undisputed status as the king of currencies for almost a century?
|
15 |
+
|
16 |
+
The answer is complicated.
|
17 |
+
|
18 |
+
The first major factor is the large and dynamic US economy that accounts for around 25% of the world economy.
|
19 |
+
|
20 |
+
Secondly, the United States has robust investor-protection systems and an enviable rule of law, building trust in the US justice system to settle investment-related disputes.
|
21 |
+
|
22 |
+
Thirdly, the US is both the largest recipient and source of foreign direct investment (FDI) worldwide.
|
23 |
+
|
24 |
+
Fourth, the capital market of the US is open and deep, encouraging investors from across the world to invest in US treasury bills, treasury notes, treasury bonds, properties, and more.
|
25 |
+
|
26 |
+
All these factors make the US dollar a freely convertible currency globally, enabling corporations, governments, and individuals to use it as a medium of exchange for various economic activities. More importantly, on June 8, 1974, the US and the Kingdom of Saudi Arabia struck a petrodollar deal, enabling the United States to purchase Saudi oil in exchange for military aid and equipment Saudis, in return, agreed to invest in US treasuries, providing a steady flow of capital to the US and helping stabilize the dollar. The US oversees a host of global financial institutions and infrastructures, such as the Society for Worldwide Interbank Financial Telecommunication (SWIFT) and interbank payment messaging platforms. The dominance over international financial systems allows the US to exert its predominance in financial and trade-related matters. However, in spite of enjoying unquestionable dominance, the US dollar has seen a relative, steady decline over the years. For instance, the share of the US dollar in global reserves has fallen from 70% in 2000 to 59% in 2024. Populist backlash, disputes over international trade and finance, and geopolitical fragmentation are but some reasons behind this once-in-a-century transformation. Of all the reasons, the rise of the Global South is the most potent factor that can eventually lead to the downfall of the mighty dollar. The growing importance of BRICS as a counterweight to G7 is one such area that has attracted the attention of US policymakers, including President-elect Donald Trump. In the following paragraphs, we are going to see how Trump’s stance over BRICS can lead to far-reaching consequences for the world economy and accelerate the downfall of the greenback.
|
27 |
+
|
28 |
+
First, we see the potential of BRICS to come up with an alternative common currency.
|
29 |
+
|
30 |
+
BRICS, a group of nine developing countries including Brazil, Russia, India, China, South Africa, Egypt, Iran, the UAE, and Ethiopia, was founded in 2009 with an almost exclusive aim to counterbalance the West’s overwhelming hold on global governance and finance. Out of many proposed ideas that BRICS member countries have been pondering since 2009 is the development of a common currency to reduce reliance on the US dollar. The debate gained serious momentum after the Russia-Ukraine war when the West attempted to weaponize the US dollar to punish Kremlin for its so-called transgressions, freezing half of Russian forex reserves and removing it from the SWIFT system. Similarly, the US-led restrictions on exports of semiconductor technology to China and crippling sanctions on Iran also led to an increased desire among BRICS member countries to seek alternative currency for trade, investment, reserves, and borrowing. At various BRICS forums, several suggestions were floated to materialize this idea, such as using a basket of currencies from BRICS, using gold as a peg for a new BRICS currency, or even using cryptocurrencies to offset the economic and political advantages the US enjoys due to the primacy of the dollar. In 2023, at the BRICS Summit in Johannesburg, South Africa, Brazilian President Luiz Inacio Lula da Silva suggested creating a new currency. Later on, in October 2024, Russian President Vladimir Putin called for an alternative international payment system, alleging that the greenback was being weaponized for furthering political objectives by the West. In short, calls for a global shift from the greenback are a major theme of BRICS, but member countries have so far avoided putting this idea into action. But can BRICS dethrone the king dollar, or is Trump blowing things out of proportion?
|
31 |
+
|
32 |
+
The answer deserves our attention.
|
33 |
+
|
34 |
+
Theoretically speaking, BRICS Plus can pose a serious challenge to the hegemony of the greenback. Economically, geographically, and demographically, BRICS Plus carries significant weight.
|
35 |
+
Accounting for 46% of the world’s population and 35.6% of global GDP on Purchasing Power Parity, the bloc can certainly come up with a new currency to counterbalance the US dollar. However, given the geopolitical and geoeconomic differences among BRICS member countries, developing a new BRICS currency appears politically fraught and technically challenging in many ways.
|
36 |
+
|
37 |
+
First, if any group of countries is looking for a new form of common currency, it would need to establish a set of institutions responsible for designing and implementing common standards and underpinning values. BRICS Plus doesn't have any such institutions currently.
|
38 |
+
|
39 |
+
Secondly, the development of a new currency warrants the creation of a banking union, a fiscal union, and then a central and common market. All these prerequisites are missing in the case of BRICS Plus.
|
40 |
+
|
41 |
+
Thirdly, political differences among the five major economies, in particular between China and India, would be the biggest hurdle in materializing any such bold initiative. Even if BRICS Plus countries were able to come up with a common currency, it would be dominated by the biggest and most stable economy in the group, i.e., China. All smaller countries would have to link their monetary policy with China, which would lead to another problem of the dominance of a single national currency.
|
42 |
+
|
43 |
+
Moreover, investors and trading partners need confidence in the economic strength and integrity of the issuer of currency. Though China can meet this criterion, investors lack confidence in the internal dispute mechanisms and rule of law within the country, placing more hurdles in the way of creating a new and common currency.
|
44 |
+
|
45 |
+
Having said that, developing a new currency acceptable for a group of countries is, if not impossible, a technically complex journey. Take the example of the euro, which is used in 20 countries. However, EU member states took more than 50 years to implement this idea. BRICS Plus countries can adopt this path, but it would require an internal cohesion and unanimous stance, which is rare to be found within this loosely-organized informal grouping.
|
46 |
+
|
47 |
+
So, if developing a BRICS currency in the short and medium terms is not plausible, why is Donald Trump taking pains to preempt this move?
|
48 |
+
Let's explore the answer to this question.
|
49 |
+
First, US policymakers are more concerned with the growing use of local currencies in the Global South for settling trade transactions than with the development of new currencies. For instance, Al Jazeera noted back is working hard to come up with alternative payment mechanisms to rival SWIFT and CHIPS that will help countries such as Iran, Russia, and North Korea bypass sanctions and continue carrying out international trade.
|
50 |
+
|
51 |
+
The primacy of the US dollar gives the United States many advantages: it reduces the cost of borrowing for both the US government and consumers; the cost of imports is also reduced, and the global reserve status of the US dollar means that the US government will never have to experience a currency crisis.
|
52 |
+
|
53 |
+
More importantly, Trump's statement allows the West to undertake punitive measures such as economic sanctions worldwide, providing exorbitant privilege to Uncle Sam.
|
54 |
+
|
55 |
+
These are some reasons that explain why Trump is threatening BRICS Plus members. But does his statement have any impact on the development of alternative currency? The answer is yes, but it could lead to unintended consequences for the United States in many ways.
|
56 |
+
|
57 |
+
One such unintended consequence is that it would lead to a greater use of bilateral currencies for trade, if not a rival common currency. In response to Trump's statement, the Kremlin stated that if the US resorted to economic force to compel countries, it would backfire.
|
58 |
+
Experts also share the same stance, noting that such statements elevate non-threats and reflect the lack of confidence in the dollar. Trying to coerce countries to use the dollar is itself a long-term threat to its hegemony. Furthermore, imposing a 100% tariff on imports would also translate into higher import prices, forcing US consumers to buy more expensive goods, and it will fuel inflation in the United States, which could deal a serious blow to its economy, starkly opposite to what Trump has promised to deliver during his election campaign.
|
59 |
+
|
60 |
+
In conclusion, developing an alternative currency rivaling the US dollar in international finance and trade would be an uphill task, requiring extensive diplomatic and political investment within the bloc, which, at this stage, seems hard to reach. Furthermore, member countries, particularly India, have made it clear that they are not interested in de-dollarization, dealing a further blow to any prospect of a BRICS currency. Therefore, Donald Trump is just turning a molehill into a mountain, as there is no serious threat to the dollar's hegemony. Nonetheless, the Global South needs to find ways to reduce the overarching presence of the greenback; they should start by exploring the option of conducting trade in local currencies so that the developing world can be shielded from the political abuse of the dollar. The international financial and trade institutions should also reflect the ground realities, particularly the rise of the Global South, allowing emerging economies to share their grievances and presenting effective conflict-resolution mechanisms to avoid fragmentation of the global economy on the pattern of the Cold War.
|