├── .gitignore
├── LICENSE
├── README.md
├── actmyngpcom.txt
├── gmail.py
├── img
├── unfurl.png
└── unfurl.svg
├── parse_emails.py
└── unfurl.py
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published
637 | by the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | Refer to [this blog post](https://jlospinoso.github.io/python/unfurl/abrade/hacking/2018/02/08/unfurl-url-analysis.html) for instructions.
4 |
--------------------------------------------------------------------------------
/actmyngpcom.txt:
--------------------------------------------------------------------------------
1 | https://act.myngp.com/el/-1019536521446290944/6466136548250749440
2 | https://act.myngp.com/el/-1019536521446290944/7763173240933452288
3 | https://act.myngp.com/el/-1019536521446290944/7763173240933452288
4 | https://act.myngp.com/el/-1019536521446290944/7835230834971380224
5 | https://act.myngp.com/el/-1019536521446290944/7907288429009308160?refcode=5092017
6 | https://act.myngp.com/el/-106179900244227584/-6248367425723037184?refcode=thermometer
7 | https://act.myngp.com/el/-106179900244227584/-6320425019760965120
8 | https://act.myngp.com/el/-106179900244227584/-6392482613798893056
9 | https://act.myngp.com/el/-106179900244227584/-6392482613798893056
10 | https://act.myngp.com/el/-106179900244227584/-7689519306481595904
11 | https://act.myngp.com/el/1074076575825660416/4370278269709715968
12 | https://act.myngp.com/el/1074076575825660416/5667314962392418816
13 | https://act.myngp.com/el/1074076575825660416/5667314962392418816
14 | https://act.myngp.com/el/1074076575825660416/5739372556430346752
15 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?express_lane=true&amount=10&refcode=express_lane_10
16 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?express_lane=true&amount=100&refcode=express_lane_100
17 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?express_lane=true&amount=20&refcode=express_lane_20
18 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?express_lane=true&amount=50&refcode=express_lane_50
19 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?refcode=em09272017
20 | https://act.myngp.com/el/1074076575825660416/5811430150468274688?refcode=express_lane_other
21 | https://act.myngp.com/el/-1079158621794203136/-5245189509214631424
22 | https://act.myngp.com/el/-1079158621794203136/-5317247103252559360
23 | https://act.myngp.com/el/-1079158621794203136/-5317247103252559360
24 | https://act.myngp.com/el/-1079158621794203136/-6614283795935262208
25 | https://act.myngp.com/el/1118403382804482560/-1840749665899247104
26 | https://act.myngp.com/el/1118403382804482560/-399597785140688384?refcode=Guardian2
27 | https://act.myngp.com/el/1118403382804482560/-471655379178616320
28 | https://act.myngp.com/el/1118403382804482560/-543712973216544256
29 | https://act.myngp.com/el/1118403382804482560/-543712973216544256
30 | https://act.myngp.com/el/1122375901135768064/4424035592214940160?refcode=em42017&amount=10.00
31 | https://act.myngp.com/el/1122375901135768064/4568150780290796032
32 | https://act.myngp.com/el/1122375901135768064/5865187472973498880
33 | https://act.myngp.com/el/1122375901135768064/5865187472973498880
34 | https://act.myngp.com/el/-1159872679467546112/3961291830014249472
35 | https://act.myngp.com/el/-1159872679467546112/5258328522696952320
36 | https://act.myngp.com/el/-1159872679467546112/5258328522696952320
37 | https://act.myngp.com/el/-1159872679467546112/5330386116734880256
38 | https://act.myngp.com/el/-1159872679467546112/5402443710772808192
39 | https://act.myngp.com/el/-1159872679467546112/5474501304810736128
40 | https://act.myngp.com/el/1167259069588179456/-1754057572095620608?refcode=baby
41 | https://act.myngp.com/el/1167259069588179456/-1826115166133548544
42 | https://act.myngp.com/el/1167259069588179456/-1898172760171476480
43 | https://act.myngp.com/el/1167259069588179456/-1898172760171476480
44 | https://act.myngp.com/el/1167259069588179456/-3195209452854179328
45 | https://act.myngp.com/el/1179122808641817088/6378037079563569664
46 | https://act.myngp.com/el/1179122808641817088/7675073772246272512
47 | https://act.myngp.com/el/1179122808641817088/7675073772246272512
48 | https://act.myngp.com/el/1179122808641817088/7747131366284200448
49 | https://act.myngp.com/el/1179122808641817088/7819188960322128384
50 | https://act.myngp.com/el/1179122808641817088/7819188960322128384?express_lane=true&amount=10&refcode=express_lane_10
51 | https://act.myngp.com/el/1179122808641817088/7819188960322128384?express_lane=true&amount=100&refcode=express_lane_100
52 | https://act.myngp.com/el/1179122808641817088/7819188960322128384?express_lane=true&amount=25&refcode=express_lane_25
53 | https://act.myngp.com/el/1179122808641817088/7819188960322128384?refcode=express_lane_other
54 | https://act.myngp.com/el/1179122808641817088/8179476930511768064
55 | https://act.myngp.com/el/-1269219123734771200/-3755909805485061632?refcode=em031317&amount=25.00&recurring=12
56 | https://act.myngp.com/el/-1269219123734771200/-3827967399522989568
57 | https://act.myngp.com/el/-1269219123734771200/-5125004092205692416
58 | https://act.myngp.com/el/1288812270472137216/-5416049218124510720
59 | https://act.myngp.com/el/1288812270472137216/-5488106812162438656?refcode=em030817&amount=25.00&recurring=12
60 | https://act.myngp.com/el/1288812270472137216/-5560164406200366592
61 | https://act.myngp.com/el/1288812270472137216/-6857201098883069440
62 | https://act.myngp.com/el/1301298341697030656/1985057118040361472
63 | https://act.myngp.com/el/1301298341697030656/1985057118040361472
64 | https://act.myngp.com/el/1301298341697030656/255674861130091008
65 | https://act.myngp.com/el/1301298341697030656/327732455168018944
66 | https://act.myngp.com/el/1301298341697030656/399790049205946880?express_lane=true&amount=10&refcode=express_lane_10
67 | https://act.myngp.com/el/1301298341697030656/399790049205946880?express_lane=true&amount=100&refcode=express_lane_100
68 | https://act.myngp.com/el/1301298341697030656/399790049205946880?express_lane=true&amount=25&refcode=express_lane_25
69 | https://act.myngp.com/el/1301298341697030656/399790049205946880?refcode=express_lane_other
70 | https://act.myngp.com/el/1301298341697030656/688020425357658624
71 | https://act.myngp.com/el/-1309244619750897152/-3786866555365094912?refcode=em09272017
72 | https://act.myngp.com/el/-1309244619750897152/-3858924149403022848
73 | https://act.myngp.com/el/-1309244619750897152/-3930981743440950784
74 | https://act.myngp.com/el/-1309244619750897152/-3930981743440950784
75 | https://act.myngp.com/el/-1309244619750897152/-5228018436123653632
76 | https://act.myngp.com/el/1409699201669401088/-2441979116641580544?utm_term=.5b69369a572d
77 | https://act.myngp.com/el/1409699201669401088/-2514036710679508480?refcode=em09142017
78 | https://act.myngp.com/el/1409699201669401088/-2586094304717436416?id=49853037
79 | https://act.myngp.com/el/1409699201669401088/-2658151898755364352
80 | https://act.myngp.com/el/1409699201669401088/-2730209492793292288
81 | https://act.myngp.com/el/1409699201669401088/-2730209492793292288
82 | https://act.myngp.com/el/1409699201669401088/-4027246185475995136
83 | https://act.myngp.com/el/1433643381927316224/-7487999574521541888
84 | https://act.myngp.com/el/1433643381927316224/-7560057168559469824
85 | https://act.myngp.com/el/1433643381927316224/-7632114762597397760
86 | https://act.myngp.com/el/1433643381927316224/-7632114762597397760
87 | https://act.myngp.com/el/1433643381927316224/-8929151455280100608
88 | https://act.myngp.com/el/1451217834476046848/-4912490484789147136?refcode=em030717&amount=27.00&recurring=12
89 | https://act.myngp.com/el/1451217834476046848/-4984548078827075072
90 | https://act.myngp.com/el/1451217834476046848/-6281584771509777920
91 | https://act.myngp.com/el/-1508522314782209536/5252137172720945664
92 | https://act.myngp.com/el/-1508522314782209536/6549173865403648512
93 | https://act.myngp.com/el/-1508522314782209536/6549173865403648512
94 | https://act.myngp.com/el/-1508522314782209536/6621231459441576448
95 | https://act.myngp.com/el/-1508522314782209536/6693289053479504384
96 | https://act.myngp.com/el/-1508522314782209536/6693289053479504384?express_lane=true&amount=10&refcode=express_lane_10
97 | https://act.myngp.com/el/-1508522314782209536/6693289053479504384?express_lane=true&amount=20&refcode=express_lane_20
98 | https://act.myngp.com/el/-1508522314782209536/6693289053479504384?refcode=express_lane_other
99 | https://act.myngp.com/el/1620642680711678464/-2179931410882098688?refcode=em022517&amount=27.00&recurring=12
100 | https://act.myngp.com/el/1620642680711678464/-2179931410882098688?refcode=em022517&amount=27.00&recurring=12
101 | https://act.myngp.com/el/1620642680711678464/-2251989004920026624
102 | https://act.myngp.com/el/1620642680711678464/-3549025697602729472
103 | https://act.myngp.com/el/166837620140673536/129007823075412480
104 | https://act.myngp.com/el/166837620140673536/1426044515758115328
105 | https://act.myngp.com/el/166837620140673536/1498102109796043264?refcode=em022517&amount=27.00&recurring=12
106 | https://act.myngp.com/el/166837620140673536/1570159703833971200
107 | https://act.myngp.com/el/-1747309860646024704/-5033804000728184320?express_lane=true&amount=10&refcode=express_lane_10
108 | https://act.myngp.com/el/-1747309860646024704/-5033804000728184320?express_lane=true&amount=100&refcode=express_lane_100
109 | https://act.myngp.com/el/-1747309860646024704/-5033804000728184320?refcode=em_5242017
110 | https://act.myngp.com/el/-1747309860646024704/-5033804000728184320?refcode=express_lane_other
111 | https://act.myngp.com/el/-1747309860646024704/-5105861594766112256
112 | https://act.myngp.com/el/-1747309860646024704/-5105861594766112256
113 | https://act.myngp.com/el/-1747309860646024704/-6402898287448815104
114 | https://act.myngp.com/el/-1756595103622886656/-3165388357175997696
115 | https://act.myngp.com/el/-1756595103622886656/-3237445951213925632
116 | https://act.myngp.com/el/-1756595103622886656/-3237445951213925632
117 | https://act.myngp.com/el/-1756595103622886656/-4534482643896628480
118 | https://act.myngp.com/el/1763961830958959104/-1182663369372988928?express_lane=true&amount=15&refcode=express_lane_15
119 | https://act.myngp.com/el/1763961830958959104/-1182663369372988928?express_lane=true&amount=35&refcode=express_lane_35
120 | https://act.myngp.com/el/1763961830958959104/-1182663369372988928?refcode=061517
121 | https://act.myngp.com/el/1763961830958959104/-1182663369372988928?refcode=express_lane_other
122 | https://act.myngp.com/el/1763961830958959104/-1254720963410916864
123 | https://act.myngp.com/el/1763961830958959104/-1326778557448844800
124 | https://act.myngp.com/el/1763961830958959104/-1326778557448844800
125 | https://act.myngp.com/el/1763961830958959104/-2623815250131547648
126 | https://act.myngp.com/el/1775092204346804736/1963385743856896512
127 | https://act.myngp.com/el/1775092204346804736/1963385743856896512
128 | https://act.myngp.com/el/1775092204346804736/2035443337894824448
129 | https://act.myngp.com/el/1775092204346804736/2107500931932752384?refcode=em09192017&amount=10.00
130 | https://act.myngp.com/el/1775092204346804736/666349051174193664
131 | https://act.myngp.com/el/1778726077391702528/-6271449473324938752?utm_campaign=em17_170628_jueoq3_fnd_gq_ful__th&utm_medium=email&utm_source=helmer&refcode=em17_170628_jueoq3_fnd_gq_ful__th
132 | https://act.myngp.com/el/1778726077391702528/-6271449473324938752?utm_campaign=em17_170628_jueoq3_fnd_gq_ful__th&utm_medium=email&utm_source=helmer&refcode=em17_170628_jueoq3_fnd_gq_ful__th&utm_medium=email&utm_source=helmer&refcode=em17_170621_eoq1_fnd_gq_ful__dh
133 | https://act.myngp.com/el/1778726077391702528/-6343507067362866688
134 | https://act.myngp.com/el/1778726077391702528/-6343507067362866688
135 | https://act.myngp.com/el/1778726077391702528/-7640543760045569536
136 | https://act.myngp.com/el/1870694731791993344/-109116708686919168
137 | https://act.myngp.com/el/1870694731791993344/-109116708686919168?express_lane=true&amount=10&refcode=express_lane_10
138 | https://act.myngp.com/el/1870694731791993344/-109116708686919168?express_lane=true&amount=100&refcode=express_lane_100
139 | https://act.myngp.com/el/1870694731791993344/-109116708686919168?express_lane=true&amount=25&refcode=express_lane_25
140 | https://act.myngp.com/el/1870694731791993344/-1550268589445477888
141 | https://act.myngp.com/el/1870694731791993344/-181174302724847104
142 | https://act.myngp.com/el/1870694731791993344/-253231896762775040
143 | https://act.myngp.com/el/1870694731791993344/-253231896762775040
144 | https://act.myngp.com/el/1907324961671350784/2924057640347109888
145 | https://act.myngp.com/el/1907324961671350784/4221094333029812736
146 | https://act.myngp.com/el/1907324961671350784/4221094333029812736
147 | https://act.myngp.com/el/1907324961671350784/4293151927067740672
148 | https://act.myngp.com/el/-1942874492025435648/-8134531244661143040?utm_campaign=em17_170630_jueoq5_fnd_gq_ful__sr&utm_medium=email&utm_source=helmer&refcode=em17_170630_jueoq5_fnd_gq_ful__sr
149 | https://act.myngp.com/el/-1942874492025435648/-8206588838699070976
150 | https://act.myngp.com/el/-1942874492025435648/-8206588838699070976
151 | https://act.myngp.com/el/-1942874492025435648/8943118542327777792
152 | https://act.myngp.com/el/1943116255588780544/5056792439372122624
153 | https://act.myngp.com/el/1943116255588780544/6353829132054825472
154 | https://act.myngp.com/el/1943116255588780544/6353829132054825472
155 | https://act.myngp.com/el/1943116255588780544/6425886726092753408?express_lane=true&amount=10&refcode=express_lane_10
156 | https://act.myngp.com/el/1943116255588780544/6425886726092753408?express_lane=true&amount=100&refcode=express_lane_100
157 | https://act.myngp.com/el/1943116255588780544/6425886726092753408?refcode=em_5242017
158 | https://act.myngp.com/el/1943116255588780544/6425886726092753408?refcode=express_lane_other
159 | https://act.myngp.com/el/-2014436214909171200/-2723177016422036992
160 | https://act.myngp.com/el/-2014436214909171200/-4020213709104739840
161 | https://act.myngp.com/el/-2014436214909171200/-4092271303142667776?express_lane=true&refcode=header_website
162 | https://act.myngp.com/el/-2014436214909171200/-4164328897180595712?refcode=em032117&amount=25.00&recurring=auto
163 | https://act.myngp.com/el/2024462656577866496/2240901520505572096
164 | https://act.myngp.com/el/2024462656577866496/3537938213188274944
165 | https://act.myngp.com/el/2024462656577866496/3537938213188274944
166 | https://act.myngp.com/el/2024462656577866496/3609995807226202880
167 | https://act.myngp.com/el/2024462656577866496/3682053401264130816
168 | https://act.myngp.com/el/2024462656577866496/3754110995302058752
169 | https://act.myngp.com/el/2024462656577866496/3826168589339986688
170 | https://act.myngp.com/el/2024462656577866496/3898226183377914624
171 | https://act.myngp.com/el/2024462656577866496/3970283777415842560
172 | https://act.myngp.com/el/2094357387114187264/5252137172720945664
173 | https://act.myngp.com/el/2094357387114187264/6549173865403648512
174 | https://act.myngp.com/el/2094357387114187264/6549173865403648512
175 | https://act.myngp.com/el/2094357387114187264/6621231459441576448
176 | https://act.myngp.com/el/2094357387114187264/6693289053479504384
177 | https://act.myngp.com/el/2094357387114187264/6693289053479504384?express_lane=true&amount=10&refcode=express_lane_10
178 | https://act.myngp.com/el/2094357387114187264/6693289053479504384?express_lane=true&amount=20&refcode=express_lane_20
179 | https://act.myngp.com/el/2094357387114187264/6693289053479504384?refcode=express_lane_other
180 | https://act.myngp.com/el/-2123471488795801088/3311363909766089216
181 | https://act.myngp.com/el/-2123471488795801088/4608400602448792064
182 | https://act.myngp.com/el/-2123471488795801088/4680458196486720000?refcode=em032117&amount=25.00&recurring=auto
183 | https://act.myngp.com/el/-2173734422038312192/2603159815532186368
184 | https://act.myngp.com/el/-2173734422038312192/3900196508214889216
185 | https://act.myngp.com/el/-2173734422038312192/3900196508214889216
186 | https://act.myngp.com/el/-2173734422038312192/3972254102252817152
187 | https://act.myngp.com/el/-2173734422038312192/4044311696290745088
188 | https://act.myngp.com/el/-2173734422038312192/4116369290328673024
189 | https://act.myngp.com/el/-2173734422038312192/4188426884366600960
190 | https://act.myngp.com/el/-2173734422038312192/4260484478404528896
191 | https://act.myngp.com/el/-2173734422038312192/4332542072442456832
192 | https://act.myngp.com/el/-2207855690512856576/-1691006077800805888
193 | https://act.myngp.com/el/-2207855690512856576/-2051294047990445568
194 | https://act.myngp.com/el/-2207855690512856576/-2051294047990445568?express_lane=true&amount=10&refcode=express_lane_10
195 | https://act.myngp.com/el/-2207855690512856576/-2051294047990445568?express_lane=true&amount=100&refcode=express_lane_100
196 | https://act.myngp.com/el/-2207855690512856576/-2051294047990445568?express_lane=true&amount=25&refcode=express_lane_25
197 | https://act.myngp.com/el/-2207855690512856576/-2051294047990445568?refcode=express_lane_other
198 | https://act.myngp.com/el/-2207855690512856576/-2123351642028373504
199 | https://act.myngp.com/el/-2207855690512856576/-2195409236066301440
200 | https://act.myngp.com/el/-2207855690512856576/-2195409236066301440
201 | https://act.myngp.com/el/-2207855690512856576/-3492445928749004288
202 | https://act.myngp.com/el/226207949505694208/8411690487763175936
203 | https://act.myngp.com/el/226207949505694208/-8665959299225744896?refcode=em022317&amount=27.00&recurring=12
204 | https://act.myngp.com/el/226207949505694208/-8738016893263672832
205 | https://act.myngp.com/el/-2421259919527769600/-5621807426100000256
206 | https://act.myngp.com/el/-2421259919527769600/-6918844118782703104
207 | https://act.myngp.com/el/-2421259919527769600/-6990901712820631040
208 | https://act.myngp.com/el/-2421259919527769600/-7062959306858558976?refcode=em032117&amount=25.00&recurring=auto
209 | https://act.myngp.com/el/-2514111464585295360/2146341180183939584
210 | https://act.myngp.com/el/-2514111464585295360/2146341180183939584
211 | https://act.myngp.com/el/-2514111464585295360/2218398774221867520
212 | https://act.myngp.com/el/-2514111464585295360/849304487501236736
213 | https://act.myngp.com/el/2520323580582431232/3562442887526877696
214 | https://act.myngp.com/el/2520323580582431232/4859479580209580544
215 | https://act.myngp.com/el/2520323580582431232/4859479580209580544
216 | https://act.myngp.com/el/2520323580582431232/4931537174247508480?utm_campaign=em17_170715_enviro_adv_gq_ful__DH&utm_medium=email&utm_source=Helmer&refcode=em17_170715_enviro_adv_gq_ful__DH
217 | https://act.myngp.com/el/2523721080102193664/-5245189509214631424
218 | https://act.myngp.com/el/2523721080102193664/-5317247103252559360
219 | https://act.myngp.com/el/2523721080102193664/-5317247103252559360
220 | https://act.myngp.com/el/2523721080102193664/-6614283795935262208
221 | https://act.myngp.com/el/2533820081518414336/-1754057572095620608?refcode=baby
222 | https://act.myngp.com/el/2533820081518414336/-1826115166133548544
223 | https://act.myngp.com/el/2533820081518414336/-1898172760171476480
224 | https://act.myngp.com/el/2533820081518414336/-1898172760171476480
225 | https://act.myngp.com/el/2533820081518414336/-3195209452854179328
226 | https://act.myngp.com/el/-2665981379747116288/6655555055235500800
227 | https://act.myngp.com/el/-2665981379747116288/7952591747918203648
228 | https://act.myngp.com/el/-2665981379747116288/7952591747918203648
229 | https://act.myngp.com/el/-2665981379747116288/8024649341956131584?refcode=X_073017_Fundraising_A_EOM&amount=25.00&recurring=auto
230 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=10&refcode=express_lane_em033017_10
231 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=100&refcode=express_lane_em033017_100
232 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=25&refcode=express_lane_em033017_25
233 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=250&refcode=express_lane_em033017_250
234 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=5&refcode=express_lane_em033017_5
235 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?express_lane=true&amount=50&refcode=express_lane_em033017_50
236 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?refcode=em032917&amount=25.00&recurring=auto
237 | https://act.myngp.com/el/-2767147581633459712/-3380702562018129408?refcode=express_lane_em033017_other
238 | https://act.myngp.com/el/-2767147581633459712/-3452760156056057344?refcode=em032117&amount=25.00&recurring=auto
239 | https://act.myngp.com/el/-2767147581633459712/-3524817750093985280
240 | https://act.myngp.com/el/-2767147581633459712/-4821854442776688128
241 | https://act.myngp.com/el/-285335432975611392/-2723177016422036992
242 | https://act.myngp.com/el/-285335432975611392/-4020213709104739840
243 | https://act.myngp.com/el/-285335432975611392/-4092271303142667776?express_lane=true&refcode=header_website
244 | https://act.myngp.com/el/-285335432975611392/-4164328897180595712?refcode=em032117&amount=25.00&recurring=auto
245 | https://act.myngp.com/el/-2900555712593131008/-1905208535077615104
246 | https://act.myngp.com/el/-2900555712593131008/-464056654319056384
247 | https://act.myngp.com/el/-2900555712593131008/-464056654319056384?amount=10.00
248 | https://act.myngp.com/el/-2900555712593131008/-536114248356984320
249 | https://act.myngp.com/el/-2900555712593131008/-608171842394912256
250 | https://act.myngp.com/el/-2900555712593131008/-608171842394912256
251 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?express_lane=true&amount=10&refcode=express_lane_10
252 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?express_lane=true&amount=100&refcode=express_lane_100
253 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?express_lane=true&amount=25&refcode=express_lane_27
254 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?express_lane=true&amount=250&refcode=express_lane_250
255 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?express_lane=true&amount=50&refcode=express_lane_50
256 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?refcode=em042917&amount=10.00
257 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?refcode=em043017&amount=10.00
258 | https://act.myngp.com/el/2910633707178560000/1120645265538681344?refcode=express_lane_other
259 | https://act.myngp.com/el/2910633707178560000/3642661056866159104
260 | https://act.myngp.com/el/2910633707178560000/4939697749548861952
261 | https://act.myngp.com/el/2910633707178560000/4939697749548861952
262 | https://act.myngp.com/el/3012614510166411776/-6209807552936932864
263 | https://act.myngp.com/el/3012614510166411776/-6281865146974860800
264 | https://act.myngp.com/el/3012614510166411776/-6353922741012788736
265 | https://act.myngp.com/el/3012614510166411776/-6353922741012788736
266 | https://act.myngp.com/el/3012614510166411776/-7650959433695491584
267 | https://act.myngp.com/el/-3041813278538331648/-5033804000728184320?express_lane=true&amount=10&refcode=express_lane_10
268 | https://act.myngp.com/el/-3041813278538331648/-5033804000728184320?express_lane=true&amount=100&refcode=express_lane_100
269 | https://act.myngp.com/el/-3041813278538331648/-5033804000728184320?refcode=em_5242017
270 | https://act.myngp.com/el/-3041813278538331648/-5033804000728184320?refcode=express_lane_other
271 | https://act.myngp.com/el/-3041813278538331648/-5105861594766112256
272 | https://act.myngp.com/el/-3041813278538331648/-5105861594766112256
273 | https://act.myngp.com/el/-3041813278538331648/-6402898287448815104
274 | https://act.myngp.com/el/-3172257147624355328/-2888122452286109184
275 | https://act.myngp.com/el/-3172257147624355328/-2960180046324037120
276 | https://act.myngp.com/el/-3172257147624355328/-4257216739006739968
277 | https://act.myngp.com/el/3176347180410079744/6898481012966689280
278 | https://act.myngp.com/el/3176347180410079744/8195517705649392128
279 | https://act.myngp.com/el/3176347180410079744/8267575299687320064?refcode=em022317&amount=27.00&recurring=12
280 | https://act.myngp.com/el/-3187465575279883776/6200427468770773504
281 | https://act.myngp.com/el/-3187465575279883776/7497464161453476352
282 | https://act.myngp.com/el/-3187465575279883776/7497464161453476352
283 | https://act.myngp.com/el/-3187465575279883776/7569521755491404288
284 | https://act.myngp.com/el/-3187465575279883776/7641579349529332224
285 | https://act.myngp.com/el/3198499045469850112/1316270374352587264
286 | https://act.myngp.com/el/3198499045469850112/2613307067035290112
287 | https://act.myngp.com/el/3198499045469850112/2613307067035290112
288 | https://act.myngp.com/el/3198499045469850112/2685364661073218048?refcode=em4112017
289 | https://act.myngp.com/el/-3300984666174518784/-3930423191534040576
290 | https://act.myngp.com/el/-3300984666174518784/-3930423191534040576
291 | https://act.myngp.com/el/-3300984666174518784/-5227459884216743424
292 | https://act.myngp.com/el/-3300984666174518784/-5659805448444311040
293 | https://act.myngp.com/el/-3343360935230699008/7742627766656829952
294 | https://act.myngp.com/el/-3343360935230699008/9039664459339532800
295 | https://act.myngp.com/el/-3343360935230699008/9039664459339532800
296 | https://act.myngp.com/el/-3343360935230699008/9111722053377460736
297 | https://act.myngp.com/el/-3343360935230699008/9183779647415388672?express_lane=true&amount=10&refcode=express_lane_10
298 | https://act.myngp.com/el/-3343360935230699008/9183779647415388672?express_lane=true&amount=100&refcode=express_lane_100
299 | https://act.myngp.com/el/-3343360935230699008/9183779647415388672?express_lane=true&amount=25&refcode=express_lane_25
300 | https://act.myngp.com/el/3367892018753178112/-1905208535077615104
301 | https://act.myngp.com/el/3367892018753178112/-464056654319056384
302 | https://act.myngp.com/el/3367892018753178112/-464056654319056384?amount=10.00
303 | https://act.myngp.com/el/3367892018753178112/-536114248356984320
304 | https://act.myngp.com/el/3367892018753178112/-608171842394912256
305 | https://act.myngp.com/el/3367892018753178112/-608171842394912256
306 | https://act.myngp.com/el/-3420547751012201984/-6248367425723037184?refcode=thermometer
307 | https://act.myngp.com/el/-3420547751012201984/-6320425019760965120
308 | https://act.myngp.com/el/-3420547751012201984/-6392482613798893056
309 | https://act.myngp.com/el/-3420547751012201984/-6392482613798893056
310 | https://act.myngp.com/el/-3420547751012201984/-7689519306481595904
311 | https://act.myngp.com/el/3474658995856738816/-591846293745694208
312 | https://act.myngp.com/el/3474658995856738816/705471873913719296
313 | https://act.myngp.com/el/3474658995856738816/705471873913719296
314 | https://act.myngp.com/el/3474658995856738816/777529467951647232
315 | https://act.myngp.com/el/3474658995856738816/849587061989575168?utm_campaign=em17_170729_eom1_fnd_gq_ful__DH&utm_medium=email&utm_source=Helmer&refcode=em17_170729_eom1_fnd_gq_ful__DH
316 | https://act.myngp.com/el/3474658995856738816/921644656027503104?utm_campaign=em17_170729_eom1_fnd_gq_ful__DH&utm_medium=email&utm_source=Helmer&refcode=em17_170729_eom1_fnd_gq_ful__DH
317 | https://act.myngp.com/el/-3498762939783903232/-4629710743164352512
318 | https://act.myngp.com/el/-3498762939783903232/-4701768337202280448
319 | https://act.myngp.com/el/-3498762939783903232/-4773825931240208384
320 | https://act.myngp.com/el/-3498762939783903232/-4845883525278136320
321 | https://act.myngp.com/el/-3498762939783903232/-4917941119316064256
322 | https://act.myngp.com/el/-3498762939783903232/-4989998713353992192
323 | https://act.myngp.com/el/-3498762939783903232/-4989998713353992192
324 | https://act.myngp.com/el/-3498762939783903232/-6287035406036695040
325 | https://act.myngp.com/el/-3541765605144655360/5803265177120410112
326 | https://act.myngp.com/el/-3541765605144655360/7100301869803112960
327 | https://act.myngp.com/el/-3541765605144655360/7100301869803112960
328 | https://act.myngp.com/el/-3541765605144655360/7172359463841040896
329 | https://act.myngp.com/el/-3541765605144655360/7244417057878968832?utm_campaign=em17_170719_Survey_engg_gq_cust__DH&utm_medium=email&utm_source=Helmer&ms=em17_170719_Survey_engg_gq_cust__DH&refcode=em17_170719_Survey_engg_gq_cust__DH&fn=Joshua&ln=Lospinoso&pc=&em=josh@lospi.net
330 | https://act.myngp.com/el/3595548100307454464/-2367670822301595136
331 | https://act.myngp.com/el/3595548100307454464/-2439728416339523072
332 | https://act.myngp.com/el/3595548100307454464/-2511786010377451008
333 | https://act.myngp.com/el/3595548100307454464/-2511786010377451008
334 | https://act.myngp.com/el/3595548100307454464/-3808822703060153856
335 | https://act.myngp.com/el/3808035323739900416/1208468756807289344
336 | https://act.myngp.com/el/3808035323739900416/2505505449489992192
337 | https://act.myngp.com/el/3808035323739900416/2505505449489992192
338 | https://act.myngp.com/el/3808035323739900416/2577563043527920128
339 | https://act.myngp.com/el/3932383474591730176/-1330438831657711104
340 | https://act.myngp.com/el/3932383474591730176/-1330438831657711104
341 | https://act.myngp.com/el/3932383474591730176/-2627475524340413952
342 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?express_lane=true&amount=10&refcode=express_lane_10
343 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?express_lane=true&amount=100&refcode=express_lane_100
344 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?express_lane=true&amount=25&refcode=express_lane_27
345 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?express_lane=true&amount=250&refcode=express_lane_250
346 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?express_lane=true&amount=50&refcode=express_lane_50
347 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?refcode=em042917&amount=10.00
348 | https://act.myngp.com/el/3932383474591730176/-8031795077185009152?refcode=express_lane_other
349 | https://act.myngp.com/el/-394731342381184512/-1330438831657711104
350 | https://act.myngp.com/el/-394731342381184512/-1330438831657711104
351 | https://act.myngp.com/el/-394731342381184512/-2627475524340413952
352 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?express_lane=true&amount=10&refcode=express_lane_10
353 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?express_lane=true&amount=100&refcode=express_lane_100
354 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?express_lane=true&amount=25&refcode=express_lane_27
355 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?express_lane=true&amount=250&refcode=express_lane_250
356 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?express_lane=true&amount=50&refcode=express_lane_50
357 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?refcode=em042917&amount=10.00
358 | https://act.myngp.com/el/-394731342381184512/-8031795077185009152?refcode=express_lane_other
359 | https://act.myngp.com/el/4042134526253074944/8103195012799924736
360 | https://act.myngp.com/el/4042134526253074944/-8974454774188996096
361 | https://act.myngp.com/el/4042134526253074944/-9046512368226924032
362 | https://act.myngp.com/el/4042134526253074944/-9046512368226924032
363 | https://act.myngp.com/el/-405536585650468864/6730051968877791232
364 | https://act.myngp.com/el/-405536585650468864/8027088661560494080
365 | https://act.myngp.com/el/-405536585650468864/8027088661560494080
366 | https://act.myngp.com/el/-405536585650468864/8099146255598422016
367 | https://act.myngp.com/el/-405536585650468864/8171203849636349952
368 | https://act.myngp.com/el/415414126616513024/6200427468770773504
369 | https://act.myngp.com/el/415414126616513024/7497464161453476352
370 | https://act.myngp.com/el/415414126616513024/7497464161453476352
371 | https://act.myngp.com/el/415414126616513024/7569521755491404288
372 | https://act.myngp.com/el/415414126616513024/7641579349529332224
373 | https://act.myngp.com/el/-418172930285368832/-6466231256720340480?refcode=em4112017
374 | https://act.myngp.com/el/-418172930285368832/-6538288850758268416
375 | https://act.myngp.com/el/-418172930285368832/-6538288850758268416
376 | https://act.myngp.com/el/-418172930285368832/-7835325543440971264
377 | https://act.myngp.com/el/4262117124747037184/2146341180183939584
378 | https://act.myngp.com/el/4262117124747037184/2146341180183939584
379 | https://act.myngp.com/el/4262117124747037184/2218398774221867520
380 | https://act.myngp.com/el/4262117124747037184/849304487501236736
381 | https://act.myngp.com/el/431838622722296320/-8428110744881985024?refcode=em_5242017
382 | https://act.myngp.com/el/431838622722296320/-8500168338919912960
383 | https://act.myngp.com/el/431838622722296320/-8500168338919912960
384 | https://act.myngp.com/el/431838622722296320/8649539042106935808
385 | https://act.myngp.com/el/4328953146654591488/-609296642790127104
386 | https://act.myngp.com/el/4328953146654591488/688021524869286400
387 | https://act.myngp.com/el/4328953146654591488/688021524869286400
388 | https://act.myngp.com/el/4328953146654591488/760079118907214336
389 | https://act.myngp.com/el/4328953146654591488/832136712945142272?refcode=0828
390 | https://act.myngp.com/el/-4339518469995755008/5432844107769186816
391 | https://act.myngp.com/el/-4339518469995755008/6729880800451889664
392 | https://act.myngp.com/el/-4339518469995755008/6729880800451889664
393 | https://act.myngp.com/el/-4339518469995755008/6801938394489817600
394 | https://act.myngp.com/el/-4339518469995755008/6873995988527745536?express_lane=true&amount=10&refcode=express_lane_10
395 | https://act.myngp.com/el/-4339518469995755008/6873995988527745536?express_lane=true&amount=100&refcode=express_lane_100
396 | https://act.myngp.com/el/-4339518469995755008/6873995988527745536?express_lane=true&amount=25&refcode=express_lane_25
397 | https://act.myngp.com/el/-4339518469995755008/6873995988527745536?refcode=IHaveAbdulsBack
398 | https://act.myngp.com/el/4471348685659703808/-630690940043392512
399 | https://act.myngp.com/el/4471348685659703808/666627227616020992
400 | https://act.myngp.com/el/4471348685659703808/666627227616020992
401 | https://act.myngp.com/el/4471348685659703808/738684821653948928?refcode=em_5242017
402 | https://act.myngp.com/el/4471348685659703808/810742415691876864
403 | https://act.myngp.com/el/448632220821817344/-5863700339598751744
404 | https://act.myngp.com/el/448632220821817344/-5935757933636679680
405 | https://act.myngp.com/el/448632220821817344/-6007815527674607616
406 | https://act.myngp.com/el/448632220821817344/-6079873121712535552
407 | https://act.myngp.com/el/448632220821817344/-6151930715750463488
408 | https://act.myngp.com/el/448632220821817344/-6223988309788391424
409 | https://act.myngp.com/el/448632220821817344/-6223988309788391424
410 | https://act.myngp.com/el/448632220821817344/-7521025002471094272
411 | https://act.myngp.com/el/-4491454475690046976/2687056809468365312
412 | https://act.myngp.com/el/-4491454475690046976/3984093502151068160
413 | https://act.myngp.com/el/-4491454475690046976/3984093502151068160
414 | https://act.myngp.com/el/-4491454475690046976/4056151096188996096
415 | https://act.myngp.com/el/-4491454475690046976/4128208690226924032
416 | https://act.myngp.com/el/4497799645479045632/-4127172001231533568?utm_campaign=em17_170727_Ban_engg_gq_cust__DH&utm_medium=email&utm_source=Helmer&ms=em17_170727_Ban_engg_gq_cust__DH&refcode=em17_170727_Ban_engg_gq_cust__DH
417 | https://act.myngp.com/el/4497799645479045632/-4199229595269461504
418 | https://act.myngp.com/el/4497799645479045632/-4271287189307389440
419 | https://act.myngp.com/el/4497799645479045632/-4271287189307389440
420 | https://act.myngp.com/el/4497799645479045632/-5568323881990092288
421 | https://act.myngp.com/el/4514583681887111680/-1449784221783029248
422 | https://act.myngp.com/el/4514583681887111680/-1521841815820957184
423 | https://act.myngp.com/el/4514583681887111680/-1593899409858885120
424 | https://act.myngp.com/el/4514583681887111680/-1593899409858885120
425 | https://act.myngp.com/el/4514583681887111680/-2890936102541587968
426 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?express_lane=true&amount=10&refcode=express_lane_10
427 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?express_lane=true&amount=20&refcode=express_lane_20
428 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?express_lane=true&amount=250&refcode=express_lane_250
429 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?express_lane=true&amount=50&refcode=express_lane_50
430 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?refcode=em090617
431 | https://act.myngp.com/el/-4621821370372191744/-5916788803646256640?refcode=express_lane_other
432 | https://act.myngp.com/el/-4621821370372191744/-5988846397684184576
433 | https://act.myngp.com/el/-4621821370372191744/-6060903991722112512
434 | https://act.myngp.com/el/-4621821370372191744/-6060903991722112512
435 | https://act.myngp.com/el/-4621821370372191744/-7357940684404815360
436 | https://act.myngp.com/el/-4649499389463098880/-7534990643779073536?refcode=em060817&amount=15.00
437 | https://act.myngp.com/el/-4649499389463098880/-7607048237817001472
438 | https://act.myngp.com/el/-4649499389463098880/-7679105831854929408
439 | https://act.myngp.com/el/-4649499389463098880/-7679105831854929408
440 | https://act.myngp.com/el/-4649499389463098880/-8976142524537632256
441 | https://act.myngp.com/el/4682020602509789696/-2888122452286109184
442 | https://act.myngp.com/el/4682020602509789696/-2960180046324037120
443 | https://act.myngp.com/el/4682020602509789696/-4257216739006739968
444 | https://act.myngp.com/el/-4685094978900719104/-8428110744881985024?refcode=em_5242017
445 | https://act.myngp.com/el/-4685094978900719104/-8500168338919912960
446 | https://act.myngp.com/el/-4685094978900719104/-8500168338919912960
447 | https://act.myngp.com/el/-4685094978900719104/8649539042106935808
448 | https://act.myngp.com/el/-478390974525470208/-7346119834894595584?utm_campaign=em17_170629_jueoq4_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170629_jueoq4_fnd_gq_ful__dh
449 | https://act.myngp.com/el/-478390974525470208/-7418177428932523520
450 | https://act.myngp.com/el/-478390974525470208/-7418177428932523520
451 | https://act.myngp.com/el/-478390974525470208/-8715214121615226368
452 | https://act.myngp.com/el/4837643279281949184/-4912490484789147136?refcode=em030717&amount=27.00&recurring=12
453 | https://act.myngp.com/el/4837643279281949184/-4984548078827075072
454 | https://act.myngp.com/el/4837643279281949184/-6281584771509777920
455 | https://act.myngp.com/el/4891410497391823360/-5416049218124510720
456 | https://act.myngp.com/el/4891410497391823360/-5488106812162438656?refcode=em030817&amount=25.00&recurring=12
457 | https://act.myngp.com/el/4891410497391823360/-5560164406200366592
458 | https://act.myngp.com/el/4891410497391823360/-6857201098883069440
459 | https://act.myngp.com/el/495741134722042368/4045451748539107840
460 | https://act.myngp.com/el/495741134722042368/5342488441221810688
461 | https://act.myngp.com/el/495741134722042368/5414546035259738624?refcode=em032117&amount=25.00&recurring=auto
462 | https://act.myngp.com/el/495741134722042368/5486603629297666560?refcode=em033117_2&amount=25.00&recurring=auto
463 | https://act.myngp.com/el/5009231985875880448/-1840749665899247104
464 | https://act.myngp.com/el/5009231985875880448/-399597785140688384?refcode=Guardian2
465 | https://act.myngp.com/el/5009231985875880448/-471655379178616320
466 | https://act.myngp.com/el/5009231985875880448/-543712973216544256
467 | https://act.myngp.com/el/5009231985875880448/-543712973216544256
468 | https://act.myngp.com/el/5038778049452575232/5056792439372122624
469 | https://act.myngp.com/el/5038778049452575232/6353829132054825472
470 | https://act.myngp.com/el/5038778049452575232/6353829132054825472
471 | https://act.myngp.com/el/5038778049452575232/6425886726092753408?express_lane=true&amount=10&refcode=express_lane_10
472 | https://act.myngp.com/el/5038778049452575232/6425886726092753408?express_lane=true&amount=100&refcode=express_lane_100
473 | https://act.myngp.com/el/5038778049452575232/6425886726092753408?refcode=em_5242017
474 | https://act.myngp.com/el/5038778049452575232/6425886726092753408?refcode=express_lane_other
475 | https://act.myngp.com/el/-5057842610561349120/5432844107769186816
476 | https://act.myngp.com/el/-5057842610561349120/6729880800451889664
477 | https://act.myngp.com/el/-5057842610561349120/6729880800451889664
478 | https://act.myngp.com/el/-5057842610561349120/6801938394489817600
479 | https://act.myngp.com/el/-5057842610561349120/6873995988527745536?express_lane=true&amount=10&refcode=express_lane_10
480 | https://act.myngp.com/el/-5057842610561349120/6873995988527745536?express_lane=true&amount=100&refcode=express_lane_100
481 | https://act.myngp.com/el/-5057842610561349120/6873995988527745536?express_lane=true&amount=25&refcode=express_lane_25
482 | https://act.myngp.com/el/-5057842610561349120/6873995988527745536?refcode=IHaveAbdulsBack
483 | https://act.myngp.com/el/-5089324922704492032/6378037079563569664
484 | https://act.myngp.com/el/-5089324922704492032/7675073772246272512
485 | https://act.myngp.com/el/-5089324922704492032/7675073772246272512
486 | https://act.myngp.com/el/-5089324922704492032/7747131366284200448
487 | https://act.myngp.com/el/-5089324922704492032/7819188960322128384
488 | https://act.myngp.com/el/-5089324922704492032/7819188960322128384?express_lane=true&amount=10&refcode=express_lane_10
489 | https://act.myngp.com/el/-5089324922704492032/7819188960322128384?express_lane=true&amount=100&refcode=express_lane_100
490 | https://act.myngp.com/el/-5089324922704492032/7819188960322128384?express_lane=true&amount=25&refcode=express_lane_25
491 | https://act.myngp.com/el/-5089324922704492032/7819188960322128384?refcode=express_lane_other
492 | https://act.myngp.com/el/-5089324922704492032/8179476930511768064
493 | https://act.myngp.com/el/-5175410098974488064/-1069511528246932992
494 | https://act.myngp.com/el/-5175410098974488064/-1141569122284860928
495 | https://act.myngp.com/el/-5175410098974488064/-1213626716322788864
496 | https://act.myngp.com/el/-5175410098974488064/-1213626716322788864
497 | https://act.myngp.com/el/-5175410098974488064/-2510663409005491712
498 | https://act.myngp.com/el/5226337145260083712/376146151162251776
499 | https://act.myngp.com/el/5226337145260083712/376146151162251776
500 | https://act.myngp.com/el/5226337145260083712/448203745200179712
501 | https://act.myngp.com/el/5226337145260083712/-921172016497161728
502 | https://act.myngp.com/el/-5234685866044552704/-7534990643779073536?refcode=em060817&amount=15.00
503 | https://act.myngp.com/el/-5234685866044552704/-7607048237817001472
504 | https://act.myngp.com/el/-5234685866044552704/-7679105831854929408
505 | https://act.myngp.com/el/-5234685866044552704/-7679105831854929408
506 | https://act.myngp.com/el/-5234685866044552704/-8976142524537632256
507 | https://act.myngp.com/el/-530292325697975808/-1449784221783029248
508 | https://act.myngp.com/el/-530292325697975808/-1521841815820957184
509 | https://act.myngp.com/el/-530292325697975808/-1593899409858885120
510 | https://act.myngp.com/el/-530292325697975808/-1593899409858885120
511 | https://act.myngp.com/el/-530292325697975808/-2890936102541587968
512 | https://act.myngp.com/el/-5605083849946560000/-1035453056064943616
513 | https://act.myngp.com/el/-5605083849946560000/-1035453056064943616
514 | https://act.myngp.com/el/-5605083849946560000/-2332489748747646464
515 | https://act.myngp.com/el/5622939785491909120/-1641466481899730432
516 | https://act.myngp.com/el/5622939785491909120/-200314601141171712?express_lane=true&amount=100&refcode=070517
517 | https://act.myngp.com/el/5622939785491909120/-200314601141171712?express_lane=true&amount=15&refcode=070517
518 | https://act.myngp.com/el/5622939785491909120/-200314601141171712?express_lane=true&amount=35&refcode=070517
519 | https://act.myngp.com/el/5622939785491909120/-200314601141171712?refcode=070517
520 | https://act.myngp.com/el/5622939785491909120/-200314601141171712?refcode=fightback
521 | https://act.myngp.com/el/5622939785491909120/-272372195179099648
522 | https://act.myngp.com/el/5622939785491909120/-344429789217027584
523 | https://act.myngp.com/el/5622939785491909120/-344429789217027584
524 | https://act.myngp.com/el/5626803465056946688/-630690940043392512
525 | https://act.myngp.com/el/5626803465056946688/666627227616020992
526 | https://act.myngp.com/el/5626803465056946688/666627227616020992
527 | https://act.myngp.com/el/5626803465056946688/738684821653948928?refcode=em_5242017
528 | https://act.myngp.com/el/5626803465056946688/810742415691876864
529 | https://act.myngp.com/el/-5805806277486966272/3143890696669760000
530 | https://act.myngp.com/el/-5805806277486966272/4440927389352462848
531 | https://act.myngp.com/el/-5805806277486966272/4440927389352462848
532 | https://act.myngp.com/el/-5805806277486966272/4512984983390390784
533 | https://act.myngp.com/el/-5805806277486966272/4585042577428318720
534 | https://act.myngp.com/el/-5805806277486966272/4657100171466246656?df_id=9314&9314.donation=form1&mfc_pref=T&s_src=HB&s_subsrc=harvey&src=lb&NONCE_TOKEN=266B5A007879F70E85F6707325A1933F
535 | https://act.myngp.com/el/-5805806277486966272/4729157765504174592
536 | https://act.myngp.com/el/-5846348586917819904/-2197381759926531584
537 | https://act.myngp.com/el/-5846348586917819904/-2269439353964459520?refcode=em042717
538 | https://act.myngp.com/el/-5846348586917819904/-2341496948002387456
539 | https://act.myngp.com/el/-5846348586917819904/-900345067243828736
540 | https://act.myngp.com/el/-5846348586917819904/-900345067243828736
541 | https://act.myngp.com/el/-5867210720543241728/4424035592214940160?refcode=em42017&amount=10.00
542 | https://act.myngp.com/el/-5867210720543241728/4568150780290796032
543 | https://act.myngp.com/el/-5867210720543241728/5865187472973498880
544 | https://act.myngp.com/el/-5867210720543241728/5865187472973498880
545 | https://act.myngp.com/el/-5881186604253967872/-1418256825368180224
546 | https://act.myngp.com/el/-5881186604253967872/-1490314419406108160
547 | https://act.myngp.com/el/-5881186604253967872/-1562372013444036096
548 | https://act.myngp.com/el/-5881186604253967872/-1562372013444036096
549 | https://act.myngp.com/el/-5881186604253967872/-2859408706126738944
550 | https://act.myngp.com/el/6197148737981647360/-1641466481899730432
551 | https://act.myngp.com/el/6197148737981647360/-200314601141171712?express_lane=true&amount=100&refcode=070517
552 | https://act.myngp.com/el/6197148737981647360/-200314601141171712?express_lane=true&amount=15&refcode=070517
553 | https://act.myngp.com/el/6197148737981647360/-200314601141171712?express_lane=true&amount=35&refcode=070517
554 | https://act.myngp.com/el/6197148737981647360/-200314601141171712?refcode=070517
555 | https://act.myngp.com/el/6197148737981647360/-200314601141171712?refcode=fightback
556 | https://act.myngp.com/el/6197148737981647360/-272372195179099648
557 | https://act.myngp.com/el/6197148737981647360/-344429789217027584
558 | https://act.myngp.com/el/6197148737981647360/-344429789217027584
559 | https://act.myngp.com/el/-6198463878588265984/-6472984457138140672?refcode=fightback
560 | https://act.myngp.com/el/-6198463878588265984/-6545042051176068608
561 | https://act.myngp.com/el/-6198463878588265984/-6617099645213996544
562 | https://act.myngp.com/el/-6198463878588265984/-6617099645213996544
563 | https://act.myngp.com/el/-6198463878588265984/-7914136337896699392
564 | https://act.myngp.com/el/6219904226335132160/4060652496793111040
565 | https://act.myngp.com/el/6219904226335132160/5357689189475813888
566 | https://act.myngp.com/el/6219904226335132160/5357689189475813888
567 | https://act.myngp.com/el/6219904226335132160/5429746783513741824
568 | https://act.myngp.com/el/6219904226335132160/5501804377551669760?refcode=em_060617&amount=15.00
569 | https://act.myngp.com/el/-6277776041756325376/1208468756807289344
570 | https://act.myngp.com/el/-6277776041756325376/2505505449489992192
571 | https://act.myngp.com/el/-6277776041756325376/2505505449489992192
572 | https://act.myngp.com/el/-6277776041756325376/2577563043527920128
573 | https://act.myngp.com/el/-6309927960775751168/3143890696669760000
574 | https://act.myngp.com/el/-6309927960775751168/4440927389352462848
575 | https://act.myngp.com/el/-6309927960775751168/4440927389352462848
576 | https://act.myngp.com/el/-6309927960775751168/4512984983390390784
577 | https://act.myngp.com/el/-6309927960775751168/4585042577428318720
578 | https://act.myngp.com/el/-6309927960775751168/4657100171466246656?df_id=9314&9314.donation=form1&mfc_pref=T&s_src=HB&s_subsrc=harvey&src=lb&NONCE_TOKEN=266B5A007879F70E85F6707325A1933F
579 | https://act.myngp.com/el/-6309927960775751168/4729157765504174592
580 | https://act.myngp.com/el/6332352401494247936/1927919896791353856
581 | https://act.myngp.com/el/6332352401494247936/3224956589474056704
582 | https://act.myngp.com/el/6332352401494247936/3224956589474056704
583 | https://act.myngp.com/el/6332352401494247936/3297014183511984640
584 | https://act.myngp.com/el/6332352401494247936/3369071777549912576?refcode=em10032017
585 | https://act.myngp.com/el/6332352401494247936/3441129371587840512
586 | https://act.myngp.com/el/6553448788087278080/-609296642790127104
587 | https://act.myngp.com/el/6553448788087278080/688021524869286400
588 | https://act.myngp.com/el/6553448788087278080/688021524869286400
589 | https://act.myngp.com/el/6553448788087278080/760079118907214336
590 | https://act.myngp.com/el/6553448788087278080/832136712945142272?refcode=0828
591 | https://act.myngp.com/el/6668292417925482496/117641815991060480
592 | https://act.myngp.com/el/6668292417925482496/117641815991060480
593 | https://act.myngp.com/el/6668292417925482496/-1179676351668353024
594 | https://act.myngp.com/el/6668292417925482496/189699410028988416
595 | https://act.myngp.com/el/6668292417925482496/261757004066916352
596 | https://act.myngp.com/el/6668292417925482496/333814598104844288
597 | https://act.myngp.com/el/6668292417925482496/405872192142772224
598 | https://act.myngp.com/el/6668292417925482496/477929786180700160
599 | https://act.myngp.com/el/6668292417925482496/549987380218628096
600 | https://act.myngp.com/el/6729602628305029632/1316270374352587264
601 | https://act.myngp.com/el/6729602628305029632/2613307067035290112
602 | https://act.myngp.com/el/6729602628305029632/2613307067035290112
603 | https://act.myngp.com/el/6729602628305029632/2685364661073218048?refcode=em4112017
604 | https://act.myngp.com/el/6806304563753650688/-1182663369372988928?express_lane=true&amount=15&refcode=express_lane_15
605 | https://act.myngp.com/el/6806304563753650688/-1182663369372988928?express_lane=true&amount=35&refcode=express_lane_35
606 | https://act.myngp.com/el/6806304563753650688/-1182663369372988928?refcode=061517
607 | https://act.myngp.com/el/6806304563753650688/-1182663369372988928?refcode=express_lane_other
608 | https://act.myngp.com/el/6806304563753650688/-1254720963410916864
609 | https://act.myngp.com/el/6806304563753650688/-1326778557448844800
610 | https://act.myngp.com/el/6806304563753650688/-1326778557448844800
611 | https://act.myngp.com/el/6806304563753650688/-2623815250131547648
612 | https://act.myngp.com/el/6908127032772135424/-2197381759926531584
613 | https://act.myngp.com/el/6908127032772135424/-2269439353964459520?refcode=em042717
614 | https://act.myngp.com/el/6908127032772135424/-2341496948002387456
615 | https://act.myngp.com/el/6908127032772135424/-900345067243828736
616 | https://act.myngp.com/el/6908127032772135424/-900345067243828736
617 | https://act.myngp.com/el/6975843754903603712/3034956582147852800
618 | https://act.myngp.com/el/6975843754903603712/4331993274830555648
619 | https://act.myngp.com/el/6975843754903603712/4404050868868483584?refcode=em032117&amount=25.00&recurring=auto
620 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=10&refcode=express_lane_em033117_1_10
621 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=100&refcode=express_lane_em033117_1_100
622 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=25&refcode=express_lane_em033117_1_25
623 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=250&refcode=express_lane_em033117_1_250
624 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=5&refcode=express_lane_em033117_1_5
625 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?express_lane=true&amount=50&refcode=express_lane_em033117_1_50
626 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?refcode=em033117_1&amount=25.00&recurring=auto
627 | https://act.myngp.com/el/6975843754903603712/4476108462906411520?refcode=express_lane_em033117_1_other
628 | https://act.myngp.com/el/7055843258443631360/3543849187699198720
629 | https://act.myngp.com/el/7055843258443631360/4840885880381901568
630 | https://act.myngp.com/el/7055843258443631360/4840885880381901568
631 | https://act.myngp.com/el/7055843258443631360/4912943474419829504
632 | https://act.myngp.com/el/7055843258443631360/4985001068457757440
633 | https://act.myngp.com/el/7055843258443631360/5057058662495685376
634 | https://act.myngp.com/el/7055843258443631360/5129116256533613312
635 | https://act.myngp.com/el/7055843258443631360/5201173850571541248
636 | https://act.myngp.com/el/7055843258443631360/5273231444609469184
637 | https://act.myngp.com/el/-7235224165858932224/1165404184882186752
638 | https://act.myngp.com/el/-7235224165858932224/2462440877564889600
639 | https://act.myngp.com/el/-7235224165858932224/2462440877564889600
640 | https://act.myngp.com/el/-7235224165858932224/2534498471602817536
641 | https://act.myngp.com/el/-7235224165858932224/2606556065640745472?refcode=em09192017&amount=10.00
642 | https://act.myngp.com/el/-7331601588942336/-2367670822301595136
643 | https://act.myngp.com/el/-7331601588942336/-2439728416339523072
644 | https://act.myngp.com/el/-7331601588942336/-2511786010377451008
645 | https://act.myngp.com/el/-7331601588942336/-2511786010377451008
646 | https://act.myngp.com/el/-7331601588942336/-3808822703060153856
647 | https://act.myngp.com/el/-7351276527248995840/6519337517872318976
648 | https://act.myngp.com/el/-7351276527248995840/7816374210555021824
649 | https://act.myngp.com/el/-7351276527248995840/7816374210555021824
650 | https://act.myngp.com/el/-7351276527248995840/7888431804592949760?utm_campaign=em17_170717_frnum_fnd_gq_lowdoll__DH&utm_medium=email&utm_source=helmer&refcode=em17_170717_frnum_fnd_gq_lowdoll__DH
651 | https://act.myngp.com/el/7369413942066022912/-3505677451677660672
652 | https://act.myngp.com/el/7369413942066022912/-3505677451677660672
653 | https://act.myngp.com/el/7369413942066022912/-4802714144360363520
654 | https://act.myngp.com/el/7369413942066022912/-4946829332436219392
655 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=10&refcode=express_lane_em033017_10
656 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=100&refcode=express_lane_em033017_100
657 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=25&refcode=express_lane_em033017_25
658 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=250&refcode=express_lane_em033017_250
659 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=5&refcode=express_lane_em033017_5
660 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?express_lane=true&amount=50&refcode=express_lane_em033017_50
661 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?refcode=em032917&amount=25.00&recurring=auto
662 | https://act.myngp.com/el/7462778971938621952/-3380702562018129408?refcode=express_lane_em033017_other
663 | https://act.myngp.com/el/7462778971938621952/-3452760156056057344?refcode=em032117&amount=25.00&recurring=auto
664 | https://act.myngp.com/el/7462778971938621952/-3524817750093985280
665 | https://act.myngp.com/el/7462778971938621952/-4821854442776688128
666 | https://act.myngp.com/el/-7515621625469335040/2687056809468365312
667 | https://act.myngp.com/el/-7515621625469335040/3984093502151068160
668 | https://act.myngp.com/el/-7515621625469335040/3984093502151068160
669 | https://act.myngp.com/el/-7515621625469335040/4056151096188996096
670 | https://act.myngp.com/el/-7515621625469335040/4128208690226924032
671 | https://act.myngp.com/el/-7617915810745939456/129007823075412480
672 | https://act.myngp.com/el/-7617915810745939456/1426044515758115328
673 | https://act.myngp.com/el/-7617915810745939456/1498102109796043264?refcode=em022517&amount=27.00&recurring=12
674 | https://act.myngp.com/el/-7617915810745939456/1570159703833971200
675 | https://act.myngp.com/el/-7715755840058684928/2077661285866539520
676 | https://act.myngp.com/el/-7715755840058684928/2077661285866539520
677 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh
678 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh&express_lane=true
679 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh&express_lane=true&amount=10
680 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh&express_lane=true&amount=25
681 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh&express_lane=true&amount=5
682 | https://act.myngp.com/el/-7715755840058684928/2149718879904467456?utm_campaign=em17_170623_eoq2_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170623_eoq2_fnd_gq_ful__dh&express_lane=true&amount=50
683 | https://act.myngp.com/el/-7715755840058684928/780624593183836672
684 | https://act.myngp.com/el/-776662099451966976/-1035453056064943616
685 | https://act.myngp.com/el/-776662099451966976/-1035453056064943616
686 | https://act.myngp.com/el/-776662099451966976/-2332489748747646464
687 | https://act.myngp.com/el/7799648097170163712/-1142803129719257088
688 | https://act.myngp.com/el/7799648097170163712/-1214860723757185024
689 | https://act.myngp.com/el/7799648097170163712/-1286918317795112960
690 | https://act.myngp.com/el/7799648097170163712/-1358975911833040896
691 | https://act.myngp.com/el/7799648097170163712/-1431033505870968832
692 | https://act.myngp.com/el/7799648097170163712/-1431033505870968832
693 | https://act.myngp.com/el/7799648097170163712/-2728070198553671680
694 | https://act.myngp.com/el/7818009210115328512/361511651396553216
695 | https://act.myngp.com/el/7818009210115328512/361511651396553216
696 | https://act.myngp.com/el/7818009210115328512/433569245434481152
697 | https://act.myngp.com/el/7818009210115328512/505626839472409088?refcode=BadBill
698 | https://act.myngp.com/el/7818009210115328512/-935806516262860288
699 | https://act.myngp.com/el/-7827268322232628736/2232470324034144768
700 | https://act.myngp.com/el/-7827268322232628736/3529507016716847616
701 | https://act.myngp.com/el/-7827268322232628736/3601564610754775552?refcode=em032117&amount=25.00&recurring=auto
702 | https://act.myngp.com/el/-7827268322232628736/3673622204792703488
703 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?express_lane=true&amount=10&refcode=express_lane_10
704 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?express_lane=true&amount=20&refcode=express_lane_20
705 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?express_lane=true&amount=250&refcode=express_lane_250
706 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?express_lane=true&amount=50&refcode=express_lane_50
707 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?refcode=em090617
708 | https://act.myngp.com/el/-7862442777241974272/-5916788803646256640?refcode=express_lane_other
709 | https://act.myngp.com/el/-7862442777241974272/-5988846397684184576
710 | https://act.myngp.com/el/-7862442777241974272/-6060903991722112512
711 | https://act.myngp.com/el/-7862442777241974272/-6060903991722112512
712 | https://act.myngp.com/el/-7862442777241974272/-7357940684404815360
713 | https://act.myngp.com/el/7870377840844737024/-2768210813672486400?utm_campaign=em17_170719_Survey_engg_gq_cust__DH&utm_medium=email&utm_source=Helmer&ms=em17_170719_Survey_engg_gq_cust__DH&refcode=em17_170719_Survey_engg_gq_cust__DH&fn=Joshua&ln=Lospinoso&pc=&em=josh@lospi.net
714 | https://act.myngp.com/el/7870377840844737024/-2840268407710414336
715 | https://act.myngp.com/el/7870377840844737024/-2912326001748342272
716 | https://act.myngp.com/el/7870377840844737024/-2912326001748342272
717 | https://act.myngp.com/el/7870377840844737024/-4209362694431045120
718 | https://act.myngp.com/el/7922688206047808000/-109116708686919168
719 | https://act.myngp.com/el/7922688206047808000/-109116708686919168?express_lane=true&amount=10&refcode=express_lane_10
720 | https://act.myngp.com/el/7922688206047808000/-109116708686919168?express_lane=true&amount=100&refcode=express_lane_100
721 | https://act.myngp.com/el/7922688206047808000/-109116708686919168?express_lane=true&amount=25&refcode=express_lane_25
722 | https://act.myngp.com/el/7922688206047808000/-1550268589445477888
723 | https://act.myngp.com/el/7922688206047808000/-181174302724847104
724 | https://act.myngp.com/el/7922688206047808000/-253231896762775040
725 | https://act.myngp.com/el/7922688206047808000/-253231896762775040
726 | https://act.myngp.com/el/-7937532080225712128/5415283452173944832
727 | https://act.myngp.com/el/-7937532080225712128/6712320144856647680
728 | https://act.myngp.com/el/-7937532080225712128/6712320144856647680
729 | https://act.myngp.com/el/-7937532080225712128/6784377738894575616
730 | https://act.myngp.com/el/-7937532080225712128/6928492926970431488
731 | https://act.myngp.com/el/-7937532080225712128/7000550521008359424
732 | https://act.myngp.com/el/-7937532080225712128/7072608115046287360
733 | https://act.myngp.com/el/-7937887983784949248/-6209807552936932864
734 | https://act.myngp.com/el/-7937887983784949248/-6281865146974860800
735 | https://act.myngp.com/el/-7937887983784949248/-6353922741012788736
736 | https://act.myngp.com/el/-7937887983784949248/-6353922741012788736
737 | https://act.myngp.com/el/-7937887983784949248/-7650959433695491584
738 | https://act.myngp.com/el/7962393418856990720/3391759844601038848
739 | https://act.myngp.com/el/7962393418856990720/4688796537283741696
740 | https://act.myngp.com/el/7962393418856990720/4688796537283741696
741 | https://act.myngp.com/el/7962393418856990720/4760854131321669632
742 | https://act.myngp.com/el/7962393418856990720/4832911725359597568
743 | https://act.myngp.com/el/7962393418856990720/4904969319397525504
744 | https://act.myngp.com/el/7962393418856990720/4977026913435453440
745 | https://act.myngp.com/el/-7970856844238779904/-3755909805485061632?refcode=em031317&amount=25.00&recurring=12
746 | https://act.myngp.com/el/-7970856844238779904/-3827967399522989568
747 | https://act.myngp.com/el/-7970856844238779904/-5125004092205692416
748 | https://act.myngp.com/el/8002091637270907392/1985057118040361472
749 | https://act.myngp.com/el/8002091637270907392/1985057118040361472
750 | https://act.myngp.com/el/8002091637270907392/255674861130091008
751 | https://act.myngp.com/el/8002091637270907392/327732455168018944
752 | https://act.myngp.com/el/8002091637270907392/399790049205946880?express_lane=true&amount=10&refcode=express_lane_10
753 | https://act.myngp.com/el/8002091637270907392/399790049205946880?express_lane=true&amount=100&refcode=express_lane_100
754 | https://act.myngp.com/el/8002091637270907392/399790049205946880?express_lane=true&amount=25&refcode=express_lane_25
755 | https://act.myngp.com/el/8002091637270907392/399790049205946880?refcode=express_lane_other
756 | https://act.myngp.com/el/8002091637270907392/688020425357658624
757 | https://act.myngp.com/el/-8060696839832729088/8411690487763175936
758 | https://act.myngp.com/el/-8060696839832729088/-8665959299225744896?refcode=em022317&amount=27.00&recurring=12
759 | https://act.myngp.com/el/-8060696839832729088/-8738016893263672832
760 | https://act.myngp.com/el/8099220304035318272/-6552076726570579456?refcode=em09142017
761 | https://act.myngp.com/el/8099220304035318272/-6624134320608507392
762 | https://act.myngp.com/el/8099220304035318272/-6696191914646435328
763 | https://act.myngp.com/el/8099220304035318272/-6696191914646435328
764 | https://act.myngp.com/el/8099220304035318272/-7993228607329138176
765 | https://act.myngp.com/el/8103433624003021312/2924057640347109888
766 | https://act.myngp.com/el/8103433624003021312/4221094333029812736
767 | https://act.myngp.com/el/8103433624003021312/4221094333029812736
768 | https://act.myngp.com/el/8103433624003021312/4293151927067740672
769 | https://act.myngp.com/el/8216341369252743680/3961291830014249472
770 | https://act.myngp.com/el/8216341369252743680/5258328522696952320
771 | https://act.myngp.com/el/8216341369252743680/5258328522696952320
772 | https://act.myngp.com/el/8216341369252743680/5330386116734880256
773 | https://act.myngp.com/el/8216341369252743680/5402443710772808192
774 | https://act.myngp.com/el/8216341369252743680/5474501304810736128
775 | https://act.myngp.com/el/8274247149129566720/-1675244578616636928?utm_campaign=em17_170621_eoq1_fnd_gq_ful__dh&utm_medium=email&utm_source=helmer&refcode=em17_170621_eoq1_fnd_gq_ful__dh
776 | https://act.myngp.com/el/8274247149129566720/-1747302172654564864
777 | https://act.myngp.com/el/8274247149129566720/-1747302172654564864
778 | https://act.myngp.com/el/8274247149129566720/-3044338865337267712
779 | https://act.myngp.com/el/8352570988358929152/2524065347076492032
780 | https://act.myngp.com/el/8352570988358929152/3821102039759194880
781 | https://act.myngp.com/el/8352570988358929152/3821102039759194880
782 | https://act.myngp.com/el/8352570988358929152/3893159633797122816
783 | https://act.myngp.com/el/8352570988358929152/3965217227835050752
784 | https://act.myngp.com/el/-8403964352844527104/-1691006077800805888
785 | https://act.myngp.com/el/-8403964352844527104/-2051294047990445568
786 | https://act.myngp.com/el/-8403964352844527104/-2051294047990445568?express_lane=true&amount=10&refcode=express_lane_10
787 | https://act.myngp.com/el/-8403964352844527104/-2051294047990445568?express_lane=true&amount=100&refcode=express_lane_100
788 | https://act.myngp.com/el/-8403964352844527104/-2051294047990445568?express_lane=true&amount=25&refcode=express_lane_25
789 | https://act.myngp.com/el/-8403964352844527104/-2051294047990445568?refcode=express_lane_other
790 | https://act.myngp.com/el/-8403964352844527104/-2123351642028373504
791 | https://act.myngp.com/el/-8403964352844527104/-2195409236066301440
792 | https://act.myngp.com/el/-8403964352844527104/-2195409236066301440
793 | https://act.myngp.com/el/-8403964352844527104/-3492445928749004288
794 | https://act.myngp.com/el/-8635954704940529152/4887065227438852608
795 | https://act.myngp.com/el/-8635954704940529152/6184101920121555456
796 | https://act.myngp.com/el/-8635954704940529152/6184101920121555456
797 | https://act.myngp.com/el/-8635954704940529152/6256159514159483392
798 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?express_lane=true&amount=10&refcode=express_lane_10
799 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?express_lane=true&amount=20&refcode=express_lane_20
800 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?express_lane=true&amount=250&refcode=express_lane_250
801 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?express_lane=true&amount=50&refcode=express_lane_50
802 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?refcode=em090617
803 | https://act.myngp.com/el/-8635954704940529152/6328217108197411328?refcode=express_lane_other
804 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?express_lane=true&amount=10&refcode=express_lane_10
805 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?express_lane=true&amount=100&refcode=express_lane_100
806 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?express_lane=true&amount=25&refcode=express_lane_27
807 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?express_lane=true&amount=250&refcode=express_lane_250
808 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?express_lane=true&amount=50&refcode=express_lane_50
809 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?refcode=em042917&amount=10.00
810 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?refcode=em043017&amount=10.00
811 | https://act.myngp.com/el/8747017349274012160/1120645265538681344?refcode=express_lane_other
812 | https://act.myngp.com/el/8747017349274012160/3642661056866159104
813 | https://act.myngp.com/el/8747017349274012160/4939697749548861952
814 | https://act.myngp.com/el/8747017349274012160/4939697749548861952
815 | https://act.myngp.com/el/-8765542058763482624/4060652496793111040
816 | https://act.myngp.com/el/-8765542058763482624/5357689189475813888
817 | https://act.myngp.com/el/-8765542058763482624/5357689189475813888
818 | https://act.myngp.com/el/-8765542058763482624/5429746783513741824
819 | https://act.myngp.com/el/-8765542058763482624/5501804377551669760?refcode=em_060617&amount=15.00
820 | https://act.myngp.com/el/8784616248897440256/4045451748539107840
821 | https://act.myngp.com/el/8784616248897440256/5342488441221810688
822 | https://act.myngp.com/el/8784616248897440256/5414546035259738624?refcode=em032117&amount=25.00&recurring=auto
823 | https://act.myngp.com/el/8784616248897440256/5486603629297666560?refcode=em033117_2&amount=25.00&recurring=auto
824 | https://act.myngp.com/el/8802264527214742016/4887065227438852608
825 | https://act.myngp.com/el/8802264527214742016/6184101920121555456
826 | https://act.myngp.com/el/8802264527214742016/6184101920121555456
827 | https://act.myngp.com/el/8802264527214742016/6256159514159483392
828 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?express_lane=true&amount=10&refcode=express_lane_10
829 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?express_lane=true&amount=20&refcode=express_lane_20
830 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?express_lane=true&amount=250&refcode=express_lane_250
831 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?express_lane=true&amount=50&refcode=express_lane_50
832 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?refcode=em090617
833 | https://act.myngp.com/el/8802264527214742016/6328217108197411328?refcode=express_lane_other
834 | https://act.myngp.com/el/8810847297801292288/-3505677451677660672
835 | https://act.myngp.com/el/8810847297801292288/-3505677451677660672
836 | https://act.myngp.com/el/8810847297801292288/-4802714144360363520
837 | https://act.myngp.com/el/8810847297801292288/-4946829332436219392
838 | https://act.myngp.com/el/8898178203565689344/-2179931410882098688?refcode=em022517&amount=27.00&recurring=12
839 | https://act.myngp.com/el/8898178203565689344/-2179931410882098688?refcode=em022517&amount=27.00&recurring=12
840 | https://act.myngp.com/el/8898178203565689344/-2251989004920026624
841 | https://act.myngp.com/el/8898178203565689344/-3549025697602729472
842 | https://act.myngp.com/el/8925255880717896192/6466136548250749440
843 | https://act.myngp.com/el/8925255880717896192/7763173240933452288
844 | https://act.myngp.com/el/8925255880717896192/7763173240933452288
845 | https://act.myngp.com/el/8925255880717896192/7835230834971380224
846 | https://act.myngp.com/el/8925255880717896192/7907288429009308160?refcode=5092017
847 | https://act.myngp.com/el/8933912344353311232/-6472984457138140672?refcode=fightback
848 | https://act.myngp.com/el/8933912344353311232/-6545042051176068608
849 | https://act.myngp.com/el/8933912344353311232/-6617099645213996544
850 | https://act.myngp.com/el/8933912344353311232/-6617099645213996544
851 | https://act.myngp.com/el/8933912344353311232/-7914136337896699392
852 | https://act.myngp.com/el/-8994181108007958016/-1069511528246932992
853 | https://act.myngp.com/el/-8994181108007958016/-1141569122284860928
854 | https://act.myngp.com/el/-8994181108007958016/-1213626716322788864
855 | https://act.myngp.com/el/-8994181108007958016/-1213626716322788864
856 | https://act.myngp.com/el/-8994181108007958016/-2510663409005491712
857 | https://act.myngp.com/el/9025359830242036224/5823249900466866688
858 | https://act.myngp.com/el/9025359830242036224/7120286593149569536
859 | https://act.myngp.com/el/9025359830242036224/7120286593149569536
860 | https://act.myngp.com/el/9025359830242036224/7192344187187497472
861 | https://act.myngp.com/el/9025359830242036224/7264401781225425408?utm_campaign=em17_170730_eom2_fnd_gq_ful__TH&utm_medium=email&utm_source=Helmer&refcode=em17_170730_eom2_fnd_gq_ful__TH
862 | https://act.myngp.com/el/9107074430611753472/-1418256825368180224
863 | https://act.myngp.com/el/9107074430611753472/-1490314419406108160
864 | https://act.myngp.com/el/9107074430611753472/-1562372013444036096
865 | https://act.myngp.com/el/9107074430611753472/-1562372013444036096
866 | https://act.myngp.com/el/9107074430611753472/-2859408706126738944
867 | https://act.myngp.com/el/-9113339585451521536/3311363909766089216
868 | https://act.myngp.com/el/-9113339585451521536/4608400602448792064
869 | https://act.myngp.com/el/-9113339585451521536/4680458196486720000?refcode=em032117&amount=25.00&recurring=auto
870 | https://act.myngp.com/el/9123447258260965888/7742627766656829952
871 | https://act.myngp.com/el/9123447258260965888/9039664459339532800
872 | https://act.myngp.com/el/9123447258260965888/9039664459339532800
873 | https://act.myngp.com/el/9123447258260965888/9111722053377460736
874 | https://act.myngp.com/el/9123447258260965888/9183779647415388672?express_lane=true&amount=10&refcode=express_lane_10
875 | https://act.myngp.com/el/9123447258260965888/9183779647415388672?express_lane=true&amount=100&refcode=express_lane_100
876 | https://act.myngp.com/el/9123447258260965888/9183779647415388672?express_lane=true&amount=25&refcode=express_lane_25
877 | https://act.myngp.com/el/-953024864058865152/3034956582147852800
878 | https://act.myngp.com/el/-953024864058865152/4331993274830555648
879 | https://act.myngp.com/el/-953024864058865152/4404050868868483584?refcode=em032117&amount=25.00&recurring=auto
880 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=10&refcode=express_lane_em033117_1_10
881 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=100&refcode=express_lane_em033117_1_100
882 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=25&refcode=express_lane_em033117_1_25
883 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=250&refcode=express_lane_em033117_1_250
884 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=5&refcode=express_lane_em033117_1_5
885 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?express_lane=true&amount=50&refcode=express_lane_em033117_1_50
886 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?refcode=em033117_1&amount=25.00&recurring=auto
887 | https://act.myngp.com/el/-953024864058865152/4476108462906411520?refcode=express_lane_em033117_1_other
888 | https://act.myngp.com/Forms/472125819685702144
889 | https://act.myngp.com/Forms/-4921216209067177472
890 | https://act.myngp.com/Forms/-7155283099219654144
891 | https://act.myngp.com/Forms/-8307078703919658496
892 | https://act.myngp.com/Forms/-8608538403976771072
893 | https://act.myngp.com/Forms/-8895924355198350848
894 |
--------------------------------------------------------------------------------
/gmail.py:
--------------------------------------------------------------------------------
1 | import httplib2
2 | import os
3 | import json
4 | import base64
5 | import argparse
6 |
7 | from apiclient import discovery, errors
8 | from oauth2client import client
9 | from oauth2client import tools
10 | from oauth2client.file import Storage
11 |
12 | # If modifying these scopes, delete your previously saved credentials
13 | # at ~/.credentials/gmail-python-quickstart.json
14 | SCOPES = 'https://www.googleapis.com/auth/gmail.readonly'
15 | CLIENT_SECRET_FILE = 'client_secret.json'
16 | APPLICATION_NAME = 'Gmail API Python Quickstart'
17 |
18 |
19 | def get_credentials():
20 | home_dir = os.path.expanduser('~')
21 | credential_dir = os.path.join(home_dir, '.credentials')
22 | if not os.path.exists(credential_dir):
23 | os.makedirs(credential_dir)
24 | credential_path = os.path.join(credential_dir, 'gmail-python-quickstart.json')
25 | store = Storage(credential_path)
26 | credentials = store.get()
27 | if not credentials or credentials.invalid:
28 | flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
29 | flow.user_agent = APPLICATION_NAME
30 | credentials = tools.run(flow, store)
31 | print('Storing credentials to ' + credential_path)
32 | return credentials
33 |
34 |
35 | def push_messages(service, page):
36 | if 'messages' in page:
37 | for message in page['messages']:
38 | try:
39 | msg_id = message['id']
40 | path = os.path.join("emails", "{}.json".format(msg_id))
41 | if(os.path.exists(path)):
42 | continue
43 | message = service.users().messages().get(userId="me", id=msg_id, format='raw').execute()
44 | message['raw'] = base64.urlsafe_b64decode(message['raw'].encode('ASCII'))
45 | message['id'] = int(message['id'], 16)
46 | message['historyId'] = int(message['historyId'])
47 | message['internalDate'] = int(message['internalDate'])
48 | message['threadId'] = int(message['threadId'], 16)
49 | del message['snippet']
50 | del message['sizeEstimate'])
51 | with open(path, "w") as file:
52 | try:
53 | message['raw'] = message['raw'].decode("ascii")
54 | except Exception as e:
55 | message['raw'] = ""
56 | file.write(json.dumps(message))
57 | except Exception as e:
58 | print('[-] Error: {}'.format(e))
59 |
60 | def main():
61 | credentials = get_credentials()
62 | print("[+] Gmail credentials obtained")
63 | http = credentials.authorize(httplib2.Http())
64 | service = discovery.build('gmail', 'v1', http=http)
65 | print("[+] Connection to Gmail established.")
66 | response = service.users().messages().list(userId="me").execute()
67 | print("[+] Parsing first page of emails.")
68 | messages = push_messages(service, response)
69 | while 'nextPageToken' in response:
70 | page_token = response['nextPageToken']
71 | response = service.users().messages().list(userId="me", pageToken=page_token).execute()
72 | messages = push_messages(service, response)
73 | print(json.dumps(messages))
74 |
75 | if __name__ == '__main__':
76 | main()
77 |
--------------------------------------------------------------------------------
/img/unfurl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JLospinoso/unfurl/4baac0ad78727feb8d4a234409e1e174d8da6a76/img/unfurl.png
--------------------------------------------------------------------------------
/img/unfurl.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/parse_emails.py:
--------------------------------------------------------------------------------
1 | import os
2 | import json
3 | import email
4 | import re
5 |
6 | url_re = re.compile("http[s]?://[A-Za-z0-9\-._~:/?#\[\]@!$&'()*+,;=]+")
7 | urls = set()
8 | email_directory = "emails"
9 | parser = email.parser.BytesParser()
10 |
11 |
12 | def extract(msg):
13 | result = [msg]
14 | while any(x.is_multipart() for x in result):
15 | for i, e in enumerate(result):
16 | if e.is_multipart():
17 | result.pop(i)
18 | for payload in e.get_payload():
19 | result.append(payload)
20 | break
21 | return [(e.get_content_type(), e.get_payload()) for e in result]
22 |
23 |
24 | def decode(encoding, body):
25 | if encoding in ['text/plain', 'text/html']:
26 | body = body.replace("=\r\n", "").replace("\r\n", " ")
27 | return body
28 | return " "
29 |
30 |
31 | for path in os.listdir(email_directory):
32 | with open(os.path.join(email_directory, path), "rb") as f:
33 | email_contents = bytes(json.load(f)['raw'], "ascii")
34 | msg = parser.parsebytes(email_contents)
35 | encoded_bodies = extract(msg)
36 | body = "".join(decode(e, b) for e, b in encoded_bodies)
37 | urls.update(url_re.findall(body))
38 |
39 | with open("urls.txt", "w") as out_file:
40 | for url in urls:
41 | out_file.write("{}\n".format(url))
--------------------------------------------------------------------------------
/unfurl.py:
--------------------------------------------------------------------------------
1 | import urllib.parse
2 | import base64
3 | import struct
4 | import binascii
5 | import math
6 | import argparse
7 | import json
8 | import os
9 |
10 |
11 | def forgiving_b64_decode(x, pads=0):
12 | padded = "{}{}".format(x, "_" * pads)
13 | try:
14 | return base64.b64decode(padded, "-_")
15 | except binascii.Error as e:
16 | if pads < 2:
17 | return forgiving_b64_decode(x, pads + 1)
18 | else:
19 | raise e
20 |
21 | encodings = {
22 | 'original': bytearray,
23 | 'signed_int': lambda x: struct.pack("q", int(x)),
24 | 'unsigned_int': lambda x: struct.pack("Q", int(x)),
25 | 'hex': binascii.unhexlify,
26 | 'base64': forgiving_b64_decode,
27 | 'ascii': lambda x: x.encode("ascii")
28 | }
29 |
30 |
31 | def parse(url):
32 | parsed_url = urllib.parse.urlparse(url)
33 | return {
34 | "query": urllib.parse.parse_qs(parsed_url.query),
35 | "route": parsed_url.path.split('/'),
36 | "url": url
37 | }
38 |
39 |
40 | def cumsum(x):
41 | return sum(x for x in range(x + 1))
42 |
43 |
44 | def get_urls_from(file):
45 | with open(file, "r") as url_file:
46 | return (parse(x.rstrip("\r\n ])([.\\\'\"")) for x in url_file.readlines())
47 |
48 |
49 | def categorize(url):
50 | return "{} {}".format(len(url['route']), " ".join(sorted(url['query'].keys())))
51 |
52 |
53 | def try_decode(sample, encoding):
54 | try:
55 | return (sample, encoding(sample))
56 | except Exception:
57 | return None
58 |
59 | def smart_utf(x):
60 | leading_zero = 0
61 | while len(x) > leading_zero and x[leading_zero] == 0:
62 | leading_zero += 1
63 | trailing_zero = len(x) - 1
64 | while trailing_zero >= leading_zero and x[trailing_zero] == 0:
65 | trailing_zero -= 1
66 | if trailing_zero == leading_zero+1:
67 | return "NULL"
68 | x = x[leading_zero:trailing_zero+1]
69 | result = []
70 | for y in x:
71 | if y < 128:
72 | try:
73 | result += chr(y)
74 | except:
75 | pass
76 | else:
77 | result += "?"
78 | return "".join(result)
79 |
80 | def extract_groups(urls):
81 | groups = {}
82 | for url in urls:
83 | category = categorize(url)
84 | group = groups.get(category, {'urls': [], 'collection': {}})
85 | group['urls'].append(url["url"])
86 | for x in url['query']:
87 | values = group['collection'].get(x, [])
88 | values.append(url['query'][x][0])
89 | group['collection'][x] = values
90 | for i in range(0, len(url['route'])):
91 | x = "@{}".format(i)
92 | values = group['collection'].get(x, [])
93 | values.append(url['route'][i])
94 | group['collection'][x] = values
95 | groups[category] = group
96 | return groups
97 |
98 |
99 | def decode(groups):
100 | decoded = {}
101 | for group_name in groups:
102 | group = groups[group_name]
103 | groups[group_name] = {x: group['collection'][x] for x in group['collection'] if
104 | len(set(group['collection'][x])) > 1}
105 | decoded[group_name] = {}
106 | for group_name in groups:
107 | group = groups[group_name]
108 | for element in group:
109 | decoded[group_name][element] = {}
110 | for encoding in encodings:
111 | decodings = [try_decode(sample, encodings[encoding]) for sample in group[element]]
112 | decodings = [x for x in decodings if x]
113 | if len(decodings) > 1:
114 | decoded[group_name][element][encoding] = decodings
115 | return decoded
116 |
117 |
118 | def summarize(decoded, urls):
119 | results = {}
120 | for group in decoded:
121 | results[group] = { "fields": {}, "urls": urls[group]}
122 | for field in decoded[group]:
123 | results[group]["fields"][field] = {}
124 | for encoding in decoded[group][field]: # Each encoding / field combo
125 | originals = [x[0] for x in decoded[group][field][encoding]]
126 | elements = [x[1] for x in decoded[group][field][encoding]]
127 | max_len = max(len(x) for x in elements)
128 | for i in range(len(elements)):
129 | elements[i] = b'\x00' * (max_len - len(elements[i])) + elements[i]
130 | pmfs = []
131 | for j in range(max_len): # Finds min/max/range of each field
132 | pmfs.append({})
133 | for element in elements:
134 | pmfs[j][element[j]] = pmfs[j].get(element[j], 0) + 1
135 | for support in pmfs[j]:
136 | pmfs[j][support] /= len(elements)
137 | entropy = 0
138 | for j in range(max_len):
139 | entropy += -1 * sum(pmfs[j][support] * math.log(pmfs[j][support], 2) for support in pmfs[j])
140 | results[group]["fields"][field][encoding] = {
141 | "n_elements": len(elements),
142 | "entropy": entropy,
143 | "elements": [binascii.hexlify(x) for x in elements],
144 | "originals": originals
145 | }
146 | return results
147 |
148 |
149 | def make_report(summary):
150 | report = {}
151 | for group in summary:
152 | report[group] = {
153 | "urls": summary[group]["urls"],
154 | "fields": {}
155 | }
156 | group_entropy = 0
157 | for field in summary[group]["fields"]:
158 | report[group]["fields"][field] = []
159 | entropy_frontier = {}
160 | for encoding in summary[group]["fields"][field]:
161 | n_elem = summary[group]["fields"][field][encoding]['n_elements']
162 | entro = summary[group]["fields"][field][encoding]['entropy']
163 | if n_elem not in entropy_frontier or entro < entropy_frontier[n_elem]["entropy"]:
164 | entropy_frontier[n_elem] = summary[group]["fields"][field][encoding]
165 | entropy_frontier[n_elem]["encoding"] = encoding
166 | sorted_frontier = [x for x in entropy_frontier]; sorted_frontier.sort(reverse=True)
167 | if len(sorted_frontier) == 0:
168 | continue
169 | entro = entropy_frontier[sorted_frontier[0]]["entropy"]
170 | for y in sorted_frontier[1:]:
171 | if entropy_frontier[y]["entropy"] >= entro:
172 | entropy_frontier.pop(y)
173 | else:
174 | entro = entropy_frontier[y]["entropy"]
175 | sorted_frontier = [x for x in entropy_frontier]; sorted_frontier.sort()
176 | min_entropy = None
177 | for frontier_index in sorted_frontier:
178 | frontier_element = entropy_frontier[frontier_index]
179 | tokens = frontier_element["elements"]
180 | originals = frontier_element["originals"]
181 | encoded_samples = []
182 | for token_index in range(0, len(tokens)):
183 | token = tokens[token_index]
184 | original = originals[token_index]
185 | bytes = binascii.unhexlify(token)
186 | as_utf = smart_utf(bytes)
187 | encoded_samples.append({
188 | "hexlified": ' '.join('{:02x}'.format(x) for x in binascii.unhexlify(token)),
189 | "ascii": as_utf,
190 | "original": original
191 | })
192 | report[group]["fields"][field].append({
193 | "count": frontier_index,
194 | "entropy": frontier_element["entropy"],
195 | "encoding": frontier_element["encoding"],
196 | "samples": encoded_samples
197 | })
198 | min_entropy = frontier_element["entropy"] if min_entropy == None or min_entropy > frontier_element["entropy"] else min_entropy
199 | group_entropy += min_entropy
200 | report[group]["entropy"] = group_entropy
201 | return report
202 |
203 |
204 | def report_to_text(report, n_elem_to_show, n_url_to_show):
205 | lines = []
206 | for group in report:
207 | lines += "==== %s ====\n Sample URLs:\n" % group
208 | for url in report[group]["urls"][:n_url_to_show]:
209 | lines += " * %s\n" % url
210 | lines += "\n Entropy: %5.1f\n" % report[group]["entropy"]
211 | for field in report[group]["fields"]:
212 | for f in report[group]["fields"][field]:
213 | lines += " **** %s - %s ****\n" % (field, f["encoding"])
214 | lines += " Token Entropy: %5.2f\n" % f["entropy"]
215 | lines += " Decode Count: %d\n" % f["count"]
216 | lines += " Sample Tokens:\n"
217 | for sample in f["samples"][:n_elem_to_show]:
218 | lines += " %s\n" % sample["original"]
219 | lines += " %s\n" % sample["hexlified"]
220 | lines += " %s\n\n" % sample["ascii"]
221 |
222 | return "".join(lines)
223 |
224 |
225 | def report_to_json(report):
226 | return json.dumps(report)
227 |
228 |
229 | def process(urls_path):
230 | groups = extract_groups(get_urls_from(urls_path))
231 | urls = { name: groups[name]['urls'] for name in groups }
232 | decoded = decode(groups)
233 | summary = summarize(decoded, urls)
234 | report = make_report(summary)
235 | return report
236 |
237 | parser = argparse.ArgumentParser(description='Computes entropy of URLs')
238 | parser.add_argument('-s','--search', help='Input is a directory. Write multiple outputs to this directory.', default=None)
239 | parser.add_argument('-t','--text', help='Text output. (Default is JSON.)', action="store_true")
240 | parser.add_argument('-e','--elem', help='Number of token samples to print (text only)', default=5, type=int)
241 | parser.add_argument('-u','--url', help='Number of url samples to print (text only)', default=5, type=int)
242 | parser.add_argument('file', nargs=1, help='File containing URL samples')
243 | args = parser.parse_args()
244 |
245 | if args.search:
246 | dir = args.file[0]
247 | for f in os.listdir(dir):
248 | path = os.path.join(dir, f)
249 | report = process(path)
250 | for group in report:
251 | ent = report[group]["entropy"]
252 | print("%s,%s,%5.2f" % (path, group, report[group]["entropy"]))
253 | path_prefix = os.path.join(args.search, f)
254 | if args.text:
255 | with open("%s.txt" % path_prefix, "w") as of:
256 | of.write(report_to_text(report, args.elem, args.url))
257 | else:
258 | with open("%s.json" % path_prefix, "w") as of:
259 | of.write(report_to_json(report))
260 | else:
261 | report = process(args.file[0])
262 | if args.text:
263 | print(report_to_text(report, args.elem, args.url))
264 | else:
265 | print(report_to_json(report))
266 |
--------------------------------------------------------------------------------