
SeedPacket Examples
version 2 in C#
Created by Will Crowther
25,000 Rows Example
This example shows how you can create 1000 Account records, that each have from 1 to 4 Invoices, which each have from 1 to 8 InvoiceItems. The intention here is to show that you can have some complex nested data structures with large numbers of seeded items and it still be performant.
If you look at the code in the controller, we are pre-generating a list containing 20,000 rows of InvoiceItems and 4000 rows of invoices. These cached lists are then used by the "getRandomInvoiceItems" and "getRandomInvoices" rules which utilize the Funcs.GetCacheItemsRandom() and Funcs.GetCacheItemsNext() methods to get either a number of random items or a number of the next sequential items from a cached list. The Funcs.GetCacheItemsRandom() menthod usually takes 150% longer (or more) to process due to the overhead of randomizing the order of items returned.
The number of items taken is driven by the min and max parameters. To get a static number of items, just set both parameters to the same number. The item is removed from the cached list by default after being retrieved. Setting the "remove" parmeter to false if will leave the item in the cached list, if that is desired. If there are no more items in the cached list, the method will fail silently, so it is best practice to manually estimate how many rows are required ahead of time.
Calculated on the fly, it took: 2579 milliseconds to generate these 25,000 rows of data.
The source code also shows an example that breaks out the GetInvoices() rule into an external function. This example shows how to apply extra logic to make the Invoice.AccountId match the actual AccountId in the Account it is nested under. Breaking the logic into an external function is also useful for debugging the logic...
AccountName | AccountId | Active Invoices | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Sunrise Inc |
3465 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5009
InvoiceDate: 1/20/2021
Created: 12/19/2019
InvoiceId: 3550
InvoiceDate: 11/8/2021
Created: 12/28/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mega Systems |
3466 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5491
InvoiceDate: 11/15/2018
Created: 12/23/2019
InvoiceId: 4264
InvoiceDate: 6/28/2019
Created: 12/22/2019
InvoiceId: 2938
InvoiceDate: 8/8/2021
Created: 12/19/2019
InvoiceId: 5103
InvoiceDate: 2/27/2019
Created: 12/19/2019
InvoiceId: 4045
InvoiceDate: 1/27/2020
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne Co |
3467 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4013
InvoiceDate: 7/17/2019
Created: 12/18/2019
InvoiceId: 2850
InvoiceDate: 5/17/2021
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Capital Inc |
3468 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2921
InvoiceDate: 9/23/2020
Created: 12/16/2019
InvoiceId: 2870
InvoiceDate: 9/19/2021
Created: 12/5/2019
InvoiceId: 2177
InvoiceDate: 3/7/2018
Created: 12/7/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
More Corp |
3469 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4242
InvoiceDate: 8/25/2021
Created: 12/12/2019
InvoiceId: 2448
InvoiceDate: 3/31/2019
Created: 12/10/2019
InvoiceId: 4106
InvoiceDate: 7/13/2018
Created: 12/24/2019
InvoiceId: 3006
InvoiceDate: 4/29/2019
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Co |
3470 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2360
InvoiceDate: 4/20/2020
Created: 12/18/2019
InvoiceId: 3163
InvoiceDate: 4/18/2019
Created: 12/18/2019
InvoiceId: 4471
InvoiceDate: 7/6/2019
Created: 12/4/2019
InvoiceId: 4238
InvoiceDate: 5/2/2019
Created: 12/25/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Co |
3471 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4340
InvoiceDate: 1/24/2018
Created: 12/5/2019
InvoiceId: 4083
InvoiceDate: 8/21/2021
Created: 12/3/2019
InvoiceId: 4642
InvoiceDate: 8/27/2018
Created: 12/9/2019
InvoiceId: 2080
InvoiceDate: 2/3/2020
Created: 12/29/2019
InvoiceId: 2934
InvoiceDate: 8/16/2021
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Corp |
3472 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5486
InvoiceDate: 11/28/2020
Created: 12/3/2019
InvoiceId: 5562
InvoiceDate: 3/23/2019
Created: 12/11/2019
InvoiceId: 4342
InvoiceDate: 9/10/2021
Created: 12/30/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
City |
3473 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4136
InvoiceDate: 2/5/2018
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Co |
3474 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2826
InvoiceDate: 7/1/2021
Created: 12/12/2019
InvoiceId: 4074
InvoiceDate: 8/23/2021
Created: 12/18/2019
InvoiceId: 2335
InvoiceDate: 6/24/2021
Created: 1/1/2020
InvoiceId: 5477
InvoiceDate: 10/4/2018
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise LLC |
3475 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4123
InvoiceDate: 11/20/2018
Created: 12/10/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
City |
3476 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4457
InvoiceDate: 6/10/2020
Created: 12/20/2019
InvoiceId: 5246
InvoiceDate: 11/28/2020
Created: 12/16/2019
InvoiceId: 3333
InvoiceDate: 11/5/2019
Created: 12/17/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Corporation |
3477 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2845
InvoiceDate: 8/9/2021
Created: 12/2/2019
InvoiceId: 4092
InvoiceDate: 11/4/2019
Created: 12/9/2019
InvoiceId: 3055
InvoiceDate: 5/3/2020
Created: 12/3/2019
InvoiceId: 3567
InvoiceDate: 1/21/2019
Created: 12/27/2019
InvoiceId: 4813
InvoiceDate: 11/9/2019
Created: 12/21/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax |
3478 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2893
InvoiceDate: 2/9/2021
Created: 12/2/2019
InvoiceId: 4122
InvoiceDate: 4/7/2020
Created: 12/18/2019
InvoiceId: 3127
InvoiceDate: 1/27/2019
Created: 12/6/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne |
3479 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4460
InvoiceDate: 7/15/2020
Created: 12/10/2019
InvoiceId: 5265
InvoiceDate: 9/21/2020
Created: 12/19/2019
InvoiceId: 5663
InvoiceDate: 6/18/2018
Created: 12/7/2019
InvoiceId: 3289
InvoiceDate: 6/9/2018
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MultiNational |
3480 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3200
InvoiceDate: 10/2/2021
Created: 12/7/2019
InvoiceId: 5996
InvoiceDate: 11/25/2021
Created: 12/7/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Co |
3481 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3725
InvoiceDate: 9/21/2021
Created: 12/10/2019
InvoiceId: 3766
InvoiceDate: 11/28/2021
Created: 12/19/2019
InvoiceId: 4948
InvoiceDate: 1/22/2019
Created: 12/4/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Co |
3482 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3189
InvoiceDate: 6/13/2018
Created: 12/15/2019
InvoiceId: 3671
InvoiceDate: 7/12/2021
Created: 12/28/2019
InvoiceId: 4020
InvoiceDate: 6/27/2020
Created: 12/31/2019
InvoiceId: 4042
InvoiceDate: 12/4/2020
Created: 12/7/2019
InvoiceId: 4139
InvoiceDate: 8/26/2019
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next Systems |
3483 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3300
InvoiceDate: 1/8/2020
Created: 12/21/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp |
3484 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2099
InvoiceDate: 8/5/2019
Created: 12/30/2019
InvoiceId: 2705
InvoiceDate: 12/8/2020
Created: 12/2/2019
InvoiceId: 5060
InvoiceDate: 5/31/2019
Created: 12/23/2019
InvoiceId: 5407
InvoiceDate: 7/23/2019
Created: 12/11/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Spacely |
3485 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3284
InvoiceDate: 10/3/2021
Created: 12/21/2019
InvoiceId: 2919
InvoiceDate: 3/9/2021
Created: 12/31/2019
InvoiceId: 2021
InvoiceDate: 12/4/2018
Created: 12/9/2019
InvoiceId: 3274
InvoiceDate: 3/9/2019
Created: 12/15/2019
InvoiceId: 3631
InvoiceDate: 6/20/2021
Created: 12/6/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stark |
3486 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2714
InvoiceDate: 9/4/2018
Created: 12/3/2019
InvoiceId: 5614
InvoiceDate: 2/15/2021
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
City Co |
3487 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5018
InvoiceDate: 8/19/2018
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne Co |
3488 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3604
InvoiceDate: 7/6/2018
Created: 12/14/2019
InvoiceId: 4836
InvoiceDate: 11/22/2021
Created: 12/11/2019
InvoiceId: 5565
InvoiceDate: 12/30/2019
Created: 12/28/2019
InvoiceId: 4041
InvoiceDate: 10/15/2020
Created: 12/15/2019
InvoiceId: 2011
InvoiceDate: 3/25/2021
Created: 12/17/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Corp |
3489 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5035
InvoiceDate: 2/23/2018
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compudata Ind |
3490 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5321
InvoiceDate: 11/17/2018
Created: 12/18/2019
InvoiceId: 4563
InvoiceDate: 8/22/2019
Created: 12/19/2019
InvoiceId: 4217
InvoiceDate: 8/3/2018
Created: 12/8/2019
InvoiceId: 4416
InvoiceDate: 4/28/2020
Created: 12/16/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Industries |
3491 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5474
InvoiceDate: 5/26/2019
Created: 12/29/2019
InvoiceId: 5361
InvoiceDate: 4/21/2021
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings |
3492 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4997
InvoiceDate: 1/27/2021
Created: 1/1/2020
InvoiceId: 5242
InvoiceDate: 9/7/2019
Created: 12/20/2019
InvoiceId: 3246
InvoiceDate: 3/13/2021
Created: 12/15/2019
InvoiceId: 4800
InvoiceDate: 2/7/2020
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella Corporation |
3493 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2752
InvoiceDate: 8/8/2021
Created: 12/23/2019
InvoiceId: 2943
InvoiceDate: 8/11/2019
Created: 12/15/2019
InvoiceId: 4874
InvoiceDate: 11/30/2019
Created: 12/11/2019
InvoiceId: 4602
InvoiceDate: 8/4/2018
Created: 12/15/2019
InvoiceId: 3110
InvoiceDate: 1/23/2018
Created: 12/21/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson Inc |
3494 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2112
InvoiceDate: 3/20/2021
Created: 12/24/2019
InvoiceId: 2072
InvoiceDate: 3/3/2020
Created: 1/1/2020
InvoiceId: 2815
InvoiceDate: 10/5/2019
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson LLC |
3495 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2514
InvoiceDate: 11/7/2018
Created: 12/28/2019
InvoiceId: 3048
InvoiceDate: 10/11/2021
Created: 12/16/2019
InvoiceId: 4647
InvoiceDate: 3/27/2021
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella Co |
3496 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3481
InvoiceDate: 5/11/2019
Created: 12/30/2019
InvoiceId: 5702
InvoiceDate: 3/13/2020
Created: 12/9/2019
InvoiceId: 2092
InvoiceDate: 5/16/2018
Created: 12/20/2019
InvoiceId: 2104
InvoiceDate: 7/24/2018
Created: 12/16/2019
InvoiceId: 4144
InvoiceDate: 12/11/2019
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wonka |
3497 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4898
InvoiceDate: 4/9/2018
Created: 12/3/2019
InvoiceId: 2252
InvoiceDate: 2/28/2021
Created: 12/15/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next |
3498 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3087
InvoiceDate: 4/18/2021
Created: 12/22/2019
InvoiceId: 4909
InvoiceDate: 7/5/2019
Created: 12/9/2019
InvoiceId: 2567
InvoiceDate: 7/20/2018
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne Corp |
3499 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3069
InvoiceDate: 8/18/2021
Created: 12/27/2019
InvoiceId: 3485
InvoiceDate: 6/20/2018
Created: 12/12/2019
InvoiceId: 2940
InvoiceDate: 2/10/2021
Created: 12/24/2019
InvoiceId: 2532
InvoiceDate: 1/23/2020
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson Co |
3500 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4049
InvoiceDate: 7/28/2020
Created: 12/5/2019
InvoiceId: 5479
InvoiceDate: 4/27/2020
Created: 12/24/2019
InvoiceId: 5954
InvoiceDate: 2/9/2018
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne |
3501 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3186
InvoiceDate: 3/19/2018
Created: 12/9/2019
InvoiceId: 4196
InvoiceDate: 2/17/2020
Created: 12/18/2019
InvoiceId: 3815
InvoiceDate: 11/9/2021
Created: 12/23/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi Co |
3502 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4191
InvoiceDate: 10/20/2018
Created: 12/18/2019
InvoiceId: 3095
InvoiceDate: 8/5/2019
Created: 12/18/2019
InvoiceId: 2073
InvoiceDate: 9/30/2020
Created: 12/12/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise |
3503 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5081
InvoiceDate: 3/27/2021
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise Co |
3504 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3614
InvoiceDate: 2/18/2021
Created: 12/10/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson Co |
3505 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2722
InvoiceDate: 8/1/2020
Created: 12/21/2019
InvoiceId: 4932
InvoiceDate: 4/30/2019
Created: 12/15/2019
InvoiceId: 5859
InvoiceDate: 9/10/2020
Created: 12/16/2019
InvoiceId: 2734
InvoiceDate: 10/12/2021
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Ind |
3506 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3009
InvoiceDate: 4/21/2021
Created: 12/12/2019
InvoiceId: 3271
InvoiceDate: 5/7/2018
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wonka Systems |
3507 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2526
InvoiceDate: 3/19/2021
Created: 12/20/2019
InvoiceId: 3781
InvoiceDate: 11/29/2020
Created: 12/12/2019
InvoiceId: 2704
InvoiceDate: 7/25/2021
Created: 12/17/2019
InvoiceId: 2895
InvoiceDate: 10/29/2020
Created: 12/12/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Co |
3508 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2995
InvoiceDate: 5/1/2020
Created: 12/31/2019
InvoiceId: 3044
InvoiceDate: 6/10/2019
Created: 12/16/2019
InvoiceId: 3216
InvoiceDate: 8/5/2021
Created: 12/20/2019
InvoiceId: 5383
InvoiceDate: 5/26/2021
Created: 12/8/2019
InvoiceId: 5883
InvoiceDate: 9/7/2020
Created: 12/3/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
More Corporation |
3509 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2614
InvoiceDate: 4/23/2020
Created: 12/5/2019
InvoiceId: 3916
InvoiceDate: 5/23/2019
Created: 12/29/2019
InvoiceId: 3286
InvoiceDate: 4/28/2018
Created: 12/3/2019
InvoiceId: 5675
InvoiceDate: 4/3/2020
Created: 12/9/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Tyrell |
3510 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4931
InvoiceDate: 6/24/2018
Created: 12/9/2019
InvoiceId: 4601
InvoiceDate: 9/23/2019
Created: 12/19/2019
InvoiceId: 5241
InvoiceDate: 4/25/2020
Created: 12/14/2019
InvoiceId: 5899
InvoiceDate: 5/26/2020
Created: 12/19/2019
InvoiceId: 4657
InvoiceDate: 1/18/2018
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson Industries |
3511 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5139
InvoiceDate: 12/31/2020
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Systems |
3512 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5252
InvoiceDate: 6/3/2019
Created: 12/9/2019
InvoiceId: 4762
InvoiceDate: 9/22/2021
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Spacely |
3513 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2927
InvoiceDate: 5/21/2018
Created: 12/2/2019
InvoiceId: 4823
InvoiceDate: 10/28/2018
Created: 12/3/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compudata Corporation |
3514 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4583
InvoiceDate: 12/19/2019
Created: 12/31/2019
InvoiceId: 5450
InvoiceDate: 9/21/2021
Created: 12/28/2019
InvoiceId: 2018
InvoiceDate: 1/28/2020
Created: 12/16/2019
InvoiceId: 5668
InvoiceDate: 2/11/2019
Created: 12/29/2019
InvoiceId: 4664
InvoiceDate: 2/16/2021
Created: 12/9/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella LLC |
3515 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3601
InvoiceDate: 6/12/2020
Created: 12/19/2019
InvoiceId: 4605
InvoiceDate: 5/15/2019
Created: 12/8/2019
InvoiceId: 5498
InvoiceDate: 12/1/2021
Created: 12/9/2019
InvoiceId: 4487
InvoiceDate: 5/31/2021
Created: 12/2/2019
InvoiceId: 4724
InvoiceDate: 11/9/2019
Created: 12/13/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise Co |
3516 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4989
InvoiceDate: 2/24/2018
Created: 12/24/2019
InvoiceId: 3146
InvoiceDate: 8/13/2018
Created: 12/20/2019
InvoiceId: 5923
InvoiceDate: 6/30/2020
Created: 12/4/2019
InvoiceId: 3264
InvoiceDate: 10/25/2020
Created: 12/13/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
More Corp |
3517 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5493
InvoiceDate: 9/29/2020
Created: 12/27/2019
InvoiceId: 2235
InvoiceDate: 11/15/2018
Created: 12/9/2019
InvoiceId: 5723
InvoiceDate: 3/28/2019
Created: 12/5/2019
InvoiceId: 2717
InvoiceDate: 10/23/2019
Created: 12/23/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Systems |
3518 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4796
InvoiceDate: 12/10/2018
Created: 12/14/2019
InvoiceId: 5762
InvoiceDate: 1/7/2021
Created: 12/16/2019
InvoiceId: 3348
InvoiceDate: 7/16/2019
Created: 12/28/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Virtucon Co |
3519 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4135
InvoiceDate: 6/18/2019
Created: 12/14/2019
InvoiceId: 2686
InvoiceDate: 2/15/2018
Created: 12/7/2019
InvoiceId: 3442
InvoiceDate: 4/13/2019
Created: 12/4/2019
InvoiceId: 4974
InvoiceDate: 4/24/2020
Created: 12/6/2019
InvoiceId: 5730
InvoiceDate: 3/17/2019
Created: 12/25/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella Corp |
3520 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5121
InvoiceDate: 1/16/2018
Created: 12/21/2019
InvoiceId: 2180
InvoiceDate: 7/28/2020
Created: 12/16/2019
InvoiceId: 3850
InvoiceDate: 3/6/2019
Created: 12/25/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi Co |
3521 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3313
InvoiceDate: 12/17/2019
Created: 12/12/2019
InvoiceId: 4335
InvoiceDate: 3/6/2020
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Corporation |
3522 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3241
InvoiceDate: 3/10/2019
Created: 12/22/2019
InvoiceId: 2260
InvoiceDate: 3/23/2020
Created: 12/27/2019
InvoiceId: 5560
InvoiceDate: 8/12/2020
Created: 12/11/2019
InvoiceId: 2439
InvoiceDate: 3/9/2019
Created: 12/29/2019
InvoiceId: 4552
InvoiceDate: 3/15/2020
Created: 12/21/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Capital |
3523 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4721
InvoiceDate: 2/7/2021
Created: 12/7/2019
InvoiceId: 3366
InvoiceDate: 9/26/2020
Created: 12/27/2019
InvoiceId: 2250
InvoiceDate: 7/12/2021
Created: 12/28/2019
InvoiceId: 5519
InvoiceDate: 2/28/2020
Created: 12/11/2019
InvoiceId: 4227
InvoiceDate: 8/12/2018
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mega Corp |
3524 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5754
InvoiceDate: 9/7/2018
Created: 12/21/2019
InvoiceId: 2133
InvoiceDate: 6/10/2019
Created: 12/17/2019
InvoiceId: 5524
InvoiceDate: 11/21/2019
Created: 12/2/2019
InvoiceId: 2365
InvoiceDate: 1/21/2019
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Co |
3525 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3718
InvoiceDate: 6/12/2021
Created: 1/1/2020
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Inc |
3526 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2168
InvoiceDate: 1/14/2019
Created: 12/7/2019
InvoiceId: 3081
InvoiceDate: 6/14/2020
Created: 12/19/2019
InvoiceId: 3015
InvoiceDate: 10/4/2019
Created: 12/16/2019
InvoiceId: 5058
InvoiceDate: 5/26/2019
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Acme LLC |
3527 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5554
InvoiceDate: 2/8/2020
Created: 12/28/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Spacely |
3528 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4851
InvoiceDate: 5/2/2019
Created: 12/18/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Co |
3529 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3139
InvoiceDate: 11/14/2019
Created: 12/20/2019
InvoiceId: 5268
InvoiceDate: 7/27/2021
Created: 12/26/2019
InvoiceId: 3332
InvoiceDate: 9/30/2018
Created: 12/17/2019
InvoiceId: 5424
InvoiceDate: 8/18/2021
Created: 12/15/2019
InvoiceId: 5437
InvoiceDate: 3/2/2018
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stark |
3530 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3475
InvoiceDate: 11/25/2018
Created: 12/2/2019
InvoiceId: 2480
InvoiceDate: 7/5/2020
Created: 12/19/2019
InvoiceId: 3218
InvoiceDate: 12/15/2018
Created: 12/14/2019
InvoiceId: 2546
InvoiceDate: 10/29/2018
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Ind |
3531 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2383
InvoiceDate: 9/29/2021
Created: 12/21/2019
InvoiceId: 3236
InvoiceDate: 9/20/2021
Created: 12/2/2019
InvoiceId: 3408
InvoiceDate: 4/4/2018
Created: 12/18/2019
InvoiceId: 3296
InvoiceDate: 1/31/2021
Created: 12/29/2019
InvoiceId: 5401
InvoiceDate: 10/19/2020
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Spacely Co |
3532 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2583
InvoiceDate: 8/24/2018
Created: 12/15/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Co |
3533 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2647
InvoiceDate: 5/10/2020
Created: 12/26/2019
InvoiceId: 4878
InvoiceDate: 12/2/2018
Created: 12/17/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Holdings Ind |
3534 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3239
InvoiceDate: 8/4/2018
Created: 12/21/2019
InvoiceId: 4026
InvoiceDate: 7/10/2019
Created: 12/27/2019
InvoiceId: 5332
InvoiceDate: 5/17/2019
Created: 12/20/2019
InvoiceId: 3336
InvoiceDate: 6/18/2021
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Virtucon Corporation |
3535 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2836
InvoiceDate: 12/13/2018
Created: 12/20/2019
InvoiceId: 2043
InvoiceDate: 4/29/2018
Created: 12/23/2019
InvoiceId: 3613
InvoiceDate: 3/3/2018
Created: 12/19/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mega Systems |
3536 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2367
InvoiceDate: 1/22/2019
Created: 12/7/2019
InvoiceId: 4914
InvoiceDate: 8/29/2021
Created: 12/23/2019
InvoiceId: 4500
InvoiceDate: 4/25/2020
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax |
3537 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4947
InvoiceDate: 3/12/2020
Created: 12/21/2019
InvoiceId: 3010
InvoiceDate: 8/23/2020
Created: 12/5/2019
InvoiceId: 3427
InvoiceDate: 10/19/2020
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Co |
3538 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2511
InvoiceDate: 5/20/2018
Created: 12/27/2019
InvoiceId: 2036
InvoiceDate: 3/28/2018
Created: 12/30/2019
InvoiceId: 4377
InvoiceDate: 5/14/2018
Created: 12/11/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne LLC |
3539 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2202
InvoiceDate: 5/25/2019
Created: 12/26/2019
InvoiceId: 2023
InvoiceDate: 1/25/2021
Created: 12/20/2019
InvoiceId: 4827
InvoiceDate: 11/8/2018
Created: 12/21/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi |
3540 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3109
InvoiceDate: 7/12/2020
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Capital |
3541 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3019
InvoiceDate: 5/7/2020
Created: 12/2/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe Corporation |
3542 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4850
InvoiceDate: 1/14/2018
Created: 12/17/2019
InvoiceId: 5370
InvoiceDate: 10/5/2020
Created: 12/22/2019
InvoiceId: 2115
InvoiceDate: 7/28/2019
Created: 12/25/2019
InvoiceId: 3452
InvoiceDate: 1/19/2020
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
United Corp |
3543 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3822
InvoiceDate: 7/26/2018
Created: 12/10/2019
InvoiceId: 5163
InvoiceDate: 1/17/2021
Created: 12/29/2019
InvoiceId: 3920
InvoiceDate: 9/20/2020
Created: 12/3/2019
InvoiceId: 2148
InvoiceDate: 1/7/2020
Created: 12/18/2019
InvoiceId: 5169
InvoiceDate: 8/12/2020
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stark |
3544 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2931
InvoiceDate: 12/5/2019
Created: 12/23/2019
InvoiceId: 3415
InvoiceDate: 5/8/2020
Created: 12/26/2019
InvoiceId: 5944
InvoiceDate: 4/1/2018
Created: 12/15/2019
InvoiceId: 3205
InvoiceDate: 7/24/2019
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe Inc |
3545 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3014
InvoiceDate: 8/31/2019
Created: 12/6/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella LLC |
3546 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3058
InvoiceDate: 3/30/2019
Created: 12/11/2019
InvoiceId: 4841
InvoiceDate: 5/3/2018
Created: 12/7/2019
InvoiceId: 5062
InvoiceDate: 6/17/2020
Created: 12/28/2019
InvoiceId: 5517
InvoiceDate: 8/19/2020
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Inc |
3547 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4895
InvoiceDate: 8/31/2018
Created: 12/10/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Ind |
3548 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5014
InvoiceDate: 7/8/2019
Created: 12/5/2019
InvoiceId: 5745
InvoiceDate: 2/20/2018
Created: 12/17/2019
InvoiceId: 4481
InvoiceDate: 9/29/2020
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next |
3549 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5344
InvoiceDate: 7/30/2020
Created: 12/2/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi |
3550 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4363
InvoiceDate: 3/31/2021
Created: 12/19/2019
InvoiceId: 4151
InvoiceDate: 6/25/2018
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Capital Corporation |
3551 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4817
InvoiceDate: 7/5/2020
Created: 12/23/2019
InvoiceId: 3708
InvoiceDate: 3/6/2021
Created: 12/3/2019
InvoiceId: 5999
InvoiceDate: 6/14/2021
Created: 12/7/2019
InvoiceId: 3153
InvoiceDate: 8/5/2021
Created: 12/27/2019
InvoiceId: 2641
InvoiceDate: 3/22/2021
Created: 12/7/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax |
3552 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2917
InvoiceDate: 2/24/2021
Created: 12/4/2019
InvoiceId: 4729
InvoiceDate: 6/3/2021
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella Corp |
3553 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5784
InvoiceDate: 2/13/2021
Created: 12/17/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise Corporation |
3554 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4774
InvoiceDate: 8/3/2018
Created: 12/4/2019
InvoiceId: 5547
InvoiceDate: 9/21/2021
Created: 12/30/2019
InvoiceId: 4711
InvoiceDate: 6/25/2019
Created: 12/2/2019
InvoiceId: 5438
InvoiceDate: 3/9/2019
Created: 12/15/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise Industries |
3555 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3580
InvoiceDate: 12/10/2020
Created: 12/11/2019
InvoiceId: 5378
InvoiceDate: 10/26/2019
Created: 12/22/2019
InvoiceId: 2697
InvoiceDate: 9/4/2019
Created: 12/20/2019
InvoiceId: 3686
InvoiceDate: 8/15/2019
Created: 12/13/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wayne |
3556 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2765
InvoiceDate: 9/9/2021
Created: 12/24/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Inc |
3557 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2292
InvoiceDate: 9/1/2021
Created: 12/25/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
United Co |
3558 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2152
InvoiceDate: 2/20/2019
Created: 12/23/2019
InvoiceId: 3004
InvoiceDate: 11/30/2021
Created: 12/25/2019
InvoiceId: 2343
InvoiceDate: 1/26/2018
Created: 12/28/2019
InvoiceId: 5559
InvoiceDate: 3/2/2019
Created: 12/14/2019
InvoiceId: 3488
InvoiceDate: 3/22/2021
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sunrise Corporation |
3559 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2718
InvoiceDate: 12/22/2018
Created: 12/24/2019
InvoiceId: 2521
InvoiceDate: 4/1/2018
Created: 12/22/2019
InvoiceId: 2812
InvoiceDate: 12/15/2018
Created: 12/25/2019
InvoiceId: 3642
InvoiceDate: 6/29/2021
Created: 12/31/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe |
3560 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3404
InvoiceDate: 6/5/2018
Created: 12/24/2019
InvoiceId: 2084
InvoiceDate: 12/3/2018
Created: 12/2/2019
InvoiceId: 4472
InvoiceDate: 11/17/2021
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Tyrell |
3561 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4291
InvoiceDate: 6/27/2018
Created: 12/16/2019
InvoiceId: 4653
InvoiceDate: 10/11/2021
Created: 12/9/2019
InvoiceId: 3273
InvoiceDate: 4/8/2021
Created: 12/20/2019
InvoiceId: 3134
InvoiceDate: 1/1/2020
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe Corp |
3562 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4511
InvoiceDate: 10/28/2018
Created: 12/10/2019
InvoiceId: 5184
InvoiceDate: 7/29/2020
Created: 12/11/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compudata Corporation |
3563 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2676
InvoiceDate: 5/13/2021
Created: 12/17/2019
InvoiceId: 2012
InvoiceDate: 10/5/2018
Created: 12/4/2019
InvoiceId: 5521
InvoiceDate: 10/29/2020
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MultiNational Co |
3564 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5975
InvoiceDate: 1/18/2021
Created: 12/10/2019
InvoiceId: 5672
InvoiceDate: 11/11/2018
Created: 12/25/2019
InvoiceId: 5695
InvoiceDate: 5/7/2020
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella |
3565 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5366
InvoiceDate: 11/3/2019
Created: 12/17/2019
InvoiceId: 5607
InvoiceDate: 7/6/2020
Created: 12/17/2019
InvoiceId: 3487
InvoiceDate: 4/23/2019
Created: 12/29/2019
InvoiceId: 2386
InvoiceDate: 8/26/2018
Created: 12/7/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Acme |
3566 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5371
InvoiceDate: 7/18/2019
Created: 12/16/2019
InvoiceId: 5892
InvoiceDate: 7/18/2019
Created: 12/16/2019
InvoiceId: 3375
InvoiceDate: 5/22/2018
Created: 12/23/2019
InvoiceId: 4259
InvoiceDate: 1/15/2018
Created: 12/8/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Acme Co |
3567 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5419
InvoiceDate: 4/27/2019
Created: 12/5/2019
InvoiceId: 4121
InvoiceDate: 9/4/2021
Created: 12/5/2019
InvoiceId: 4750
InvoiceDate: 6/24/2018
Created: 12/24/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stark |
3568 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2519
InvoiceDate: 1/8/2018
Created: 12/17/2019
InvoiceId: 5034
InvoiceDate: 5/9/2019
Created: 12/26/2019
InvoiceId: 5943
InvoiceDate: 8/14/2020
Created: 12/21/2019
InvoiceId: 2646
InvoiceDate: 4/15/2020
Created: 12/14/2019
InvoiceId: 5127
InvoiceDate: 9/14/2021
Created: 12/15/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Systems |
3569 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4558
InvoiceDate: 12/13/2019
Created: 12/6/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson LLC |
3570 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4056
InvoiceDate: 1/17/2018
Created: 12/19/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
City |
3571 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2864
InvoiceDate: 8/30/2019
Created: 12/29/2019
InvoiceId: 4371
InvoiceDate: 8/5/2018
Created: 12/3/2019
InvoiceId: 4141
InvoiceDate: 10/25/2019
Created: 12/6/2019
InvoiceId: 3378
InvoiceDate: 12/19/2019
Created: 12/16/2019
InvoiceId: 2610
InvoiceDate: 11/25/2018
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi Inc |
3572 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5801
InvoiceDate: 10/16/2020
Created: 12/27/2019
InvoiceId: 4434
InvoiceDate: 2/13/2019
Created: 12/29/2019
InvoiceId: 2973
InvoiceDate: 4/15/2019
Created: 12/30/2019
InvoiceId: 5167
InvoiceDate: 11/17/2018
Created: 12/25/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson |
3573 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5423
InvoiceDate: 7/25/2018
Created: 12/5/2019
InvoiceId: 3972
InvoiceDate: 7/4/2020
Created: 12/2/2019
InvoiceId: 4147
InvoiceDate: 5/14/2018
Created: 12/3/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compudata |
3574 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3862
InvoiceDate: 2/5/2019
Created: 12/3/2019
InvoiceId: 3041
InvoiceDate: 3/25/2021
Created: 12/12/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi |
3575 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4927
InvoiceDate: 7/4/2018
Created: 12/13/2019
InvoiceId: 4347
InvoiceDate: 6/9/2020
Created: 12/2/2019
InvoiceId: 2010
InvoiceDate: 12/3/2020
Created: 12/14/2019
InvoiceId: 2553
InvoiceDate: 6/7/2021
Created: 12/17/2019
InvoiceId: 5231
InvoiceDate: 12/5/2019
Created: 12/19/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Umbrella Co |
3576 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5285
InvoiceDate: 5/1/2019
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson |
3577 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2257
InvoiceDate: 11/30/2019
Created: 12/27/2019
InvoiceId: 5339
InvoiceDate: 1/6/2020
Created: 12/4/2019
InvoiceId: 3283
InvoiceDate: 9/9/2018
Created: 12/7/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
More Ind |
3578 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4612
InvoiceDate: 10/30/2018
Created: 12/27/2019
InvoiceId: 4200
InvoiceDate: 10/1/2018
Created: 12/17/2019
InvoiceId: 5932
InvoiceDate: 7/22/2018
Created: 12/14/2019
InvoiceId: 2090
InvoiceDate: 1/7/2021
Created: 12/30/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe Corp |
3579 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5575
InvoiceDate: 11/24/2021
Created: 12/20/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Corp |
3580 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3507
InvoiceDate: 11/20/2018
Created: 12/17/2019
InvoiceId: 5443
InvoiceDate: 1/8/2020
Created: 12/12/2019
InvoiceId: 2303
InvoiceDate: 7/9/2019
Created: 12/18/2019
InvoiceId: 2334
InvoiceDate: 10/1/2021
Created: 1/1/2020
InvoiceId: 2176
InvoiceDate: 3/22/2020
Created: 12/9/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Acme Ind |
3581 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4099
InvoiceDate: 11/1/2019
Created: 12/29/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax LLC |
3582 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3387
InvoiceDate: 8/18/2020
Created: 12/26/2019
InvoiceId: 5348
InvoiceDate: 4/22/2021
Created: 12/13/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Virtucon Systems |
3583 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2337
InvoiceDate: 6/3/2018
Created: 12/4/2019
InvoiceId: 5360
InvoiceDate: 7/6/2020
Created: 12/5/2019
InvoiceId: 2164
InvoiceDate: 8/18/2020
Created: 12/28/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CyberGlobe |
3584 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5612
InvoiceDate: 5/31/2021
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Virtucon |
3585 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5480
InvoiceDate: 9/24/2020
Created: 12/26/2019
InvoiceId: 3029
InvoiceDate: 7/20/2021
Created: 12/30/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Primo Corp |
3586 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2290
InvoiceDate: 9/30/2018
Created: 12/23/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Jackson Corporation |
3587 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 3652
InvoiceDate: 10/3/2018
Created: 12/21/2019
InvoiceId: 5216
InvoiceDate: 12/5/2021
Created: 12/8/2019
InvoiceId: 2978
InvoiceDate: 12/9/2021
Created: 12/24/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mega Co |
3588 | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4696
InvoiceDate: 11/11/2020
Created: 12/19/2019
InvoiceId: 3590
InvoiceDate: 1/30/2020
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mega Systems |
3589 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2489
InvoiceDate: 5/27/2019
Created: 12/2/2019
InvoiceId: 2884
InvoiceDate: 1/31/2019
Created: 12/23/2019
InvoiceId: 4256
InvoiceDate: 11/25/2018
Created: 12/27/2019
InvoiceId: 3436
InvoiceDate: 11/13/2019
Created: 12/27/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oscorp Co |
3590 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2897
InvoiceDate: 9/6/2019
Created: 12/29/2019
InvoiceId: 4116
InvoiceDate: 3/7/2021
Created: 12/25/2019
InvoiceId: 5341
InvoiceDate: 7/15/2018
Created: 12/8/2019
InvoiceId: 3570
InvoiceDate: 4/1/2019
Created: 12/19/2019
InvoiceId: 3374
InvoiceDate: 9/1/2021
Created: 12/26/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Globax Corporation |
3591 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2901
InvoiceDate: 12/31/2018
Created: 12/30/2019
InvoiceId: 5174
InvoiceDate: 2/8/2019
Created: 12/22/2019
InvoiceId: 4673
InvoiceDate: 12/18/2019
Created: 12/22/2019
InvoiceId: 4929
InvoiceDate: 2/26/2018
Created: 12/28/2019
InvoiceId: 2071
InvoiceDate: 10/31/2020
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Nakatomi Co |
3592 | 1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5631
InvoiceDate: 2/12/2020
Created: 12/5/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Co |
3593 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 2620
InvoiceDate: 5/24/2018
Created: 12/11/2019
InvoiceId: 3765
InvoiceDate: 6/2/2021
Created: 12/31/2019
InvoiceId: 3191
InvoiceDate: 12/9/2021
Created: 12/14/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parallax Co |
3594 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5649
InvoiceDate: 6/29/2018
Created: 12/27/2019
InvoiceId: 4182
InvoiceDate: 1/2/2019
Created: 12/20/2019
InvoiceId: 5980
InvoiceDate: 9/3/2020
Created: 12/22/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next Inc |
3595 | 5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5654
InvoiceDate: 5/2/2021
Created: 12/23/2019
InvoiceId: 3502
InvoiceDate: 8/4/2018
Created: 12/4/2019
InvoiceId: 3309
InvoiceDate: 3/13/2018
Created: 12/14/2019
InvoiceId: 3231
InvoiceDate: 4/25/2020
Created: 12/27/2019
InvoiceId: 3891
InvoiceDate: 6/9/2020
Created: 12/18/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next Co |
3596 | 3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 5329
InvoiceDate: 3/26/2020
Created: 12/8/2019
InvoiceId: 5129
InvoiceDate: 1/14/2018
Created: 12/18/2019
InvoiceId: 4251
InvoiceDate: 6/14/2018
Created: 12/6/2019
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MultiNational Ind |
3597 | 4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InvoiceId: 4987
InvoiceDate: 7/5/2019
Created: 12/11/2019
InvoiceId: 3607
InvoiceDate: 12/28/2020
Created: 12/22/2019
InvoiceId: 2229
InvoiceDate: 9/26/2021
Created: 12/17/2019
|