-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdopplergui.pro
executable file
·1711 lines (1709 loc) · 98.9 KB
/
dopplergui.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
######################################################################
# Automatically generated by qmake (3.0) Sun May 20 17:25:33 2018
######################################################################
TEMPLATE = app
TARGET = DPRGUI
INCLUDEPATH += .
# Input
HEADERS += libqrencode/bitstream.h \
libqrencode/mask.h \
libqrencode/mmask.h \
libqrencode/mqrspec.h \
libqrencode/qrencode.h \
libqrencode/qrencode_inner.h \
libqrencode/qrinput.h \
libqrencode/qrspec.h \
libqrencode/rsecc.h \
libqrencode/split.h \
src/AliasProvider.h \
src/CommandLineParser.h \
src/CryptoNoteWrapper.h \
src/CurrencyAdapter.h \
src/LoggerAdapter.h \
src/Miner.h \
src/miniupnpcstrings.h \
src/NodeAdapter.h \
src/Settings.h \
src/SignalHandler.h \
src/StratumClient.h \
src/WalletAdapter.h \
src/Worker.h \
cryptonite/include/BlockchainExplorerData.h \
cryptonite/include/CryptoNote.h \
cryptonite/include/CryptoTypes.h \
cryptonite/include/IBlockchainExplorer.h \
cryptonite/include/INode.h \
cryptonite/include/IObservable.h \
cryptonite/include/IStreamSerializable.h \
cryptonite/include/ITransaction.h \
cryptonite/include/ITransfersContainer.h \
cryptonite/include/ITransfersSynchronizer.h \
cryptonite/include/IWallet.h \
cryptonite/include/IWalletLegacy.h \
cryptonite/src/CryptoNoteConfig.h \
cryptonite/tests/Io.h \
cryptonote_orig/include/BlockchainExplorerData.h \
cryptonote_orig/include/CryptoNote.h \
cryptonote_orig/include/CryptoTypes.h \
cryptonote_orig/include/IBlockchainExplorer.h \
cryptonote_orig/include/INode.h \
cryptonote_orig/include/IObservable.h \
cryptonote_orig/include/IStreamSerializable.h \
cryptonote_orig/include/ITransaction.h \
cryptonote_orig/include/ITransfersContainer.h \
cryptonote_orig/include/ITransfersSynchronizer.h \
cryptonote_orig/include/IWallet.h \
cryptonote_orig/include/IWalletLegacy.h \
cryptonote_orig/src/CryptoNoteConfig.h \
cryptonote_orig/tests/Io.h \
libqrencode/tests/common.h \
libqrencode/tests/datachunk.h \
libqrencode/tests/decoder.h \
libqrencode/tests/rscode.h \
libqrencode/tests/rsecc_decoder.h \
src/gui/AboutDialog.h \
src/gui/AddressBookDialog.h \
src/gui/AddressBookFrame.h \
src/gui/AddressBookModel.h \
src/gui/AnimatedLabel.h \
src/gui/ChangePasswordDialog.h \
src/gui/DepositDetailsDialog.h \
src/gui/DepositListModel.h \
src/gui/DepositModel.h \
src/gui/DepositsFrame.h \
src/gui/ExitWidget.h \
src/gui/ImportKeyDialog.h \
src/gui/MainWindow.h \
src/gui/Message.h \
src/gui/MessageAddressFrame.h \
src/gui/MessageDetailsDialog.h \
src/gui/MessagesFrame.h \
src/gui/MessagesModel.h \
src/gui/MiningFrame.h \
src/gui/NewAddressDialog.h \
src/gui/NewPasswordDialog.h \
src/gui/NewPoolDialog.h \
src/gui/OverviewFrame.h \
src/gui/PasswordDialog.h \
src/gui/PoolModel.h \
src/gui/QRLabel.h \
src/gui/ReceiveFrame.h \
src/gui/RecentTransactionsModel.h \
src/gui/SendFrame.h \
src/gui/SendMessageFrame.h \
src/gui/SortedDepositModel.h \
src/gui/SortedMessagesModel.h \
src/gui/SortedTransactionsModel.h \
src/gui/TransactionDetailsDialog.h \
src/gui/TransactionFrame.h \
src/gui/TransactionsFrame.h \
src/gui/TransactionsListModel.h \
src/gui/TransactionsModel.h \
src/gui/TransferFrame.h \
src/gui/VisibleMessagesModel.h \
src/gui/WalletEvents.h \
cryptonite/build/release/miniupnpcstrings.h \
cryptonite/external/google/type_traits.h \
cryptonite/external/miniupnpc/bsdqueue.h \
cryptonite/external/miniupnpc/codelength.h \
cryptonite/external/miniupnpc/connecthostport.h \
cryptonite/external/miniupnpc/declspec.h \
cryptonite/external/miniupnpc/igd_desc_parse.h \
cryptonite/external/miniupnpc/minisoap.h \
cryptonite/external/miniupnpc/minissdpc.h \
cryptonite/external/miniupnpc/miniupnpc.h \
cryptonite/external/miniupnpc/miniupnpctypes.h \
cryptonite/external/miniupnpc/miniwget.h \
cryptonite/external/miniupnpc/minixml.h \
cryptonite/external/miniupnpc/portlistingparse.h \
cryptonite/external/miniupnpc/receivedata.h \
cryptonite/external/miniupnpc/upnpcommands.h \
cryptonite/external/miniupnpc/upnperrors.h \
cryptonite/external/miniupnpc/upnpreplyparse.h \
cryptonite/src/BlockchainExplorer/BlockchainExplorer.h \
cryptonite/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h \
cryptonite/src/BlockchainExplorer/BlockchainExplorerErrors.h \
cryptonite/src/Common/ArrayRef.h \
cryptonite/src/Common/ArrayView.h \
cryptonite/src/Common/Base58.h \
cryptonite/src/Common/BlockingQueue.h \
cryptonite/src/Common/CommandLine.h \
cryptonite/src/Common/ConsoleHandler.h \
cryptonite/src/Common/ConsoleTools.h \
cryptonite/src/Common/IInputStream.h \
cryptonite/src/Common/int-util.h \
cryptonite/src/Common/IOutputStream.h \
cryptonite/src/Common/JsonValue.h \
cryptonite/src/Common/Math.h \
cryptonite/src/Common/MemoryInputStream.h \
cryptonite/src/Common/ObserverManager.h \
cryptonite/src/Common/PathTools.h \
cryptonite/src/Common/pod-class.h \
cryptonite/src/Common/ScopeExit.h \
cryptonite/src/Common/ShuffleGenerator.h \
cryptonite/src/Common/SignalHandler.h \
cryptonite/src/Common/static_assert.h \
cryptonite/src/Common/StdInputStream.h \
cryptonite/src/Common/StdOutputStream.h \
cryptonite/src/Common/StreamTools.h \
cryptonite/src/Common/StringBuffer.h \
cryptonite/src/Common/StringInputStream.h \
cryptonite/src/Common/StringOutputStream.h \
cryptonite/src/Common/StringTools.h \
cryptonite/src/Common/StringView.h \
cryptonite/src/Common/Util.h \
cryptonite/src/Common/Varint.h \
cryptonite/src/Common/VectorOutputStream.h \
cryptonite/src/crypto/aesb.h \
cryptonite/src/crypto/blake256.h \
cryptonite/src/crypto/chacha.h \
cryptonite/src/crypto/crypto-ops.h \
cryptonite/src/crypto/crypto.h \
cryptonite/src/crypto/generic-ops.h \
cryptonite/src/crypto/groestl.h \
cryptonite/src/crypto/groestl_tables.h \
cryptonite/src/crypto/hash-ops.h \
cryptonite/src/crypto/hash.h \
cryptonite/src/crypto/initializer.h \
cryptonite/src/crypto/jh.h \
cryptonite/src/crypto/keccak.h \
cryptonite/src/crypto/oaes_config.h \
cryptonite/src/crypto/oaes_lib.h \
cryptonite/src/crypto/random.h \
cryptonite/src/crypto/skein.h \
cryptonite/src/crypto/skein_port.h \
cryptonite/src/CryptoNoteCore/Account.h \
cryptonite/src/CryptoNoteCore/Blockchain.h \
cryptonite/src/CryptoNoteCore/BlockchainIndices.h \
cryptonite/src/CryptoNoteCore/BlockchainMessages.h \
cryptonite/src/CryptoNoteCore/BlockIndex.h \
cryptonite/src/CryptoNoteCore/Checkpoints.h \
cryptonite/src/CryptoNoteCore/Core.h \
cryptonite/src/CryptoNoteCore/CoreConfig.h \
cryptonite/src/CryptoNoteCore/CryptoNoteBasic.h \
cryptonite/src/CryptoNoteCore/CryptoNoteBasicImpl.h \
cryptonite/src/CryptoNoteCore/CryptoNoteFormatUtils.h \
cryptonite/src/CryptoNoteCore/CryptoNoteSerialization.h \
cryptonite/src/CryptoNoteCore/CryptoNoteStatInfo.h \
cryptonite/src/CryptoNoteCore/CryptoNoteTools.h \
cryptonite/src/CryptoNoteCore/Currency.h \
cryptonite/src/CryptoNoteCore/DepositIndex.h \
cryptonite/src/CryptoNoteCore/Difficulty.h \
cryptonite/src/CryptoNoteCore/IBlock.h \
cryptonite/src/CryptoNoteCore/IBlockchainStorageObserver.h \
cryptonite/src/CryptoNoteCore/ICore.h \
cryptonite/src/CryptoNoteCore/ICoreObserver.h \
cryptonite/src/CryptoNoteCore/IMinerHandler.h \
cryptonite/src/CryptoNoteCore/IntrusiveLinkedList.h \
cryptonite/src/CryptoNoteCore/ITimeProvider.h \
cryptonite/src/CryptoNoteCore/ITransactionValidator.h \
cryptonite/src/CryptoNoteCore/ITxPoolObserver.h \
cryptonite/src/CryptoNoteCore/MessageQueue.h \
cryptonite/src/CryptoNoteCore/Miner.h \
cryptonite/src/CryptoNoteCore/MinerConfig.h \
cryptonite/src/CryptoNoteCore/OnceInInterval.h \
cryptonite/src/CryptoNoteCore/SwappedMap.h \
cryptonite/src/CryptoNoteCore/SwappedVector.h \
cryptonite/src/CryptoNoteCore/TransactionApi.h \
cryptonite/src/CryptoNoteCore/TransactionApiExtra.h \
cryptonite/src/CryptoNoteCore/TransactionExtra.h \
cryptonite/src/CryptoNoteCore/TransactionPool.h \
cryptonite/src/CryptoNoteCore/TransactionUtils.h \
cryptonite/src/CryptoNoteCore/UpgradeDetector.h \
cryptonite/src/CryptoNoteCore/VerificationContext.h \
cryptonite/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h \
cryptonite/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h \
cryptonite/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h \
cryptonite/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h \
cryptonite/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h \
cryptonite/src/Daemon/DaemonCommandsHandler.h \
cryptonite/src/HTTP/HttpParser.h \
cryptonite/src/HTTP/HttpParserErrorCodes.h \
cryptonite/src/HTTP/HttpRequest.h \
cryptonite/src/HTTP/HttpResponse.h \
cryptonite/src/InProcessNode/InProcessNode.h \
cryptonite/src/InProcessNode/InProcessNodeErrors.h \
cryptonite/src/JsonRpcServer/JsonRpcServer.h \
cryptonite/src/Logging/CommonLogger.h \
cryptonite/src/Logging/ConsoleLogger.h \
cryptonite/src/Logging/FileLogger.h \
cryptonite/src/Logging/ILogger.h \
cryptonite/src/Logging/LoggerGroup.h \
cryptonite/src/Logging/LoggerManager.h \
cryptonite/src/Logging/LoggerMessage.h \
cryptonite/src/Logging/LoggerRef.h \
cryptonite/src/Logging/StreamLogger.h \
cryptonite/src/Miner/BlockchainMonitor.h \
cryptonite/src/Miner/Miner.h \
cryptonite/src/Miner/MinerEvent.h \
cryptonite/src/Miner/MinerManager.h \
cryptonite/src/Miner/MiningConfig.h \
cryptonite/src/NodeRpcProxy/NodeErrors.h \
cryptonite/src/NodeRpcProxy/NodeRpcProxy.h \
cryptonite/src/P2p/ConnectionContext.h \
cryptonite/src/P2p/IP2pNodeInternal.h \
cryptonite/src/P2p/LevinProtocol.h \
cryptonite/src/P2p/NetNode.h \
cryptonite/src/P2p/NetNodeCommon.h \
cryptonite/src/P2p/NetNodeConfig.h \
cryptonite/src/P2p/P2pConnectionProxy.h \
cryptonite/src/P2p/P2pContext.h \
cryptonite/src/P2p/P2pContextOwner.h \
cryptonite/src/P2p/P2pInterfaces.h \
cryptonite/src/P2p/P2pNetworks.h \
cryptonite/src/P2p/P2pNode.h \
cryptonite/src/P2p/P2pNodeConfig.h \
cryptonite/src/P2p/P2pProtocolDefinitions.h \
cryptonite/src/P2p/P2pProtocolTypes.h \
cryptonite/src/P2p/PeerListManager.h \
cryptonite/src/PaymentGate/NodeFactory.h \
cryptonite/src/PaymentGate/PaymentServiceJsonRpcMessages.h \
cryptonite/src/PaymentGate/PaymentServiceJsonRpcServer.h \
cryptonite/src/PaymentGate/WalletFactory.h \
cryptonite/src/PaymentGate/WalletService.h \
cryptonite/src/PaymentGate/WalletServiceErrorCategory.h \
cryptonite/src/PaymentGateService/ConfigurationManager.h \
cryptonite/src/PaymentGateService/PaymentGateService.h \
cryptonite/src/PaymentGateService/PaymentServiceConfiguration.h \
cryptonite/src/PaymentGateService/RpcNodeConfiguration.h \
cryptonite/src/Rpc/CoreRpcServerCommandsDefinitions.h \
cryptonite/src/Rpc/CoreRpcServerErrorCodes.h \
cryptonite/src/Rpc/HttpClient.h \
cryptonite/src/Rpc/HttpServer.h \
cryptonite/src/Rpc/JsonRpc.h \
cryptonite/src/Rpc/RpcServer.h \
cryptonite/src/Rpc/RpcServerConfig.h \
cryptonite/src/Serialization/BinaryInputStreamSerializer.h \
cryptonite/src/Serialization/BinaryOutputStreamSerializer.h \
cryptonite/src/Serialization/BinarySerializationTools.h \
cryptonite/src/Serialization/ISerializer.h \
cryptonite/src/Serialization/IStream.h \
cryptonite/src/Serialization/JsonInputStreamSerializer.h \
cryptonite/src/Serialization/JsonInputValueSerializer.h \
cryptonite/src/Serialization/JsonOutputStreamSerializer.h \
cryptonite/src/Serialization/KVBinaryCommon.h \
cryptonite/src/Serialization/KVBinaryInputStreamSerializer.h \
cryptonite/src/Serialization/KVBinaryOutputStreamSerializer.h \
cryptonite/src/Serialization/MemoryStream.h \
cryptonite/src/Serialization/SerializationOverloads.h \
cryptonite/src/Serialization/SerializationTools.h \
cryptonite/src/SimpleWallet/PasswordContainer.h \
cryptonite/src/SimpleWallet/SimpleWallet.h \
cryptonite/src/System/Context.h \
cryptonite/src/System/ContextGroup.h \
cryptonite/src/System/ContextGroupTimeout.h \
cryptonite/src/System/Event.h \
cryptonite/src/System/EventLock.h \
cryptonite/src/System/InterruptedException.h \
cryptonite/src/System/Ipv4Address.h \
cryptonite/src/System/OperationTimeout.h \
cryptonite/src/System/RemoteContext.h \
cryptonite/src/System/RemoteEventLock.h \
cryptonite/src/System/TcpStream.h \
cryptonite/src/Transfers/BlockchainSynchronizer.h \
cryptonite/src/Transfers/CommonTypes.h \
cryptonite/src/Transfers/IBlockchainSynchronizer.h \
cryptonite/src/Transfers/IObservableImpl.h \
cryptonite/src/Transfers/SynchronizationState.h \
cryptonite/src/Transfers/TransfersConsumer.h \
cryptonite/src/Transfers/TransfersContainer.h \
cryptonite/src/Transfers/TransfersSubscription.h \
cryptonite/src/Transfers/TransfersSynchronizer.h \
cryptonite/src/Transfers/TypeHelpers.h \
cryptonite/src/Wallet/IFusionManager.h \
cryptonite/src/Wallet/LegacyKeysImporter.h \
cryptonite/src/Wallet/WalletAsyncContextCounter.h \
cryptonite/src/Wallet/WalletErrors.h \
cryptonite/src/Wallet/WalletGreen.h \
cryptonite/src/Wallet/WalletIndices.h \
cryptonite/src/Wallet/WalletRpcServer.h \
cryptonite/src/Wallet/WalletRpcServerCommandsDefinitions.h \
cryptonite/src/Wallet/WalletRpcServerErrorCodes.h \
cryptonite/src/Wallet/WalletSerialization.h \
cryptonite/src/Wallet/WalletUtils.h \
cryptonite/src/WalletLegacy/KeysStorage.h \
cryptonite/src/WalletLegacy/WalletDepositInfo.h \
cryptonite/src/WalletLegacy/WalletHelper.h \
cryptonite/src/WalletLegacy/WalletLegacy.h \
cryptonite/src/WalletLegacy/WalletLegacyEvent.h \
cryptonite/src/WalletLegacy/WalletLegacySerialization.h \
cryptonite/src/WalletLegacy/WalletLegacySerializer.h \
cryptonite/src/WalletLegacy/WalletRequest.h \
cryptonite/src/WalletLegacy/WalletSendTransactionContext.h \
cryptonite/src/WalletLegacy/WalletTransactionSender.h \
cryptonite/src/WalletLegacy/WalletUnconfirmedTransactions.h \
cryptonite/src/WalletLegacy/WalletUserTransactionsCache.h \
cryptonite/src/WalletLegacy/WalletUtils.h \
cryptonite/tests/CoreTests/AccountBoostSerialization.h \
cryptonite/tests/CoreTests/BlockReward.h \
cryptonite/tests/CoreTests/BlockValidation.h \
cryptonite/tests/CoreTests/BoostSerializationHelper.h \
cryptonite/tests/CoreTests/Chaingen.h \
cryptonite/tests/CoreTests/Chaingen001.h \
cryptonite/tests/CoreTests/ChainSplit1.h \
cryptonite/tests/CoreTests/ChainSwitch1.h \
cryptonite/tests/CoreTests/CryptoNoteBoostSerialization.h \
cryptonite/tests/CoreTests/Deposit.h \
cryptonite/tests/CoreTests/DoubleSpend.h \
cryptonite/tests/CoreTests/IntegerOverflow.h \
cryptonite/tests/CoreTests/RandomOuts.h \
cryptonite/tests/CoreTests/RingSignature.h \
cryptonite/tests/CoreTests/TestGenerator.h \
cryptonite/tests/CoreTests/TransactionBuilder.h \
cryptonite/tests/CoreTests/TransactionTests.h \
cryptonite/tests/CoreTests/TransactionValidation.h \
cryptonite/tests/CoreTests/UnorderedContainersBoostSerialization.h \
cryptonite/tests/CoreTests/Upgrade.h \
cryptonite/tests/crypto/crypto-tests.h \
cryptonite/tests/IntegrationTestLib/BaseFunctionalTests.h \
cryptonite/tests/IntegrationTestLib/InProcTestNode.h \
cryptonite/tests/IntegrationTestLib/Logger.h \
cryptonite/tests/IntegrationTestLib/NetworkConfiguration.h \
cryptonite/tests/IntegrationTestLib/NodeCallback.h \
cryptonite/tests/IntegrationTestLib/NodeObserver.h \
cryptonite/tests/IntegrationTestLib/ObservableValue.h \
cryptonite/tests/IntegrationTestLib/Process.h \
cryptonite/tests/IntegrationTestLib/RPCTestNode.h \
cryptonite/tests/IntegrationTestLib/TestNetwork.h \
cryptonite/tests/IntegrationTestLib/TestNode.h \
cryptonite/tests/IntegrationTestLib/TestWalletLegacy.h \
cryptonite/tests/IntegrationTests/BaseTests.h \
cryptonite/tests/IntegrationTests/WalletLegacyObserver.h \
cryptonite/tests/PerformanceTests/CheckRingSignature.h \
cryptonite/tests/PerformanceTests/ConstructTransaction.h \
cryptonite/tests/PerformanceTests/CryptoNoteSlowHash.h \
cryptonite/tests/PerformanceTests/DerivePublicKey.h \
cryptonite/tests/PerformanceTests/DeriveSecretKey.h \
cryptonite/tests/PerformanceTests/GenerateKeyDerivation.h \
cryptonite/tests/PerformanceTests/GenerateKeyImage.h \
cryptonite/tests/PerformanceTests/GenerateKeyImageHelper.h \
cryptonite/tests/PerformanceTests/IsOutToAccount.h \
cryptonite/tests/PerformanceTests/MultiTransactionTestBase.h \
cryptonite/tests/PerformanceTests/PerformanceTests.h \
cryptonite/tests/PerformanceTests/PerformanceUtils.h \
cryptonite/tests/PerformanceTests/SingleTransactionTestBase.h \
cryptonite/tests/TestGenerator/TestGenerator.h \
cryptonite/tests/TransfersTests/Globals.h \
cryptonite/tests/UnitTests/EventWaiter.h \
cryptonite/tests/UnitTests/ICoreStub.h \
cryptonite/tests/UnitTests/ICryptoNoteProtocolQueryStub.h \
cryptonite/tests/UnitTests/INodeStubs.h \
cryptonite/tests/UnitTests/TestBlockchainGenerator.h \
cryptonite/tests/UnitTests/TransactionApiHelpers.h \
cryptonite/tests/UnitTests/TransfersObserver.h \
cryptonite/tests/UnitTests/UnitTestsUtils.h \
cryptonote_orig/external/google/type_traits.h \
cryptonote_orig/external/miniupnpc/bsdqueue.h \
cryptonote_orig/external/miniupnpc/codelength.h \
cryptonote_orig/external/miniupnpc/connecthostport.h \
cryptonote_orig/external/miniupnpc/declspec.h \
cryptonote_orig/external/miniupnpc/igd_desc_parse.h \
cryptonote_orig/external/miniupnpc/minisoap.h \
cryptonote_orig/external/miniupnpc/minissdpc.h \
cryptonote_orig/external/miniupnpc/miniupnpc.h \
cryptonote_orig/external/miniupnpc/miniupnpctypes.h \
cryptonote_orig/external/miniupnpc/miniwget.h \
cryptonote_orig/external/miniupnpc/minixml.h \
cryptonote_orig/external/miniupnpc/portlistingparse.h \
cryptonote_orig/external/miniupnpc/receivedata.h \
cryptonote_orig/external/miniupnpc/upnpcommands.h \
cryptonote_orig/external/miniupnpc/upnperrors.h \
cryptonote_orig/external/miniupnpc/upnpreplyparse.h \
cryptonote_orig/src/BlockchainExplorer/BlockchainExplorer.h \
cryptonote_orig/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h \
cryptonote_orig/src/BlockchainExplorer/BlockchainExplorerErrors.h \
cryptonote_orig/src/Common/ArrayRef.h \
cryptonote_orig/src/Common/ArrayView.h \
cryptonote_orig/src/Common/Base58.h \
cryptonote_orig/src/Common/BlockingQueue.h \
cryptonote_orig/src/Common/CommandLine.h \
cryptonote_orig/src/Common/ConsoleHandler.h \
cryptonote_orig/src/Common/ConsoleTools.h \
cryptonote_orig/src/Common/IInputStream.h \
cryptonote_orig/src/Common/int-util.h \
cryptonote_orig/src/Common/IOutputStream.h \
cryptonote_orig/src/Common/JsonValue.h \
cryptonote_orig/src/Common/Math.h \
cryptonote_orig/src/Common/MemoryInputStream.h \
cryptonote_orig/src/Common/ObserverManager.h \
cryptonote_orig/src/Common/PathTools.h \
cryptonote_orig/src/Common/pod-class.h \
cryptonote_orig/src/Common/ScopeExit.h \
cryptonote_orig/src/Common/ShuffleGenerator.h \
cryptonote_orig/src/Common/SignalHandler.h \
cryptonote_orig/src/Common/static_assert.h \
cryptonote_orig/src/Common/StdInputStream.h \
cryptonote_orig/src/Common/StdOutputStream.h \
cryptonote_orig/src/Common/StreamTools.h \
cryptonote_orig/src/Common/StringBuffer.h \
cryptonote_orig/src/Common/StringInputStream.h \
cryptonote_orig/src/Common/StringOutputStream.h \
cryptonote_orig/src/Common/StringTools.h \
cryptonote_orig/src/Common/StringView.h \
cryptonote_orig/src/Common/Util.h \
cryptonote_orig/src/Common/Varint.h \
cryptonote_orig/src/Common/VectorOutputStream.h \
cryptonote_orig/src/crypto/aesb.h \
cryptonote_orig/src/crypto/blake256.h \
cryptonote_orig/src/crypto/chacha.h \
cryptonote_orig/src/crypto/crypto-ops.h \
cryptonote_orig/src/crypto/crypto.h \
cryptonote_orig/src/crypto/generic-ops.h \
cryptonote_orig/src/crypto/groestl.h \
cryptonote_orig/src/crypto/groestl_tables.h \
cryptonote_orig/src/crypto/hash-ops.h \
cryptonote_orig/src/crypto/hash.h \
cryptonote_orig/src/crypto/initializer.h \
cryptonote_orig/src/crypto/jh.h \
cryptonote_orig/src/crypto/keccak.h \
cryptonote_orig/src/crypto/oaes_config.h \
cryptonote_orig/src/crypto/oaes_lib.h \
cryptonote_orig/src/crypto/random.h \
cryptonote_orig/src/crypto/skein.h \
cryptonote_orig/src/crypto/skein_port.h \
cryptonote_orig/src/CryptoNoteCore/Account.h \
cryptonote_orig/src/CryptoNoteCore/Blockchain.h \
cryptonote_orig/src/CryptoNoteCore/BlockchainIndices.h \
cryptonote_orig/src/CryptoNoteCore/BlockchainMessages.h \
cryptonote_orig/src/CryptoNoteCore/BlockIndex.h \
cryptonote_orig/src/CryptoNoteCore/Checkpoints.h \
cryptonote_orig/src/CryptoNoteCore/Core.h \
cryptonote_orig/src/CryptoNoteCore/CoreConfig.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteBasic.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteBasicImpl.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteFormatUtils.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteSerialization.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteStatInfo.h \
cryptonote_orig/src/CryptoNoteCore/CryptoNoteTools.h \
cryptonote_orig/src/CryptoNoteCore/Currency.h \
cryptonote_orig/src/CryptoNoteCore/DepositIndex.h \
cryptonote_orig/src/CryptoNoteCore/Difficulty.h \
cryptonote_orig/src/CryptoNoteCore/IBlock.h \
cryptonote_orig/src/CryptoNoteCore/IBlockchainStorageObserver.h \
cryptonote_orig/src/CryptoNoteCore/ICore.h \
cryptonote_orig/src/CryptoNoteCore/ICoreObserver.h \
cryptonote_orig/src/CryptoNoteCore/IMinerHandler.h \
cryptonote_orig/src/CryptoNoteCore/IntrusiveLinkedList.h \
cryptonote_orig/src/CryptoNoteCore/ITimeProvider.h \
cryptonote_orig/src/CryptoNoteCore/ITransactionValidator.h \
cryptonote_orig/src/CryptoNoteCore/ITxPoolObserver.h \
cryptonote_orig/src/CryptoNoteCore/MessageQueue.h \
cryptonote_orig/src/CryptoNoteCore/Miner.h \
cryptonote_orig/src/CryptoNoteCore/MinerConfig.h \
cryptonote_orig/src/CryptoNoteCore/OnceInInterval.h \
cryptonote_orig/src/CryptoNoteCore/SwappedMap.h \
cryptonote_orig/src/CryptoNoteCore/SwappedVector.h \
cryptonote_orig/src/CryptoNoteCore/TransactionApi.h \
cryptonote_orig/src/CryptoNoteCore/TransactionApiExtra.h \
cryptonote_orig/src/CryptoNoteCore/TransactionExtra.h \
cryptonote_orig/src/CryptoNoteCore/TransactionPool.h \
cryptonote_orig/src/CryptoNoteCore/TransactionUtils.h \
cryptonote_orig/src/CryptoNoteCore/UpgradeDetector.h \
cryptonote_orig/src/CryptoNoteCore/VerificationContext.h \
cryptonote_orig/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h \
cryptonote_orig/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h \
cryptonote_orig/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h \
cryptonote_orig/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h \
cryptonote_orig/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h \
cryptonote_orig/src/Daemon/DaemonCommandsHandler.h \
cryptonote_orig/src/HTTP/HttpParser.h \
cryptonote_orig/src/HTTP/HttpParserErrorCodes.h \
cryptonote_orig/src/HTTP/HttpRequest.h \
cryptonote_orig/src/HTTP/HttpResponse.h \
cryptonote_orig/src/InProcessNode/InProcessNode.h \
cryptonote_orig/src/InProcessNode/InProcessNodeErrors.h \
cryptonote_orig/src/JsonRpcServer/JsonRpcServer.h \
cryptonote_orig/src/Logging/CommonLogger.h \
cryptonote_orig/src/Logging/ConsoleLogger.h \
cryptonote_orig/src/Logging/FileLogger.h \
cryptonote_orig/src/Logging/ILogger.h \
cryptonote_orig/src/Logging/LoggerGroup.h \
cryptonote_orig/src/Logging/LoggerManager.h \
cryptonote_orig/src/Logging/LoggerMessage.h \
cryptonote_orig/src/Logging/LoggerRef.h \
cryptonote_orig/src/Logging/StreamLogger.h \
cryptonote_orig/src/Miner/BlockchainMonitor.h \
cryptonote_orig/src/Miner/Miner.h \
cryptonote_orig/src/Miner/MinerEvent.h \
cryptonote_orig/src/Miner/MinerManager.h \
cryptonote_orig/src/Miner/MiningConfig.h \
cryptonote_orig/src/NodeRpcProxy/NodeErrors.h \
cryptonote_orig/src/NodeRpcProxy/NodeRpcProxy.h \
cryptonote_orig/src/P2p/ConnectionContext.h \
cryptonote_orig/src/P2p/IP2pNodeInternal.h \
cryptonote_orig/src/P2p/LevinProtocol.h \
cryptonote_orig/src/P2p/NetNode.h \
cryptonote_orig/src/P2p/NetNodeCommon.h \
cryptonote_orig/src/P2p/NetNodeConfig.h \
cryptonote_orig/src/P2p/P2pConnectionProxy.h \
cryptonote_orig/src/P2p/P2pContext.h \
cryptonote_orig/src/P2p/P2pContextOwner.h \
cryptonote_orig/src/P2p/P2pInterfaces.h \
cryptonote_orig/src/P2p/P2pNetworks.h \
cryptonote_orig/src/P2p/P2pNode.h \
cryptonote_orig/src/P2p/P2pNodeConfig.h \
cryptonote_orig/src/P2p/P2pProtocolDefinitions.h \
cryptonote_orig/src/P2p/P2pProtocolTypes.h \
cryptonote_orig/src/P2p/PeerListManager.h \
cryptonote_orig/src/PaymentGate/NodeFactory.h \
cryptonote_orig/src/PaymentGate/PaymentServiceJsonRpcMessages.h \
cryptonote_orig/src/PaymentGate/PaymentServiceJsonRpcServer.h \
cryptonote_orig/src/PaymentGate/WalletFactory.h \
cryptonote_orig/src/PaymentGate/WalletService.h \
cryptonote_orig/src/PaymentGate/WalletServiceErrorCategory.h \
cryptonote_orig/src/PaymentGateService/ConfigurationManager.h \
cryptonote_orig/src/PaymentGateService/PaymentGateService.h \
cryptonote_orig/src/PaymentGateService/PaymentServiceConfiguration.h \
cryptonote_orig/src/PaymentGateService/RpcNodeConfiguration.h \
cryptonote_orig/src/Rpc/CoreRpcServerCommandsDefinitions.h \
cryptonote_orig/src/Rpc/CoreRpcServerErrorCodes.h \
cryptonote_orig/src/Rpc/HttpClient.h \
cryptonote_orig/src/Rpc/HttpServer.h \
cryptonote_orig/src/Rpc/JsonRpc.h \
cryptonote_orig/src/Rpc/RpcServer.h \
cryptonote_orig/src/Rpc/RpcServerConfig.h \
cryptonote_orig/src/Serialization/BinaryInputStreamSerializer.h \
cryptonote_orig/src/Serialization/BinaryOutputStreamSerializer.h \
cryptonote_orig/src/Serialization/BinarySerializationTools.h \
cryptonote_orig/src/Serialization/ISerializer.h \
cryptonote_orig/src/Serialization/IStream.h \
cryptonote_orig/src/Serialization/JsonInputStreamSerializer.h \
cryptonote_orig/src/Serialization/JsonInputValueSerializer.h \
cryptonote_orig/src/Serialization/JsonOutputStreamSerializer.h \
cryptonote_orig/src/Serialization/KVBinaryCommon.h \
cryptonote_orig/src/Serialization/KVBinaryInputStreamSerializer.h \
cryptonote_orig/src/Serialization/KVBinaryOutputStreamSerializer.h \
cryptonote_orig/src/Serialization/MemoryStream.h \
cryptonote_orig/src/Serialization/SerializationOverloads.h \
cryptonote_orig/src/Serialization/SerializationTools.h \
cryptonote_orig/src/SimpleWallet/PasswordContainer.h \
cryptonote_orig/src/SimpleWallet/SimpleWallet.h \
cryptonote_orig/src/System/Context.h \
cryptonote_orig/src/System/ContextGroup.h \
cryptonote_orig/src/System/ContextGroupTimeout.h \
cryptonote_orig/src/System/Event.h \
cryptonote_orig/src/System/EventLock.h \
cryptonote_orig/src/System/InterruptedException.h \
cryptonote_orig/src/System/Ipv4Address.h \
cryptonote_orig/src/System/OperationTimeout.h \
cryptonote_orig/src/System/RemoteContext.h \
cryptonote_orig/src/System/RemoteEventLock.h \
cryptonote_orig/src/System/TcpStream.h \
cryptonote_orig/src/Transfers/BlockchainSynchronizer.h \
cryptonote_orig/src/Transfers/CommonTypes.h \
cryptonote_orig/src/Transfers/IBlockchainSynchronizer.h \
cryptonote_orig/src/Transfers/IObservableImpl.h \
cryptonote_orig/src/Transfers/SynchronizationState.h \
cryptonote_orig/src/Transfers/TransfersConsumer.h \
cryptonote_orig/src/Transfers/TransfersContainer.h \
cryptonote_orig/src/Transfers/TransfersSubscription.h \
cryptonote_orig/src/Transfers/TransfersSynchronizer.h \
cryptonote_orig/src/Transfers/TypeHelpers.h \
cryptonote_orig/src/Wallet/IFusionManager.h \
cryptonote_orig/src/Wallet/LegacyKeysImporter.h \
cryptonote_orig/src/Wallet/WalletAsyncContextCounter.h \
cryptonote_orig/src/Wallet/WalletErrors.h \
cryptonote_orig/src/Wallet/WalletGreen.h \
cryptonote_orig/src/Wallet/WalletIndices.h \
cryptonote_orig/src/Wallet/WalletRpcServer.h \
cryptonote_orig/src/Wallet/WalletRpcServerCommandsDefinitions.h \
cryptonote_orig/src/Wallet/WalletRpcServerErrorCodes.h \
cryptonote_orig/src/Wallet/WalletSerialization.h \
cryptonote_orig/src/Wallet/WalletUtils.h \
cryptonote_orig/src/WalletLegacy/KeysStorage.h \
cryptonote_orig/src/WalletLegacy/WalletDepositInfo.h \
cryptonote_orig/src/WalletLegacy/WalletHelper.h \
cryptonote_orig/src/WalletLegacy/WalletLegacy.h \
cryptonote_orig/src/WalletLegacy/WalletLegacyEvent.h \
cryptonote_orig/src/WalletLegacy/WalletLegacySerialization.h \
cryptonote_orig/src/WalletLegacy/WalletLegacySerializer.h \
cryptonote_orig/src/WalletLegacy/WalletRequest.h \
cryptonote_orig/src/WalletLegacy/WalletSendTransactionContext.h \
cryptonote_orig/src/WalletLegacy/WalletTransactionSender.h \
cryptonote_orig/src/WalletLegacy/WalletUnconfirmedTransactions.h \
cryptonote_orig/src/WalletLegacy/WalletUserTransactionsCache.h \
cryptonote_orig/src/WalletLegacy/WalletUtils.h \
cryptonote_orig/tests/CoreTests/AccountBoostSerialization.h \
cryptonote_orig/tests/CoreTests/BlockReward.h \
cryptonote_orig/tests/CoreTests/BlockValidation.h \
cryptonote_orig/tests/CoreTests/BoostSerializationHelper.h \
cryptonote_orig/tests/CoreTests/Chaingen.h \
cryptonote_orig/tests/CoreTests/Chaingen001.h \
cryptonote_orig/tests/CoreTests/ChainSplit1.h \
cryptonote_orig/tests/CoreTests/ChainSwitch1.h \
cryptonote_orig/tests/CoreTests/CryptoNoteBoostSerialization.h \
cryptonote_orig/tests/CoreTests/Deposit.h \
cryptonote_orig/tests/CoreTests/DoubleSpend.h \
cryptonote_orig/tests/CoreTests/IntegerOverflow.h \
cryptonote_orig/tests/CoreTests/RandomOuts.h \
cryptonote_orig/tests/CoreTests/RingSignature.h \
cryptonote_orig/tests/CoreTests/TestGenerator.h \
cryptonote_orig/tests/CoreTests/TransactionBuilder.h \
cryptonote_orig/tests/CoreTests/TransactionTests.h \
cryptonote_orig/tests/CoreTests/TransactionValidation.h \
cryptonote_orig/tests/CoreTests/UnorderedContainersBoostSerialization.h \
cryptonote_orig/tests/CoreTests/Upgrade.h \
cryptonote_orig/tests/crypto/crypto-tests.h \
cryptonote_orig/tests/IntegrationTestLib/BaseFunctionalTests.h \
cryptonote_orig/tests/IntegrationTestLib/InProcTestNode.h \
cryptonote_orig/tests/IntegrationTestLib/Logger.h \
cryptonote_orig/tests/IntegrationTestLib/NetworkConfiguration.h \
cryptonote_orig/tests/IntegrationTestLib/NodeCallback.h \
cryptonote_orig/tests/IntegrationTestLib/NodeObserver.h \
cryptonote_orig/tests/IntegrationTestLib/ObservableValue.h \
cryptonote_orig/tests/IntegrationTestLib/Process.h \
cryptonote_orig/tests/IntegrationTestLib/RPCTestNode.h \
cryptonote_orig/tests/IntegrationTestLib/TestNetwork.h \
cryptonote_orig/tests/IntegrationTestLib/TestNode.h \
cryptonote_orig/tests/IntegrationTestLib/TestWalletLegacy.h \
cryptonote_orig/tests/IntegrationTests/BaseTests.h \
cryptonote_orig/tests/IntegrationTests/WalletLegacyObserver.h \
cryptonote_orig/tests/PerformanceTests/CheckRingSignature.h \
cryptonote_orig/tests/PerformanceTests/ConstructTransaction.h \
cryptonote_orig/tests/PerformanceTests/CryptoNoteSlowHash.h \
cryptonote_orig/tests/PerformanceTests/DerivePublicKey.h \
cryptonote_orig/tests/PerformanceTests/DeriveSecretKey.h \
cryptonote_orig/tests/PerformanceTests/GenerateKeyDerivation.h \
cryptonote_orig/tests/PerformanceTests/GenerateKeyImage.h \
cryptonote_orig/tests/PerformanceTests/GenerateKeyImageHelper.h \
cryptonote_orig/tests/PerformanceTests/IsOutToAccount.h \
cryptonote_orig/tests/PerformanceTests/MultiTransactionTestBase.h \
cryptonote_orig/tests/PerformanceTests/PerformanceTests.h \
cryptonote_orig/tests/PerformanceTests/PerformanceUtils.h \
cryptonote_orig/tests/PerformanceTests/SingleTransactionTestBase.h \
cryptonote_orig/tests/TestGenerator/TestGenerator.h \
cryptonote_orig/tests/TransfersTests/Globals.h \
cryptonote_orig/tests/UnitTests/EventWaiter.h \
cryptonote_orig/tests/UnitTests/ICoreStub.h \
cryptonote_orig/tests/UnitTests/ICryptoNoteProtocolQueryStub.h \
cryptonote_orig/tests/UnitTests/INodeStubs.h \
cryptonote_orig/tests/UnitTests/TestBlockchainGenerator.h \
cryptonote_orig/tests/UnitTests/TransactionApiHelpers.h \
cryptonote_orig/tests/UnitTests/TransfersObserver.h \
cryptonote_orig/tests/UnitTests/UnitTestsUtils.h \
cryptonite/build/release/version/version.h \
cryptonite/external/google/sparsehash/densehashtable.h \
cryptonite/external/google/sparsehash/hashtable-common.h \
cryptonite/external/google/sparsehash/libc_allocator_with_realloc.h \
cryptonite/external/google/sparsehash/os_config.h \
cryptonite/external/google/sparsehash/sparseconfig.h \
cryptonite/external/google/sparsehash/sparseconfig_win.h \
cryptonite/external/google/sparsehash/sparsehashtable.h \
cryptonite/external/gtest/samples/prime_tables.h \
cryptonite/external/gtest/samples/sample1.h \
cryptonite/external/gtest/samples/sample2.h \
cryptonite/external/gtest/samples/sample3-inl.h \
cryptonite/external/gtest/samples/sample4.h \
cryptonite/external/gtest/src/gtest-internal-inl.h \
cryptonite/external/gtest/test/gtest-param-test_test.h \
cryptonite/external/gtest/test/gtest-typed-test_test.h \
cryptonite/external/gtest/test/production.h \
cryptonite/src/Platform/mingw/alloca.h \
cryptonite/src/Platform/msc/alloca.h \
cryptonite/src/Platform/msc/stdbool.h \
cryptonote_orig/external/google/sparsehash/densehashtable.h \
cryptonote_orig/external/google/sparsehash/hashtable-common.h \
cryptonote_orig/external/google/sparsehash/libc_allocator_with_realloc.h \
cryptonote_orig/external/google/sparsehash/os_config.h \
cryptonote_orig/external/google/sparsehash/sparseconfig.h \
cryptonote_orig/external/google/sparsehash/sparseconfig_win.h \
cryptonote_orig/external/google/sparsehash/sparsehashtable.h \
cryptonote_orig/external/gtest/samples/prime_tables.h \
cryptonote_orig/external/gtest/samples/sample1.h \
cryptonote_orig/external/gtest/samples/sample2.h \
cryptonote_orig/external/gtest/samples/sample3-inl.h \
cryptonote_orig/external/gtest/samples/sample4.h \
cryptonote_orig/external/gtest/src/gtest-internal-inl.h \
cryptonote_orig/external/gtest/test/gtest-param-test_test.h \
cryptonote_orig/external/gtest/test/gtest-typed-test_test.h \
cryptonote_orig/external/gtest/test/production.h \
cryptonote_orig/src/Platform/mingw/alloca.h \
cryptonote_orig/src/Platform/msc/alloca.h \
cryptonote_orig/src/Platform/msc/stdbool.h \
cryptonite/external/gtest/fused-src/gtest/gtest.h \
cryptonite/external/gtest/include/gtest/gtest-death-test.h \
cryptonite/external/gtest/include/gtest/gtest-message.h \
cryptonite/external/gtest/include/gtest/gtest-param-test.h \
cryptonite/external/gtest/include/gtest/gtest-printers.h \
cryptonite/external/gtest/include/gtest/gtest-spi.h \
cryptonite/external/gtest/include/gtest/gtest-test-part.h \
cryptonite/external/gtest/include/gtest/gtest-typed-test.h \
cryptonite/external/gtest/include/gtest/gtest.h \
cryptonite/external/gtest/include/gtest/gtest_pred_impl.h \
cryptonite/external/gtest/include/gtest/gtest_prod.h \
cryptonite/src/Platform/Linux/System/Dispatcher.h \
cryptonite/src/Platform/Linux/System/ErrorMessage.h \
cryptonite/src/Platform/Linux/System/Future.h \
cryptonite/src/Platform/Linux/System/Ipv4Resolver.h \
cryptonite/src/Platform/Linux/System/TcpConnection.h \
cryptonite/src/Platform/Linux/System/TcpConnector.h \
cryptonite/src/Platform/Linux/System/TcpListener.h \
cryptonite/src/Platform/Linux/System/Timer.h \
cryptonite/src/Platform/msc/sys/param.h \
cryptonite/src/Platform/OSX/System/Context.h \
cryptonite/src/Platform/OSX/System/Dispatcher.h \
cryptonite/src/Platform/OSX/System/ErrorMessage.h \
cryptonite/src/Platform/OSX/System/Future.h \
cryptonite/src/Platform/OSX/System/Ipv4Resolver.h \
cryptonite/src/Platform/OSX/System/TcpConnection.h \
cryptonite/src/Platform/OSX/System/TcpConnector.h \
cryptonite/src/Platform/OSX/System/TcpListener.h \
cryptonite/src/Platform/OSX/System/Timer.h \
cryptonite/src/Platform/Windows/System/Dispatcher.h \
cryptonite/src/Platform/Windows/System/ErrorMessage.h \
cryptonite/src/Platform/Windows/System/Future.h \
cryptonite/src/Platform/Windows/System/Ipv4Resolver.h \
cryptonite/src/Platform/Windows/System/TcpConnection.h \
cryptonite/src/Platform/Windows/System/TcpConnector.h \
cryptonite/src/Platform/Windows/System/TcpListener.h \
cryptonite/src/Platform/Windows/System/Timer.h \
cryptonote_orig/external/gtest/fused-src/gtest/gtest.h \
cryptonote_orig/external/gtest/include/gtest/gtest-death-test.h \
cryptonote_orig/external/gtest/include/gtest/gtest-message.h \
cryptonote_orig/external/gtest/include/gtest/gtest-param-test.h \
cryptonote_orig/external/gtest/include/gtest/gtest-printers.h \
cryptonote_orig/external/gtest/include/gtest/gtest-spi.h \
cryptonote_orig/external/gtest/include/gtest/gtest-test-part.h \
cryptonote_orig/external/gtest/include/gtest/gtest-typed-test.h \
cryptonote_orig/external/gtest/include/gtest/gtest.h \
cryptonote_orig/external/gtest/include/gtest/gtest_pred_impl.h \
cryptonote_orig/external/gtest/include/gtest/gtest_prod.h \
cryptonote_orig/src/Platform/Linux/System/Dispatcher.h \
cryptonote_orig/src/Platform/Linux/System/ErrorMessage.h \
cryptonote_orig/src/Platform/Linux/System/Future.h \
cryptonote_orig/src/Platform/Linux/System/Ipv4Resolver.h \
cryptonote_orig/src/Platform/Linux/System/TcpConnection.h \
cryptonote_orig/src/Platform/Linux/System/TcpConnector.h \
cryptonote_orig/src/Platform/Linux/System/TcpListener.h \
cryptonote_orig/src/Platform/Linux/System/Timer.h \
cryptonote_orig/src/Platform/msc/sys/param.h \
cryptonote_orig/src/Platform/OSX/System/Context.h \
cryptonote_orig/src/Platform/OSX/System/Dispatcher.h \
cryptonote_orig/src/Platform/OSX/System/ErrorMessage.h \
cryptonote_orig/src/Platform/OSX/System/Future.h \
cryptonote_orig/src/Platform/OSX/System/Ipv4Resolver.h \
cryptonote_orig/src/Platform/OSX/System/TcpConnection.h \
cryptonote_orig/src/Platform/OSX/System/TcpConnector.h \
cryptonote_orig/src/Platform/OSX/System/TcpListener.h \
cryptonote_orig/src/Platform/OSX/System/Timer.h \
cryptonote_orig/src/Platform/Windows/System/Dispatcher.h \
cryptonote_orig/src/Platform/Windows/System/ErrorMessage.h \
cryptonote_orig/src/Platform/Windows/System/Future.h \
cryptonote_orig/src/Platform/Windows/System/Ipv4Resolver.h \
cryptonote_orig/src/Platform/Windows/System/TcpConnection.h \
cryptonote_orig/src/Platform/Windows/System/TcpConnector.h \
cryptonote_orig/src/Platform/Windows/System/TcpListener.h \
cryptonote_orig/src/Platform/Windows/System/Timer.h \
cryptonite/external/gtest/include/gtest/internal/gtest-death-test-internal.h \
cryptonite/external/gtest/include/gtest/internal/gtest-filepath.h \
cryptonite/external/gtest/include/gtest/internal/gtest-internal.h \
cryptonite/external/gtest/include/gtest/internal/gtest-linked_ptr.h \
cryptonite/external/gtest/include/gtest/internal/gtest-param-util-generated.h \
cryptonite/external/gtest/include/gtest/internal/gtest-param-util.h \
cryptonite/external/gtest/include/gtest/internal/gtest-port.h \
cryptonite/external/gtest/include/gtest/internal/gtest-string.h \
cryptonite/external/gtest/include/gtest/internal/gtest-tuple.h \
cryptonite/external/gtest/include/gtest/internal/gtest-type-util.h \
cryptonite/external/gtest/xcode/Samples/FrameworkSample/widget.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-death-test-internal.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-filepath.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-internal.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-linked_ptr.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-param-util-generated.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-param-util.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-port.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-string.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-tuple.h \
cryptonote_orig/external/gtest/include/gtest/internal/gtest-type-util.h \
cryptonote_orig/external/gtest/xcode/Samples/FrameworkSample/widget.h
FORMS += src/gui/ui/aboutdialog.ui \
src/gui/ui/addressbookdialog.ui \
src/gui/ui/addressbookframe.ui \
src/gui/ui/changepassworddialog.ui \
src/gui/ui/depositdetailsdialog.ui \
src/gui/ui/depositsframe.ui \
src/gui/ui/exitwidget.ui \
src/gui/ui/importkeydialog.ui \
src/gui/ui/mainwindow.ui \
src/gui/ui/messageaddressframe.ui \
src/gui/ui/messagedetailsdialog.ui \
src/gui/ui/messagesframe.ui \
src/gui/ui/miningframe.ui \
src/gui/ui/newaddressdialog.ui \
src/gui/ui/newpassworddialog.ui \
src/gui/ui/newpooldialog.ui \
src/gui/ui/overviewframe.ui \
src/gui/ui/passworddialog.ui \
src/gui/ui/receiveframe.ui \
src/gui/ui/sendframe.ui \
src/gui/ui/sendmessageframe.ui \
src/gui/ui/transactiondetailsdialog.ui \
src/gui/ui/transactionframe.ui \
src/gui/ui/transactionsframe.ui \
src/gui/ui/transferframe.ui
SOURCES += libqrencode/bitstream.c \
libqrencode/mask.c \
libqrencode/mmask.c \
libqrencode/mqrspec.c \
libqrencode/qrenc.c \
libqrencode/qrencode.c \
libqrencode/qrinput.c \
libqrencode/qrspec.c \
libqrencode/rsecc.c \
libqrencode/split.c \
src/AliasProvider.cpp \
src/CommandLineParser.cpp \
src/CryptoNoteWrapper.cpp \
src/CurrencyAdapter.cpp \
src/LoggerAdapter.cpp \
src/main.cpp \
src/Miner.cpp \
src/NodeAdapter.cpp \
src/Settings.cpp \
src/SignalHandler.cpp \
src/StratumClient.cpp \
src/WalletAdapter.cpp \
src/Worker.cpp \
cryptonite/tests/HashTarget.cpp \
cryptonote_orig/tests/HashTarget.cpp \
libqrencode/tests/common.c \
libqrencode/tests/create_frame_pattern.c \
libqrencode/tests/create_mqr_frame_pattern.c \
libqrencode/tests/datachunk.c \
libqrencode/tests/decoder.c \
libqrencode/tests/prof_qrencode.c \
libqrencode/tests/pthread_qrencode.c \
libqrencode/tests/rscode.c \
libqrencode/tests/rsecc_decoder.c \
libqrencode/tests/test_bitstream.c \
libqrencode/tests/test_estimatebit.c \
libqrencode/tests/test_mask.c \
libqrencode/tests/test_mmask.c \
libqrencode/tests/test_monkey.c \
libqrencode/tests/test_mqrspec.c \
libqrencode/tests/test_qrencode.c \
libqrencode/tests/test_qrinput.c \
libqrencode/tests/test_qrspec.c \
libqrencode/tests/test_rs.c \
libqrencode/tests/test_split.c \
libqrencode/tests/test_split_urls.c \
libqrencode/tests/view_qrcode.c \
src/gui/AboutDialog.cpp \
src/gui/AddressBookDialog.cpp \
src/gui/AddressBookFrame.cpp \
src/gui/AddressBookModel.cpp \
src/gui/AnimatedLabel.cpp \
src/gui/ChangePasswordDialog.cpp \
src/gui/DepositDetailsDialog.cpp \
src/gui/DepositListModel.cpp \
src/gui/DepositModel.cpp \
src/gui/DepositsFrame.cpp \
src/gui/ExitWidget.cpp \
src/gui/ImportKeyDialog.cpp \
src/gui/MainWindow.cpp \
src/gui/Message.cpp \
src/gui/MessageAddressFrame.cpp \
src/gui/MessageDetailsDialog.cpp \
src/gui/MessagesFrame.cpp \
src/gui/MessagesModel.cpp \
src/gui/MiningFrame.cpp \
src/gui/NewAddressDialog.cpp \
src/gui/NewPasswordDialog.cpp \
src/gui/NewPoolDialog.cpp \
src/gui/OverviewFrame.cpp \
src/gui/PasswordDialog.cpp \
src/gui/PoolModel.cpp \
src/gui/QRLabel.cpp \
src/gui/ReceiveFrame.cpp \
src/gui/RecentTransactionsModel.cpp \
src/gui/SendFrame.cpp \
src/gui/SendMessageFrame.cpp \
src/gui/SortedDepositModel.cpp \
src/gui/SortedMessagesModel.cpp \
src/gui/SortedTransactionsModel.cpp \
src/gui/TransactionDetailsDialog.cpp \
src/gui/TransactionFrame.cpp \
src/gui/TransactionsFrame.cpp \
src/gui/TransactionsListModel.cpp \
src/gui/TransactionsModel.cpp \
src/gui/TransferFrame.cpp \
src/gui/VisibleMessagesModel.cpp \
cryptonite/external/miniupnpc/connecthostport.c \
cryptonite/external/miniupnpc/igd_desc_parse.c \
cryptonite/external/miniupnpc/minihttptestserver.c \
cryptonite/external/miniupnpc/minisoap.c \
cryptonite/external/miniupnpc/minissdpc.c \
cryptonite/external/miniupnpc/miniupnpc.c \
cryptonite/external/miniupnpc/miniupnpcmodule.c \
cryptonite/external/miniupnpc/miniwget.c \
cryptonite/external/miniupnpc/minixml.c \
cryptonite/external/miniupnpc/minixmlvalid.c \
cryptonite/external/miniupnpc/portlistingparse.c \
cryptonite/external/miniupnpc/receivedata.c \
cryptonite/external/miniupnpc/testigddescparse.c \
cryptonite/external/miniupnpc/testminiwget.c \
cryptonite/external/miniupnpc/testminixml.c \
cryptonite/external/miniupnpc/testupnpreplyparse.c \
cryptonite/external/miniupnpc/upnpc.c \
cryptonite/external/miniupnpc/upnpcommands.c \
cryptonite/external/miniupnpc/upnperrors.c \
cryptonite/external/miniupnpc/upnpreplyparse.c \
cryptonite/external/miniupnpc/wingenminiupnpcstrings.c \
cryptonite/src/BlockchainExplorer/BlockchainExplorer.cpp \
cryptonite/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp \
cryptonite/src/BlockchainExplorer/BlockchainExplorerErrors.cpp \
cryptonite/src/Common/Base58.cpp \
cryptonite/src/Common/BlockingQueue.cpp \
cryptonite/src/Common/CommandLine.cpp \
cryptonite/src/Common/ConsoleHandler.cpp \
cryptonite/src/Common/ConsoleTools.cpp \
cryptonite/src/Common/IInputStream.cpp \
cryptonite/src/Common/IOutputStream.cpp \
cryptonite/src/Common/JsonValue.cpp \
cryptonite/src/Common/Math.cpp \
cryptonite/src/Common/MemoryInputStream.cpp \
cryptonite/src/Common/PathTools.cpp \
cryptonite/src/Common/ScopeExit.cpp \
cryptonite/src/Common/SignalHandler.cpp \
cryptonite/src/Common/StdInputStream.cpp \
cryptonite/src/Common/StdOutputStream.cpp \
cryptonite/src/Common/StreamTools.cpp \
cryptonite/src/Common/StringInputStream.cpp \
cryptonite/src/Common/StringOutputStream.cpp \
cryptonite/src/Common/StringTools.cpp \
cryptonite/src/Common/StringView.cpp \
cryptonite/src/Common/Util.cpp \
cryptonite/src/Common/VectorOutputStream.cpp \
cryptonite/src/ConnectivityTool/ConnectivityTool.cpp \
cryptonite/src/crypto/blake256.c \
cryptonite/src/crypto/chacha.c \
cryptonite/src/crypto/crypto-ops-data.c \
cryptonite/src/crypto/crypto-ops.c \
cryptonite/src/crypto/crypto.cpp \
cryptonite/src/crypto/groestl.c \
cryptonite/src/crypto/hash-extra-blake.c \
cryptonite/src/crypto/hash-extra-groestl.c \
cryptonite/src/crypto/hash-extra-jh.c \
cryptonite/src/crypto/hash-extra-skein.c \
cryptonite/src/crypto/hash.c \
cryptonite/src/crypto/jh.c \
cryptonite/src/crypto/keccak.c \
cryptonite/src/crypto/oaes_lib.c \
cryptonite/src/crypto/random.c \
cryptonite/src/crypto/skein.c \
cryptonite/src/crypto/slow-hash.c \
cryptonite/src/crypto/slow-hash.cpp \
cryptonite/src/crypto/tree-hash.c \
cryptonite/src/CryptoNoteCore/Account.cpp \
cryptonite/src/CryptoNoteCore/Blockchain.cpp \