https://github.com/moneroexamples/show-mixins-for-tx
Show detailed information about mixins in a given transaction
https://github.com/moneroexamples/show-mixins-for-tx
Last synced: about 1 year ago
JSON representation
Show detailed information about mixins in a given transaction
- Host: GitHub
- URL: https://github.com/moneroexamples/show-mixins-for-tx
- Owner: moneroexamples
- Created: 2015-11-24T06:19:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-17T11:02:21.000Z (about 10 years ago)
- Last Synced: 2025-03-30T13:02:18.180Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 213 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Show detailed mixins information for a given transaction
Mixins represent one of the main
advantages of [Monero](https://getmonero.org/) over other cryptocurrencies.
[http://moneroblocks.eu/](http://moneroblocks.eu/) shows mixins used
for each transaction, but it lacks the ability to identify the real mixin
based on the address and viewkey provided, and also it provides very limited
information about the mixins.
In this example, those limitations are addressed. Specifically, a C++ program called
`showmixins` is developed. The program prints out detailed information about
mixins used in a given transaction. In addition, if monero address and the
corresponding view key are provided, the true mixin in each input is identified.
## Prerequisite
Everything here was done and tested using Monero 0.9.1 on
Xubuntu 15.10 x86_64.
Instruction for Monero 0.9 compilation:
- [Ubuntu 14.04 and 15.10 x86_64](https://github.com/moneroexamples/compile-monero-09-on-ubuntu)
Monero source code compilation and setup are same as
[here](http://moneroexamples.github.io/access-blockchain-in-cpp/).
## C++ code
The main part of the example is main.cpp.
```c++
int main(int ac, const char* av[]) {
// .....
// argument parsing removed to save some space
// .....
// create instance of our MicroCore
xmreg::MicroCore mcore;
// initialize the core using the blockchain path
if (!mcore.init(blockchain_path.string()))
{
cerr << "Error accessing blockchain." << endl;
return 1;
}
// get the high level cryptonote::Blockchain object to interact
// with the blockchain lmdb database
cryptonote::Blockchain& core_storage = mcore.get_core();
// get the current blockchain height. Just to check
// if it reads ok.
uint64_t height = core_storage.get_current_blockchain_height() - 1;
print("\n\n"
"Top block height : {:d}\n", height);
// get time of the current block
uint64_t current_blk_timestamp = mcore.get_blk_timestamp(height);
print("Top block block time : {:s}\n", xmreg::timestamp_to_str(current_blk_timestamp));
cryptonote::transaction tx;
try
{
// get transaction with given hash
tx = core_storage.get_db().get_tx(tx_hash);
}
catch (const std::exception& e)
{
cerr << e.what() << endl;
return false;
}
// get block height in which the given transaction is located
uint64_t tx_blk_height = core_storage.get_db().get_tx_block_height(tx_hash);
print("\ntx hash : {}, block height {}\n\n", tx_hash, tx_blk_height);
if (VIEWKEY_AND_ADDRESS_GIVEN)
{
// lets check our keys
print("private view key : {}\n", private_view_key);
print("address : {}\n\n\n", xmreg::print_address(address, testnet));
}
// total number of inputs in the transaction tx
size_t input_no = tx.vin.size();
for (size_t in_i = 0; in_i < input_no; ++in_i)
{
cryptonote::txin_v tx_in = tx.vin[in_i];
if (tx_in.type() == typeid(cryptonote::txin_gen))
{
print(" - coinbase tx: no inputs here.\n");
continue;
}
// get tx input key
const cryptonote::txin_to_key& tx_in_to_key
= boost::get(tx_in);
print("Input's key image: {}, xmr: {:0.6f}\n",
tx_in_to_key.k_image,
xmreg::get_xmr(tx_in_to_key.amount));
// get absolute offsets of mixins
std::vector absolute_offsets
= cryptonote::relative_output_offsets_to_absolute(
tx_in_to_key.key_offsets);
std::vector outputs;
core_storage.get_db().get_output_key(tx_in_to_key.amount,
absolute_offsets,
outputs);
size_t count = 0;
for (const uint64_t& i: absolute_offsets)
{
cryptonote::output_data_t output_data;
bool output_at {true};
// get tx hash and output index for output
if (count < outputs.size())
{
output_data = outputs.at(count);
}
// find tx_hash with given output
crypto::hash tx_hash;
cryptonote::transaction tx_found;
if (!mcore.get_tx_hash_from_output_pubkey(
output_data.pubkey,
output_data.height,
tx_hash, tx_found))
{
print("- cant find tx_hash for ouput: {}, mixin no: {}, blk: {}\n",
output_data.pubkey, count + 1, output_data.height);
continue;
}
// find output in a given transaction
// basted on its public key
cryptonote::tx_out found_output;
size_t output_index;
if (!mcore.find_output_in_tx(tx_found,
output_data.pubkey,
found_output,
output_index))
{
print("- cant find tx_out for ouput: {}, mixin no: {}, blk: {}\n",
output_data.pubkey, count + 1, output_data.height);
continue;
}
// get block of given height, as we want to get its timestamp
cryptonote::block blk;
if (!mcore.get_block_by_height(output_data.height, blk))
{
print("- cant get block of height: {}\n", output_data.height);
continue;
}
// get mixin block timestamp
uint64_t blk_timestamp = blk.timestamp;
// calculate time difference bewteen mixing block and current blockchain height
array time_diff;
time_diff = xmreg::timestamp_difference(current_blk_timestamp, blk_timestamp);
print("\n - mixin no: {}, block height: {}, timestamp: {}, "
"time_diff: {} y, {} d, {} h, {} m, {} s",
count + 1, output_data.height,
xmreg::timestamp_to_str(blk_timestamp),
time_diff[0], time_diff[1], time_diff[2], time_diff[3], time_diff[4]);
bool is_ours {false};
// get global transaction index in the blockchain
vector out_global_indeces;
if (!core_storage.get_tx_outputs_gindexs(
cryptonote::get_transaction_hash(tx_found),
out_global_indeces))
{
print("- cant find global indices for tx: {}\n", tx_hash);
continue;
}
// get the global index for the current output
uint64_t global_out_idx = {0};
if (output_index < out_global_indeces.size())
{
global_out_idx = out_global_indeces[output_index];
}
if (VIEWKEY_AND_ADDRESS_GIVEN)
{
// check if the given mixin's output is ours based
// on the view key and public spend key from the address
is_ours = xmreg::is_output_ours(output_index, tx_found,
private_view_key,
address.m_spend_public_key);
Color c = is_ours ? Color::GREEN : Color::RED;
print(", ours: "); print_colored(c, "{}", is_ours);
}
// get tx public key from extras field
crypto::public_key pub_tx_key = cryptonote::get_tx_pub_key_from_extra(tx_found);
print("\n"
" - output's pubkey: {}\n", output_data.pubkey);
print(" - in tx with hash: {}\n", tx_hash);
print(" - this tx pub key: {}\n", pub_tx_key);
print(" - out_i: {:03d}, g_idx: {:d}, xmr: {:0.6f}\n",
output_index, global_out_idx, xmreg::get_xmr(found_output.amount));
++count;
} // for (const uint64_t& i: absolute_offsets)
print("\nRing signature for the above input, i.e.,: key image {}, xmr: {:0.6f}: \n",
tx_in_to_key.k_image, xmreg::get_xmr(tx_in_to_key.amount));
for (const crypto::signature &sig: tx.signatures[in_i])
{
cout << " - " << xmreg::print_sig(sig) << endl;
}
cout << endl;
} // for (size_t in_i = 0; in_i < input_no; ++in_i)
cout << "\nEnd of program." << endl;
return 0;
}
```
## Program options
```
./showmixins -h
showmixins, shows mixin outputs used for each input in a given transaction:
-h [ --help ] [=arg(=1)] (=0) produce help message
-t [ --txhash ] arg transaction hash
-v [ --viewkey ] arg private view key string
-a [ --address ] arg monero address string
-b [ --bc-path ] arg path to lmdb blockchain
```
## Example input and output 1 (mixin 6)
Just a transaction hash given, without corresponding address and view key.
```bash
./showmixins 49503c381ed74da2079697f0e8b7228608da3cade22575774ab8cf5ca425c3fe
```
Output:
```bash
Top block height : 1027565
Top block block time : 2016-04-17 18:50:37
Payment id: not present
tx hash : <49503c381ed74da2079697f0e8b7228608da3cade22575774ab8cf5ca425c3fe>, block height 844932
Input's key image: <54802347b456a6dd632aea85cf970b09244107b6d5cea924feb7deafdc37cf9d>, xmr: 1.00000000
- mixin no: 1, block height: 67326, timestamp: 2014-06-02 16:58:23, time_diff: 1 y, 320 d, 1 h, 52 m, 14 s
- output's pubkey: <9f3145e43d7e0e3bbeb57d5a2fafef952d315bac341e507645621ed86efd1155>
- in tx with hash: <21885df01a25c548ddc0bb26dacba7fcc63f8c2810e193d4048fccb9791b1b38>
- this tx pub key: <6870bc701bea76bd66174216450eaae37166b080d1e7c3db1ffb3d760316f98c>
- out_i: 175, g_idx: 8381, xmr: 1.00000000
- mixin no: 2, block height: 143814, timestamp: 2014-07-25 13:31:17, time_diff: 1 y, 267 d, 5 h, 19 m, 20 s
- output's pubkey:
- in tx with hash: <56aabcd79cd2c063bd40636a2ca69e9933c95e93ec3ae15e93beafbae0293a83>
- this tx pub key:
- out_i: 039, g_idx: 132680, xmr: 1.00000000
- mixin no: 3, block height: 153000, timestamp: 2014-07-31 21:51:33, time_diff: 1 y, 260 d, 20 h, 59 m, 4 s
- output's pubkey:
- in tx with hash: <0daef7d911fc62ae50ee0134cb247fcf97061091fcbb1fcf4d96d1c9cdb8a969>
- this tx pub key:
- out_i: 036, g_idx: 153950, xmr: 1.00000000
- mixin no: 4, block height: 168055, timestamp: 2014-08-11 11:27:23, time_diff: 1 y, 250 d, 7 h, 23 m, 14 s
- output's pubkey: <623eba3d75cc706f34b62c50cc212267e86f50df123741f1deea039da04b6a4e>
- in tx with hash: <31aa16467530036597f50f07fc30c3c8f8a8df55b19de831fcf3d2c18a951e1f>
- this tx pub key: <144ce215672c8067b8dc172c2b04ac3e11dfc5fcc027c8ed19b327550dfce532>
- out_i: 039, g_idx: 180712, xmr: 1.00000000
- mixin no: 5, block height: 277037, timestamp: 2014-10-26 13:04:02, time_diff: 1 y, 174 d, 5 h, 46 m, 35 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 202, g_idx: 316577, xmr: 1.00000000
- mixin no: 6, block height: 539756, timestamp: 2015-04-28 08:58:05, time_diff: 0 y, 355 d, 9 h, 52 m, 32 s
- output's pubkey:
- in tx with hash: <6143d5d3f5ada27c1eddc46176607b67f492b1e9427757174e3e3215eeadaf63>
- this tx pub key:
- out_i: 049, g_idx: 547897, xmr: 1.00000000
- mixin no: 7, block height: 844912, timestamp: 2015-11-28 11:22:49, time_diff: 0 y, 141 d, 7 h, 27 m, 48 s
- output's pubkey: <852e2f8c919988294a15a65a4be8adff70e14c5907b0fee7e2ee005c134345e4>
- in tx with hash: <27003d209ae8854a72735e0cb14f46879dafbac65cf593fb880926a2a674efce>
- this tx pub key: <70fca5b6be58dbe39ed3fc229bb2a11ccceea89073591a18749c82f816182b37>
- out_i: 002, g_idx: 654842, xmr: 1.00000000
Ring signature for the above input, i.e.,: key image <54802347b456a6dd632aea85cf970b09244107b6d5cea924feb7deafdc37cf9d>, xmr: 1.00000000:
- c: <65b85a3e6e90979db84abcff8972f14143f75af3502dd078292ed42f0b6b7107> r: <2d12c4790b885e530081ece690a3a0722a23d1a428aa2a0a20d4c1feb549ee05>
- c: <5804d88fdd7b992f06d62ccce5bf71ae4068d4ea7f7520e82863afce6c09a505> r:
- c: <7745f72b61daa2be00b9961cb5af10b4cc665e4bcb94e59b4be9cc83195ae70b> r:
- c: <6877ccfe2c8abda3669e59c415ef6da98c9f0231d8aec0b9d75a18d16511050c> r:
- c: <4e50fbfa5118a66d0ee41564c86cd7b737719b9958f6428ab911069f6dbf2001> r:
- c: <228b4af5f4db071d8c0033dd774e9b06b2be0929d60d8c738be614c111536d09> r:
- c: r: <2652bbf2e207084d89fd72507d19271b86bf2e7e1a26c04aa53a4cc594fd200f>
Mixin timescales for this transaction:
Genesis <_______*________***____________*_____________________________*__________________________________*________________________> 2016-04-17
```
## Example input and output 2 (mixin 6)
Transaction hash given along with the corresponding address and view key.
```bash
./showmixins -a 42SLnbz1Ym9YtU3zHwKbQL8hXnGhtQ23BdnTGBtWwj6AXHSdEqRikDbM3wQxDWMhyCKZbQ9TfFh9N1SvHMXT81kK7senkME -v bdee822e89095833315925543a6d5b2a2a4418815cdfb3d0e91722d9c0b79501 -t 49503c381ed74da2079697f0e8b7228608da3cade22575774ab8cf5ca425c3fe
```
Result:
```bash
Top block height : 1027565
Top block block time : 2016-04-17 18:50:37
Payment id: not present
tx hash : <49503c381ed74da2079697f0e8b7228608da3cade22575774ab8cf5ca425c3fe>, block height 844932
private view key :
address : <42SLnbz1Ym9YtU3zHwKbQL8hXnGhtQ23BdnTGBtWwj6AXHSdEqRikDbM3wQxDWMhyCKZbQ9TfFh9N1SvHMXT81kK7senkME>
Input's key image: <54802347b456a6dd632aea85cf970b09244107b6d5cea924feb7deafdc37cf9d>, xmr: 1.00000000
- mixin no: 1, block height: 67326, timestamp: 2014-06-02 16:58:23, time_diff: 1 y, 320 d, 1 h, 52 m, 14 s, ours: false
- output's pubkey: <9f3145e43d7e0e3bbeb57d5a2fafef952d315bac341e507645621ed86efd1155>
- in tx with hash: <21885df01a25c548ddc0bb26dacba7fcc63f8c2810e193d4048fccb9791b1b38>
- this tx pub key: <6870bc701bea76bd66174216450eaae37166b080d1e7c3db1ffb3d760316f98c>
- out_i: 175, g_idx: 8381, xmr: 1.00000000
- mixin no: 2, block height: 143814, timestamp: 2014-07-25 13:31:17, time_diff: 1 y, 267 d, 5 h, 19 m, 20 s, ours: false
- output's pubkey:
- in tx with hash: <56aabcd79cd2c063bd40636a2ca69e9933c95e93ec3ae15e93beafbae0293a83>
- this tx pub key:
- out_i: 039, g_idx: 132680, xmr: 1.00000000
- mixin no: 3, block height: 153000, timestamp: 2014-07-31 21:51:33, time_diff: 1 y, 260 d, 20 h, 59 m, 4 s, ours: false
- output's pubkey:
- in tx with hash: <0daef7d911fc62ae50ee0134cb247fcf97061091fcbb1fcf4d96d1c9cdb8a969>
- this tx pub key:
- out_i: 036, g_idx: 153950, xmr: 1.00000000
- mixin no: 4, block height: 168055, timestamp: 2014-08-11 11:27:23, time_diff: 1 y, 250 d, 7 h, 23 m, 14 s, ours: false
- output's pubkey: <623eba3d75cc706f34b62c50cc212267e86f50df123741f1deea039da04b6a4e>
- in tx with hash: <31aa16467530036597f50f07fc30c3c8f8a8df55b19de831fcf3d2c18a951e1f>
- this tx pub key: <144ce215672c8067b8dc172c2b04ac3e11dfc5fcc027c8ed19b327550dfce532>
- out_i: 039, g_idx: 180712, xmr: 1.00000000
- mixin no: 5, block height: 277037, timestamp: 2014-10-26 13:04:02, time_diff: 1 y, 174 d, 5 h, 46 m, 35 s, ours: false
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 202, g_idx: 316577, xmr: 1.00000000
- mixin no: 6, block height: 539756, timestamp: 2015-04-28 08:58:05, time_diff: 0 y, 355 d, 9 h, 52 m, 32 s, ours: false
- output's pubkey:
- in tx with hash: <6143d5d3f5ada27c1eddc46176607b67f492b1e9427757174e3e3215eeadaf63>
- this tx pub key:
- out_i: 049, g_idx: 547897, xmr: 1.00000000
- mixin no: 7, block height: 844912, timestamp: 2015-11-28 11:22:49, time_diff: 0 y, 141 d, 7 h, 27 m, 48 s, ours: true
- output's pubkey: <852e2f8c919988294a15a65a4be8adff70e14c5907b0fee7e2ee005c134345e4>
- in tx with hash: <27003d209ae8854a72735e0cb14f46879dafbac65cf593fb880926a2a674efce>
- this tx pub key: <70fca5b6be58dbe39ed3fc229bb2a11ccceea89073591a18749c82f816182b37>
- out_i: 002, g_idx: 654842, xmr: 1.00000000
Ring signature for the above input, i.e.,: key image <54802347b456a6dd632aea85cf970b09244107b6d5cea924feb7deafdc37cf9d>, xmr: 1.00000000:
- c: <65b85a3e6e90979db84abcff8972f14143f75af3502dd078292ed42f0b6b7107> r: <2d12c4790b885e530081ece690a3a0722a23d1a428aa2a0a20d4c1feb549ee05>
- c: <5804d88fdd7b992f06d62ccce5bf71ae4068d4ea7f7520e82863afce6c09a505> r:
- c: <7745f72b61daa2be00b9961cb5af10b4cc665e4bcb94e59b4be9cc83195ae70b> r:
- c: <6877ccfe2c8abda3669e59c415ef6da98c9f0231d8aec0b9d75a18d16511050c> r:
- c: <4e50fbfa5118a66d0ee41564c86cd7b737719b9958f6428ab911069f6dbf2001> r:
- c: <228b4af5f4db071d8c0033dd774e9b06b2be0929d60d8c738be614c111536d09> r:
- c: r: <2652bbf2e207084d89fd72507d19271b86bf2e7e1a26c04aa53a4cc594fd200f>
Mixin timescales for this transaction:
Genesis <_______*________***____________*_____________________________*__________________________________*________________________> 2016-04-17
```
## Example input and output 3 (mixin 10)
Transaction hash given along with the corresponding address and view key.
```bash
./showmixins 1c01255462843f79f398a2e0678ee289e42fa2aea4a1447411e3820bd5fa62b9
```
```bash
Top block height : 1027568
Top block block time : 2016-04-17 18:57:46
Payment id: <66d404452b03e03e4307dae8e3eb4776fbbaec68e1dcb061a0748e39667271e7>
tx hash : <1c01255462843f79f398a2e0678ee289e42fa2aea4a1447411e3820bd5fa62b9>, block height 1026846
Input's key image: <5d55aa0ed8ea271992163bcc88bdd3935e8a3d5631bf3d737754a28762ef816e>, xmr: 0.20000000
- mixin no: 1, block height: 101988, timestamp: 2014-06-26 13:56:26, time_diff: 1 y, 296 d, 5 h, 1 m, 20 s
- output's pubkey:
- in tx with hash: <0c019e5c4005cb3ea2a4effa5eb17b0f1448640bdbc7d5c97b5a05e4a2e63c20>
- this tx pub key:
- out_i: 014, g_idx: 90788, xmr: 0.20000000
- mixin no: 2, block height: 129341, timestamp: 2014-07-15 14:00:29, time_diff: 1 y, 277 d, 4 h, 57 m, 17 s
- output's pubkey: <63c01fd955b121fa1d39719689c162e98d7ff8dd59585e62a8fecc0c84f8e817>
- in tx with hash:
- this tx pub key:
- out_i: 009, g_idx: 198989, xmr: 0.20000000
- mixin no: 3, block height: 135680, timestamp: 2014-07-19 22:07:51, time_diff: 1 y, 272 d, 20 h, 49 m, 55 s
- output's pubkey:
- in tx with hash: <0aa844874dd029d3448865e58e1d29b267152dfec09ebe4dae76639339ef7aed>
- this tx pub key: <0f4d742ccf37ddfe23d3bf0158d6c4f0e2c0583db305f29d023996a8d8a1d04e>
- out_i: 001, g_idx: 221962, xmr: 0.20000000
- mixin no: 4, block height: 135964, timestamp: 2014-07-20 02:34:50, time_diff: 1 y, 272 d, 16 h, 22 m, 56 s
- output's pubkey: <29e12f8fc819841d101ca82643456e3d75e09c4b1fb9ade60d16a273bd2a1b33>
- in tx with hash: <8642a866572cb38c2f26707a548f55617004762d9e2601bce02465305b3ffd0e>
- this tx pub key: <824903b1f82feaa64e655261480c37a666e1ffda899a6140017223b1c59e1b5c>
- out_i: 012, g_idx: 223142, xmr: 0.20000000
- mixin no: 5, block height: 137469, timestamp: 2014-07-21 03:42:31, time_diff: 1 y, 271 d, 15 h, 15 m, 15 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 032, g_idx: 229259, xmr: 0.20000000
- mixin no: 6, block height: 139122, timestamp: 2014-07-22 07:43:17, time_diff: 1 y, 270 d, 11 h, 14 m, 29 s
- output's pubkey:
- in tx with hash: <5801df918d06937dd07329c3032bfd51d7986f1f6d6f63e6dc1f3e4acf43250f>
- this tx pub key: <9e3d3b58f3a0b520541c801388456e518aed70a5cb79375cab5ae55b5b405a06>
- out_i: 024, g_idx: 235993, xmr: 0.20000000
- mixin no: 7, block height: 147512, timestamp: 2014-07-28 03:20:01, time_diff: 1 y, 264 d, 15 h, 37 m, 45 s
- output's pubkey: <290bcb5f8b7e3805307826f4adab95ebb0c090aa3b7bc04427dca639991b6c03>
- in tx with hash: <564977d88c9472ded7d2442e86a0d749ef9fefc02afee3eefdfb0344b580ec80>
- this tx pub key: <2bc87a6defaf6c0b9392c8645afc3eeaf68cdd4453f4a04bcd46525f80570d08>
- out_i: 002, g_idx: 268944, xmr: 0.20000000
- mixin no: 8, block height: 184529, timestamp: 2014-08-22 20:54:37, time_diff: 1 y, 238 d, 22 h, 3 m, 9 s
- output's pubkey: <8a935971e59f140e5e279c244cbada9861072f9982888a4d4baa09ec1f50b6a8>
- in tx with hash: <3e9bb3ddf41eca1cd23cb7fcf3556467a588e7264d940e35d1c79ba5e56184fa>
- this tx pub key:
- out_i: 030, g_idx: 396948, xmr: 0.20000000
- mixin no: 9, block height: 202543, timestamp: 2014-09-04 11:22:44, time_diff: 1 y, 226 d, 7 h, 35 m, 2 s
- output's pubkey: <54b610fc1d2a1b8087ed97c27394ffe170387d83c281abd09827620d032ee2e4>
- in tx with hash: <7d6a26b25614d02a10259e4390d0aeaf61bd82c6912c50bed2e8d6f0a3acac0b>
- this tx pub key:
- out_i: 019, g_idx: 464387, xmr: 0.20000000
- mixin no: 10, block height: 261400, timestamp: 2014-10-15 13:54:14, time_diff: 1 y, 185 d, 5 h, 3 m, 32 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <5e2fde8943c0d1864c1b886ae3e36aee64a5d94eec1776f92cf0a3197f23a1d0>
- out_i: 054, g_idx: 562931, xmr: 0.20000000
- mixin no: 11, block height: 266414, timestamp: 2014-10-19 00:14:39, time_diff: 1 y, 181 d, 18 h, 43 m, 7 s
- output's pubkey: <5fc6ecf73c237f3754dd07f32cdffbae79e65d5ed73bb811605ccf4735396a92>
- in tx with hash:
- this tx pub key: <6fae5c08c5d3cb9dbc67fb5795cbcd77ec1001a8abe7dbb58d549308d86b5eb3>
- out_i: 056, g_idx: 568933, xmr: 0.20000000
- mixin no: 12, block height: 297938, timestamp: 2014-11-10 05:29:29, time_diff: 1 y, 159 d, 13 h, 28 m, 17 s
- output's pubkey: <5426f3743732a249b27001a6440eaa337e1b91e102953d2d1e0a70c7a97360e9>
- in tx with hash: <27c4f241697bcb1bbb21233fbcd4ff04a3d249e894ef1f4ace09fded0c6fa98d>
- this tx pub key: <57b8907d1047cee8280c15a11f2b23eb4a7cfbfdf665ba4b5ad20b0600b90c48>
- out_i: 000, g_idx: 607533, xmr: 0.20000000
- mixin no: 13, block height: 297959, timestamp: 2014-11-10 05:53:47, time_diff: 1 y, 159 d, 13 h, 3 m, 59 s
- output's pubkey: <77615f98c696570e33f03956bb9f0e11f60c0d327116db26b3c45303a387d8fe>
- in tx with hash: <294e9d4a179c80436abe0b1b0ea701a8a01f514d5e93bb4c82181f2b949ec888>
- this tx pub key: <04d50cdd0e606ce992305c8d2f0595db275dfcb855cfc2fe5709f001f7a86cc7>
- out_i: 020, g_idx: 607571, xmr: 0.20000000
- mixin no: 14, block height: 311369, timestamp: 2014-11-19 15:13:04, time_diff: 1 y, 150 d, 3 h, 44 m, 42 s
- output's pubkey: <2b689150b98478e93b18eaf15fdaa29009a7806747045a38bb0ea7fd913e51e4>
- in tx with hash: <775d27cf11a446899697d7a93300d07b5e7ad1b74fa892380fd12c5ed1195657>
- this tx pub key:
- out_i: 054, g_idx: 629180, xmr: 0.20000000
- mixin no: 15, block height: 315015, timestamp: 2014-11-22 03:00:48, time_diff: 1 y, 147 d, 15 h, 56 m, 58 s
- output's pubkey: <34e5f09440689c3fd7e6eb9205ca20e53057f2c0592555618a1528d7322e354c>
- in tx with hash:
- this tx pub key:
- out_i: 010, g_idx: 632024, xmr: 0.20000000
- mixin no: 16, block height: 346336, timestamp: 2014-12-14 01:42:19, time_diff: 1 y, 125 d, 17 h, 15 m, 27 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <25db49e4d1d1ac378966a8936b5882825e6e892090993428c3c8222d3c3d1fda>
- out_i: 008, g_idx: 678554, xmr: 0.20000000
- mixin no: 17, block height: 352106, timestamp: 2014-12-18 03:25:36, time_diff: 1 y, 121 d, 15 h, 32 m, 10 s
- output's pubkey: <560ed880d99c973743926eff7eb9e3c6ac4b64fe6b163081cc1cee1c7ddb26b0>
- in tx with hash: <959b573ba4ae15270eb3e97b3d5312aacec82aec51520b8eb4f37f102b1a6655>
- this tx pub key:
- out_i: 014, g_idx: 685140, xmr: 0.20000000
- mixin no: 18, block height: 371148, timestamp: 2014-12-31 13:06:23, time_diff: 1 y, 108 d, 5 h, 51 m, 23 s
- output's pubkey:
- in tx with hash: <9ff722644867c870bae0da0db4a4acbf6ae3187adcc0bd5a8836e73966637a3f>
- this tx pub key:
- out_i: 008, g_idx: 709323, xmr: 0.20000000
- mixin no: 19, block height: 373952, timestamp: 2015-01-02 12:35:02, time_diff: 1 y, 106 d, 6 h, 22 m, 44 s
- output's pubkey:
- in tx with hash: <1854eda26ee569a537083570287f307d5741dac4daaded200682465a3649ef4d>
- this tx pub key: <8c13d252a9e3731727df035381d40e8c302ef5860e7aca42753c3aa37112f5d4>
- out_i: 022, g_idx: 710880, xmr: 0.20000000
- mixin no: 20, block height: 376207, timestamp: 2015-01-04 01:16:03, time_diff: 1 y, 104 d, 17 h, 41 m, 43 s
- output's pubkey: <4a3317bf48391e7012e44cc88ac7f91f097b95bfe2f527bf3defac60c957261d>
- in tx with hash: <1542731093706e150601b0ce6f98aa873836a8eadf215b328d076d6cc8a63f20>
- this tx pub key:
- out_i: 020, g_idx: 713412, xmr: 0.20000000
- mixin no: 21, block height: 379158, timestamp: 2015-01-06 02:50:35, time_diff: 1 y, 102 d, 16 h, 7 m, 11 s
- output's pubkey: <296fb74170b222be553395a5e0d74444dbde8e33cb0a68bd4a405a964e485220>
- in tx with hash: <1e3abc9dcc911064526de76430971de49555243191ac070f5be4d322fd5ea3a0>
- this tx pub key: <0b0493c0ee191fb2d4a42969716494f1ff8b2baa1307ceabb5f76a2f614c34c3>
- out_i: 006, g_idx: 718222, xmr: 0.20000000
- mixin no: 22, block height: 400200, timestamp: 2015-01-20 21:19:24, time_diff: 1 y, 87 d, 21 h, 38 m, 22 s
- output's pubkey: <90f29190b10621f7af51e223ce58cb635a32c16528dab6eb4074e42153fb333f>
- in tx with hash: <66546cb5a7f2be477868eb8214088008d4841f43f1d196d3907f17a9252a0859>
- this tx pub key: <47fb21ee0e5bf97b6f363a2fa1bd658d0b8cfe870b12f898072fbd72cfcb9a0b>
- out_i: 027, g_idx: 746154, xmr: 0.20000000
- mixin no: 23, block height: 429004, timestamp: 2015-02-10 00:45:22, time_diff: 1 y, 67 d, 18 h, 12 m, 24 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 013, g_idx: 776161, xmr: 0.20000000
- mixin no: 24, block height: 446193, timestamp: 2015-02-22 00:44:03, time_diff: 1 y, 55 d, 18 h, 13 m, 43 s
- output's pubkey: <931efdaa36f24c4327041f0cb94cccdf3ffc0dfcd639e265e57d5d16ff00cc5e>
- in tx with hash: <13fa1e5dca4f23ebec36ba606acc5c1b7ea9b7af5bb1dc2333ad658b6de887fc>
- this tx pub key:
- out_i: 011, g_idx: 792416, xmr: 0.20000000
- mixin no: 25, block height: 447562, timestamp: 2015-02-22 23:03:22, time_diff: 1 y, 54 d, 19 h, 54 m, 24 s
- output's pubkey: <706be2ca0d155f7f32ba8762b853a9578199946cd17b814f23fa9954030d4a17>
- in tx with hash: <39f07022022961382e821a6ee0cce7d2fbae88c08d6b038c99683b18dfea74bc>
- this tx pub key: <580fc5ca0b2aeb79096478f416d894120267c8228958d40398287abb8acf7101>
- out_i: 005, g_idx: 793799, xmr: 0.20000000
- mixin no: 26, block height: 468379, timestamp: 2015-03-09 13:35:45, time_diff: 1 y, 40 d, 5 h, 22 m, 1 s
- output's pubkey: <06e7d47d6f24a9c64143e62d08543f1dc4861ff3eabd7d5428c906d05ed12ab9>
- in tx with hash: <34ee7f03db0739baf8f3bd2ff2120d14c1e28b309faf8b4c19cb7172771de8e8>
- this tx pub key: <0f86302c09cafd8fc12a05e4fde70dbeca9a5bec7fc7cc1b834d3f21421f19e8>
- out_i: 005, g_idx: 815891, xmr: 0.20000000
- mixin no: 27, block height: 493800, timestamp: 2015-03-27 07:05:14, time_diff: 1 y, 22 d, 11 h, 52 m, 32 s
- output's pubkey:
- in tx with hash: <0e11bf1b20a1e3cb34c1a146825204c20b5f6dd7b32491649b96a7def32879d0>
- this tx pub key: <30a06dbe327fa826142e4b564bdfa11d54668e0ccfc7fc6c43d0f9206474b3ed>
- out_i: 003, g_idx: 843788, xmr: 0.20000000
- mixin no: 28, block height: 509651, timestamp: 2015-04-07 07:58:08, time_diff: 1 y, 11 d, 10 h, 59 m, 38 s
- output's pubkey: <6849397a44fc2ffecb0b181b2422be16c59b75ac95948213b8984758f2c9f77e>
- in tx with hash:
- this tx pub key: <8274c848eeff03d0aa236400dec9e306d8ff94b73325f77fe6ff2c67fc0250e6>
- out_i: 005, g_idx: 855276, xmr: 0.20000000
- mixin no: 29, block height: 567101, timestamp: 2015-05-17 11:55:23, time_diff: 0 y, 336 d, 7 h, 2 m, 23 s
- output's pubkey:
- in tx with hash: <73c0a8f692b209acad1a18b81afc81f4cedfbe38fd022aa6af7553de9cc68819>
- this tx pub key: <2ab004526bff02dbf98cf511a715d9ac162e330223fae4f98acc274b917d940b>
- out_i: 002, g_idx: 893421, xmr: 0.20000000
- mixin no: 30, block height: 593704, timestamp: 2015-06-05 01:48:28, time_diff: 0 y, 317 d, 17 h, 9 m, 18 s
- output's pubkey: <0290bf1f97ad159ab9e5f0df53db8a0bf77647108f40d44d0dc711c1cc57235f>
- in tx with hash: <54c1ed5037aff23e836413efbf91bd5c6fd912447c1fc2531850058cb269fac2>
- this tx pub key: <94c360fd37e928e0ba039d6f32a7bf46b220aedd0bd9becae00ff3fff62cf9db>
- out_i: 023, g_idx: 916279, xmr: 0.20000000
- mixin no: 31, block height: 603677, timestamp: 2015-06-12 02:07:03, time_diff: 0 y, 310 d, 16 h, 50 m, 43 s
- output's pubkey: <3c73be763e9cb1dc237581c7e8f321fd6c5e9d33c69da636d94001f348f13553>
- in tx with hash: <514738cc67668a57588a274a9c28f4a883083d76f5f291ee1469502b2ac2bc59>
- this tx pub key:
- out_i: 023, g_idx: 921569, xmr: 0.20000000
- mixin no: 32, block height: 617021, timestamp: 2015-06-21 09:31:28, time_diff: 0 y, 301 d, 9 h, 26 m, 18 s
- output's pubkey:
- in tx with hash: <178fa3207ec72d10a193087e33c62e7ceb23f89c0637095725b39b1361217d43>
- this tx pub key:
- out_i: 011, g_idx: 928375, xmr: 0.20000000
- mixin no: 33, block height: 662482, timestamp: 2015-07-23 04:51:25, time_diff: 0 y, 269 d, 14 h, 6 m, 21 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <8e9819f991b77b4977e5e932adec45579204a90b86db10617516a10adca093b9>
- out_i: 006, g_idx: 949583, xmr: 0.20000000
- mixin no: 34, block height: 673338, timestamp: 2015-07-30 19:20:59, time_diff: 0 y, 261 d, 23 h, 36 m, 47 s
- output's pubkey: <290e4312252a024d6b0ec6bdfc4bfa67dd3daff3dd2bb1d1dffdbe0149ea9cf9>
- in tx with hash:
- this tx pub key: <8a771cf841f99a5dbe86cefd2bb1e81d524cf052cb0e9ed5381b087e63b2c4a2>
- out_i: 018, g_idx: 955970, xmr: 0.20000000
- mixin no: 35, block height: 747915, timestamp: 2015-09-21 02:30:46, time_diff: 0 y, 209 d, 16 h, 27 m, 0 s
- output's pubkey:
- in tx with hash: <7bbf35b76bc405ea4bac01d34a48bb87b17f0d7effe4557df2870f2da60287a8>
- this tx pub key: <7b105a939ef1ee96df3aa234eade5563665a77cce4b92c43eb65789a7b4b9266>
- out_i: 002, g_idx: 995374, xmr: 0.20000000
- mixin no: 36, block height: 758774, timestamp: 2015-09-28 18:15:28, time_diff: 0 y, 202 d, 0 h, 42 m, 18 s
- output's pubkey: <102296efc1213890ca3602a2e18056aa5483695b3a9bf86fce9059a8ad05fc0e>
- in tx with hash: <35d90b2d09dc1cdc29edd6906e1f93dbd390f6d755325f79850b5ce631db02a3>
- this tx pub key: <7331e2357703eece3297f4794aed68e66b9750d05fa53d606d33739f89c3b5ba>
- out_i: 015, g_idx: 998565, xmr: 0.20000000
- mixin no: 37, block height: 883597, timestamp: 2015-12-25 18:53:00, time_diff: 0 y, 114 d, 0 h, 4 m, 46 s
- output's pubkey: <4444724e9fa7bf712c5df3edfe998b5e1f4b62f6bcbd9f0d720ddcf5707695a6>
- in tx with hash: <542e1770da7c481c71e0d73624d295ff7397ec7e2f3cab0526e163c63cbb7ec2>
- this tx pub key:
- out_i: 018, g_idx: 1050693, xmr: 0.20000000
- mixin no: 38, block height: 953962, timestamp: 2016-02-13 13:55:24, time_diff: 0 y, 64 d, 5 h, 2 m, 22 s
- output's pubkey: <75392e820b358563e8573baa0f60a38a42bf3c3cb163d9729bea107d13453832>
- in tx with hash: <25e363869de22c7db54930a9781eb77bb67b86ec103f51457b781efa60543dbe>
- this tx pub key: <3f37fc589d2d497f352ba34bf91e3fcda4f6c881436ff375b2cc45afc3267711>
- out_i: 002, g_idx: 1083047, xmr: 0.20000000
- mixin no: 39, block height: 1012956, timestamp: 2016-03-28 05:35:21, time_diff: 0 y, 20 d, 13 h, 22 m, 25 s
- output's pubkey: <0c0ca874f8937c342a6bb2fed5598755d5c9b286192157102408bf9fcb55ac32>
- in tx with hash: <4367048082fb1f56a7a4b2af591fd9540ecec36d9a502d33302ead3fd55ab641>
- this tx pub key: <879708712c5dc95abdbaf06f4a79097e021eb5e60c03f3a0ad1fadb107450f84>
- out_i: 009, g_idx: 1100294, xmr: 0.20000000
- mixin no: 40, block height: 1014467, timestamp: 2016-03-30 10:18:37, time_diff: 0 y, 18 d, 8 h, 39 m, 9 s
- output's pubkey: <00961582ef69b5e054c1995c23011ec9468b543ff86033347efb7598a4dfe19a>
- in tx with hash:
- this tx pub key: <09aeed2b42e53b785e9820a7ee913d1567e03653c91fc6d9fd596ddc6c73a287>
- out_i: 011, g_idx: 1101019, xmr: 0.20000000
- mixin no: 41, block height: 1026806, timestamp: 2016-04-16 17:57:17, time_diff: 0 y, 1 d, 1 h, 0 m, 29 s
- output's pubkey:
- in tx with hash: <4f75ebb511f9f6038049a05dd6f328a7b1a7f6a728d8c569b446ae887834ef28>
- this tx pub key: <8f2973766ca42c9e42a3f897da2304e8576d250e03087dd170259dd8b8afe53b>
- out_i: 001, g_idx: 1110588, xmr: 0.20000000
Ring signature for the above input, i.e.,: key image <5d55aa0ed8ea271992163bcc88bdd3935e8a3d5631bf3d737754a28762ef816e>, xmr: 0.20000000:
- c: <9984c43462dda339d2add8d7ee95b1379c798f146e589dc06e906e122a025003> r: <54f09c277a716c57864fcb09fb365f0408b7bfa346177ca3591ed4b5873be90e>
- c: r: <1a213be809ced48a55b97e831fb082793d8d15bd7fb84629092c6f425eca4e08>
- c: <0a496e4636d3c1a78503dbdf74404e1ae8eb7a8f9107ecdd1060d2dbd89a4508> r: <4f29dad02cf533dfefdff918be4a397954c6b58e372294fda01866e7e66db403>
- c: <5d38d007e5b0b23c766b8661a19fcb2bed9635c99682fca5131e9d0e58650d08> r:
- c: <8add22ab50a372f18006e1993171618f195f753415c242f9455e81f73125bf00> r: <6c469d3d47a0ff90a5a74c365ba691d5540a65f7e26ffc39a8762f3b791df908>
- c: <24e5c2167517a068407d3fae80534e46ba768350d4a878b734c88ebdaa5aab0b> r:
- c: <3cf44b15bacf8ae0f23b658a3fbd6603f966c53e1756c5e3a4c6411fce17e103> r:
- c: r:
- c: <6dac2275404674a24dd83be623c04c54cb002e67d9a06a7beab9a853777e110d> r: <6bd81abdd9c96b5bda04222eff1eb00e3edbbb42b70454abfa47ec4021b3dc0d>
- c: r: <902b29fcf49f5cdd901b7a4b08e23f43c9e59f66b5ef3471aa29a18957086702>
- c: <7a4208913ad55971effabdf2b8d60947f2c49e0ab00dd32cedca984242c5b107> r:
- c: r: <9668a28881444371d4e34455f55bcf651c1054f51ea200a6ad9612ab8b43360d>
- c: <577058818a3ee089cbb61f4445824319e3e429b06e64e14fc47e6f6792eb7c03> r: <1b1e394324932cb6f4778512e9a6ad534a2d7d64985f944e7c2146c0b6b5a807>
- c: <761df6896db316b71bfb1e30b1a60d2ffcb6db749e5fac61063414faee496d0d> r: <5c5a2d38ad242b3e957c5609fb545f175f2a5ea7124bf159cb75c9e8a755460f>
- c: r:
- c: r: <6ef180301cbcde08c0c771ec0ed5fae00b1d124a0d241dfe86935495dffb1c0a>
- c: <1695e336213dc296396cfdccdb3fc4b6141873fa6fb319dc2a850aef94e37c02> r: <13767251b3db2270199673a559e8810c17a39144384d1f5128bd8926e0166f0d>
- c: <44d73e4c89cf471ccedc664b29bf127bf1e2f3321b6c3ed42312681ec5add401> r:
- c: r:
- c: <60f2fae222baf7e48e2a76f42740632512f970bd2724b787cec0a2919cb5d601> r:
- c: <599fa7e8ca21fb768549e0954b515e395033dcabbed31469836f144ab96c7802> r: <1ba1fad4287b35f9a5fe1cf10173a5eb480124bada1cc11aa003eb1a92c02504>
- c: <93680f3c8a043306ca55f6d590b68e63123822cfb1febaa877c6fdb62d77530c> r: <1c01165a4f96fea490171a37c52c30dcb1d4d05ba96eb999b413a2e158874b0f>
- c: <3bfd18ce8d5600dd5af2661e9d1cc51d1c14d8cbaa56ac297fada6817c730e0f> r:
- c: <8de304b810da70a08fd460f4abd22fcac0042d2e9f11b972b11c7d6784d79c0e> r: <413d468cae885e41fb09667ace8d1d6453f6e12f34a35ab2ef821cf22436690c>
- c: <2ccd23293ef04ff9d86b611390cadd9a863167d006db36d7b3d17854154fa30a> r: <14e1263bf6b482bee1d95dcfcb55ff63ff20c554dce660c157ca43f67b2d6d00>
- c: <7d14ab25d98c2c3c3dadc673875640b78c8aa0d06ef251c16220901289e53007> r: <5163242441c19f49ded09039c5dbe188eacf775dd9f933ebcb92195f3640f108>
- c: <38c866d239e564ef29260022564339eb67573280a1befc021e3f14faac099e0c> r: <09e782071d3319d85b9e3a0451de6047590b769dc05a5b2eec159f7048d29f0a>
- c: r: <8b557e7a3c4fd2d3c87c0386f4247ac9ccd91a0cce5c191a8cf47c40a4afae0d>
- c: <4ed8f283eba531e22563879b5cd24cbd97d0d1be377a92764a96bd4a87777902> r: <528c9bc80d343dac10992d23771e9ac24f686136f31b5678738ea325e443af08>
- c: r: <65e6738de87bcf691dadc3fcbab661150fa1ddb6d9402a7a7e25e8d1f6b4d208>
- c: r:
- c: <3f5c780705a90ca150df8013343fc8563b7aa973a85b4d3b3675479e9582d60b> r: <9d0c5fd9adeb5849181da425c91e82ada3cba9a11eb0e9219e62063e178a4e0c>
- c: <01d55bca462078fe95ae7d9ea6fb29c7dba8ad6b187912bc728b079bf137550a> r:
- c: <447068616f5daf8874b02845ad82492a5bf969fa21e25e28f807ddd429758d01> r:
- c: <1c12bf7a6b1e657d14b24603bf753f8d51bac76198c17e70c7298d4ae63c2704> r:
- c: r:
- c: r:
- c: <34c4eebb85ad249fe704417c236f0b5b5f867d3d28bf6a5ceb26895320d74c05> r: <09ca2bea77626ad892ff39d2ee14f321766c5d46c1803793cd2e40d2ecb6b600>
- c: <3698f2719650653f379bb9e1ee0b766ae8064fdb29ef7df8d5e824f4ed3c8308> r: <560e7624875e37bc56c6f9d8321a4e76d3f5c95385c829603e5456bc50069f0c>
- c: <72cd6b5f941533d138d7fd32db93e91fd6f2c289ca637c82caf234899174420a> r:
- c: <6bbfc0d39982f1bd1f93a2d827f2ff9a6cdaaf9346a749ff0138eb24b0aa5600> r:
Input's key image: <3388fa17ba0e6ebe447a020edcd7f8aa3344ebeb927d327e224873cdd5ac6d8a>, xmr: 4.00000000
- mixin no: 1, block height: 89380, timestamp: 2014-06-17 23:07:32, time_diff: 1 y, 304 d, 19 h, 50 m, 14 s
- output's pubkey: <3dd03b683d9c7794559be751f88bb6899a1d8cd921f8694796a70c586900c492>
- in tx with hash: <0e90ce87bd13027200eb89165fc139a8f6a7b83f005bc44a0bc46f8686f722f7>
- this tx pub key: <28a390a786e6847bec8cd671154e84bc3223964ad4e113b41ba6d69f1c5e4471>
- out_i: 038, g_idx: 9933, xmr: 4.00000000
- mixin no: 2, block height: 116515, timestamp: 2014-07-06 14:19:34, time_diff: 1 y, 286 d, 4 h, 38 m, 12 s
- output's pubkey: <72635e93a181d0b8c48501be1298eeb4c331b5ba0bc1cc8ab7b0f7c450b42ed3>
- in tx with hash:
- this tx pub key: <668e2eda1c0cb269d05bc5388b7f1badcb585546eac330ffccf3e09300ea8b95>
- out_i: 057, g_idx: 19360, xmr: 4.00000000
- mixin no: 3, block height: 171186, timestamp: 2014-08-13 14:33:29, time_diff: 1 y, 248 d, 4 h, 24 m, 17 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 004, g_idx: 37510, xmr: 4.00000000
- mixin no: 4, block height: 181943, timestamp: 2014-08-21 03:04:09, time_diff: 1 y, 240 d, 15 h, 53 m, 37 s
- output's pubkey:
- in tx with hash: <6e704d563335290492d37011b6dfd9379fcf356e6a4493bd7bb16a843524580c>
- this tx pub key: <3b4374dd27231a38ffe52446ace13bae40509de7ffe030840fcc1cad0d37136d>
- out_i: 003, g_idx: 50524, xmr: 4.00000000
- mixin no: 5, block height: 187900, timestamp: 2014-08-25 05:01:03, time_diff: 1 y, 236 d, 13 h, 56 m, 43 s
- output's pubkey:
- in tx with hash: <3235e3bd99f1da7b32e724b4485bad9e8da93cae665c550f7080df3a7bf88271>
- this tx pub key: <91e3d26e18ff9b3611f6428690464823e97c017c3706f278bce4202631d1317d>
- out_i: 002, g_idx: 57695, xmr: 4.00000000
- mixin no: 6, block height: 189631, timestamp: 2014-08-26 10:48:04, time_diff: 1 y, 235 d, 8 h, 9 m, 42 s
- output's pubkey: <42cd34db4970efc03e5070a431eeb55394ef9ace39c6324b6f3d4453fc4a320a>
- in tx with hash:
- this tx pub key:
- out_i: 002, g_idx: 59658, xmr: 4.00000000
- mixin no: 7, block height: 194712, timestamp: 2014-08-29 22:42:43, time_diff: 1 y, 231 d, 20 h, 15 m, 3 s
- output's pubkey:
- in tx with hash: <001e5cdff9c57b751a6e3e282c9c5a9acda0f76f31c2040af84ec1624e80a73c>
- this tx pub key: <99401eea2c015379ed8aee2379fa19763b585a7c333cf8e805735c8239e63924>
- out_i: 009, g_idx: 65537, xmr: 4.00000000
- mixin no: 8, block height: 199738, timestamp: 2014-09-02 12:17:13, time_diff: 1 y, 228 d, 6 h, 40 m, 33 s
- output's pubkey:
- in tx with hash: <6a000df04b5f9552c3b526cb606d77ecbea642a1b3cd7618fdefb16717184072>
- this tx pub key: <15c690cace2127e2694969df2c57b0d7ecdad0c6712b4012e9ade249421c2f0e>
- out_i: 002, g_idx: 71252, xmr: 4.00000000
- mixin no: 9, block height: 200801, timestamp: 2014-09-03 05:24:35, time_diff: 1 y, 227 d, 13 h, 33 m, 11 s
- output's pubkey: <4c791376f1a7feae9c8d59f71daa6e82fdab42130b770889e7aa7c16676d2b38>
- in tx with hash:
- this tx pub key: <16340e6db0705ccb4fb8ea84b6a3333a08e5402aba59dc49f55db7d22e8c2396>
- out_i: 002, g_idx: 72459, xmr: 4.00000000
- mixin no: 10, block height: 213038, timestamp: 2014-09-11 17:54:44, time_diff: 1 y, 219 d, 1 h, 3 m, 2 s
- output's pubkey: <0bbd5091db11c0da06144592e449043417b4e87e05ce817331995c556435f62a>
- in tx with hash: <204d2ec86ac1c37f817b20cd72a1eaeeb692ff766f16b9ba6a83a2f6a4f791a7>
- this tx pub key: <9d50e592b019dfef2b9d8a6bba485ca76c6269329272dd3738e8ee91ed233d30>
- out_i: 002, g_idx: 86680, xmr: 4.00000000
- mixin no: 11, block height: 217674, timestamp: 2014-09-14 22:58:02, time_diff: 1 y, 215 d, 19 h, 59 m, 44 s
- output's pubkey:
- in tx with hash: <199fd1fcf1a56977e21b3b71b17bbd80a9a4311ba1fad64221b05cf230c19b86>
- this tx pub key: <2478f945e8b31a14a7ccd0c2c0655f24222f7edfbe0f756ac87fd869323c93b7>
- out_i: 002, g_idx: 91986, xmr: 4.00000000
- mixin no: 12, block height: 224804, timestamp: 2014-09-19 23:20:15, time_diff: 1 y, 210 d, 19 h, 37 m, 31 s
- output's pubkey: <0671941455291c653581e795564502fd0e4d74ef1742041d65e6f831284a4a23>
- in tx with hash: <41383904471dfaad6599d827d84e6cbd28fc96caf4303ccc4640f1f1a7bade33>
- this tx pub key: <59de045c00d71dd9e9dacec1565ac8d585b632dddabf8ff88841893fb98f5f43>
- out_i: 002, g_idx: 100053, xmr: 4.00000000
- mixin no: 13, block height: 225372, timestamp: 2014-09-20 09:21:24, time_diff: 1 y, 210 d, 9 h, 36 m, 22 s
- output's pubkey: <645fc51e8a39dd457d3b20f90df4e4aac3366cdb54a6054ee65db42f7c249b7e>
- in tx with hash:
- this tx pub key: <9b02abdcc465a6ebb1b5fb5423737668a8d57c34d16a15850ccf31c51ca7ade5>
- out_i: 002, g_idx: 100677, xmr: 4.00000000
- mixin no: 14, block height: 228341, timestamp: 2014-09-22 11:51:21, time_diff: 1 y, 208 d, 7 h, 6 m, 25 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <6383faa3a21ec4e207f28e573d355ff31fea00efc113bb846c07e1ae77ecfe2c>
- out_i: 003, g_idx: 103987, xmr: 4.00000000
- mixin no: 15, block height: 231690, timestamp: 2014-09-24 19:14:37, time_diff: 1 y, 205 d, 23 h, 43 m, 9 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 002, g_idx: 107786, xmr: 4.00000000
- mixin no: 16, block height: 235551, timestamp: 2014-09-27 11:55:44, time_diff: 1 y, 203 d, 7 h, 2 m, 2 s
- output's pubkey: <5e63aa5d15d5a05338f253533def543231c47f018a1517f7210e49f4f55b3df8>
- in tx with hash:
- this tx pub key:
- out_i: 001, g_idx: 112162, xmr: 4.00000000
- mixin no: 17, block height: 236860, timestamp: 2014-09-28 10:42:32, time_diff: 1 y, 202 d, 8 h, 15 m, 14 s
- output's pubkey:
- in tx with hash: <2bf1235d965cfa593304e5da5f3f860645baa80a701748e000979e55aa66434e>
- this tx pub key: <7467ad45d794c1d4c1c80c98b9636156d2ef1dec8ab5d77aa289a195b1735d1e>
- out_i: 001, g_idx: 113638, xmr: 4.00000000
- mixin no: 18, block height: 241797, timestamp: 2014-10-01 19:32:12, time_diff: 1 y, 198 d, 23 h, 25 m, 34 s
- output's pubkey: <61a245e02483babac579d6ad8c3e34ab9290a5563fab2c53b044558d129f898e>
- in tx with hash: <307d140a030a7566f4fbdcb495230703b7d89229f19b9e7c207083c38c1772d7>
- this tx pub key:
- out_i: 001, g_idx: 119279, xmr: 4.00000000
- mixin no: 19, block height: 257080, timestamp: 2014-10-12 13:00:20, time_diff: 1 y, 188 d, 5 h, 57 m, 26 s
- output's pubkey: <07b9b9ed07c1a53c29b5ec6ae8d9d54398306c82cbd2682cb2f2705dcfbc7e63>
- in tx with hash: <499ba7bac86724e7adcc065bdcaa751301c53ad1166095a6f61030413f532ea0>
- this tx pub key: <33b30fc68bdf1ac1b620558672f158894125db4f4e3eb7292b68f0b93a8a6e36>
- out_i: 052, g_idx: 124385, xmr: 4.00000000
- mixin no: 20, block height: 304396, timestamp: 2014-11-14 17:02:52, time_diff: 1 y, 155 d, 1 h, 54 m, 54 s
- output's pubkey:
- in tx with hash: <408b2d0c5b38523280c3e753f8d21b6391da00b42941c4f45d9b97fa03371d9a>
- this tx pub key: <9ac9a65fbd7f6c40c7c135df245aac3909ce3ae411d0eba46ceb76b2debfa05a>
- out_i: 003, g_idx: 130969, xmr: 4.00000000
- mixin no: 21, block height: 313669, timestamp: 2014-11-21 05:38:13, time_diff: 1 y, 148 d, 13 h, 19 m, 33 s
- output's pubkey:
- in tx with hash: <089510fe8c9d6f50f83aff077f287af68b4e85b07d7f3d07136df3f39b7fec9a>
- this tx pub key:
- out_i: 002, g_idx: 132318, xmr: 4.00000000
- mixin no: 22, block height: 391362, timestamp: 2015-01-14 18:06:38, time_diff: 1 y, 94 d, 0 h, 51 m, 8 s
- output's pubkey: <5a92d75b3b844141a17027702e1a3d32c7ff0675cd84f6d5331aca0cbc032bce>
- in tx with hash:
- this tx pub key:
- out_i: 002, g_idx: 142426, xmr: 4.00000000
- mixin no: 23, block height: 485170, timestamp: 2015-03-21 05:21:42, time_diff: 1 y, 28 d, 13 h, 36 m, 4 s
- output's pubkey:
- in tx with hash: <787f92edd42c5d9e00eba73f6035e1e4019487a65f89f5178fe9a511f369e65f>
- this tx pub key:
- out_i: 002, g_idx: 152235, xmr: 4.00000000
- mixin no: 24, block height: 545981, timestamp: 2015-05-02 17:30:06, time_diff: 0 y, 351 d, 1 h, 27 m, 40 s
- output's pubkey: <83a70450a3d98ae5b478ee7abcd940f597248365ab407888078f4417d7d2f56b>
- in tx with hash:
- this tx pub key:
- out_i: 051, g_idx: 158844, xmr: 4.00000000
- mixin no: 25, block height: 553781, timestamp: 2015-05-08 04:00:17, time_diff: 0 y, 345 d, 14 h, 57 m, 29 s
- output's pubkey: <8d26116a9af1385f4ea243886185155636377815ec502fd688cbcacc2b0e83ea>
- in tx with hash:
- this tx pub key: <92ab485afc4989eb55dd53a3fb5d06f6bec62ba948633a970d3a4805f6d08964>
- out_i: 003, g_idx: 159578, xmr: 4.00000000
- mixin no: 26, block height: 555396, timestamp: 2015-05-09 07:47:28, time_diff: 0 y, 344 d, 11 h, 10 m, 18 s
- output's pubkey: <72200f2a8dc213fff53a723b3aca605bc6b40de6ff4df4af5ad2a5e2b7c5a570>
- in tx with hash: <38d25f7c5c02e52144fe3b7b63d46858a8de8faa5273069eb90f508066989ea9>
- this tx pub key: <26afaf0cd52387a1cb9b4162d57bf6b0dd56972d062ea972ca85d937e4a17f74>
- out_i: 001, g_idx: 159752, xmr: 4.00000000
- mixin no: 27, block height: 562276, timestamp: 2015-05-14 02:25:49, time_diff: 0 y, 339 d, 16 h, 31 m, 57 s
- output's pubkey: <66810c2b814ad66578c96a222531b89698336266539b55f85578f36469c715c2>
- in tx with hash: <1f418022c54d116dd4413ab84150a81b49f7e98e7d0314eac8bab10b2220c996>
- this tx pub key: <63133763a43c062f5f44f4716ff384526c52295ed2ec164f22f06becbdf996cb>
- out_i: 050, g_idx: 160379, xmr: 4.00000000
- mixin no: 28, block height: 645793, timestamp: 2015-07-11 14:11:50, time_diff: 0 y, 281 d, 4 h, 45 m, 56 s
- output's pubkey: <79c42883620fbe605f044f8a7b84be622bea80ed578a6dde6210a3b8d984f15e>
- in tx with hash:
- this tx pub key: <9e7e1076804b7b1c51855443fbea0a962808081fb9efac3a06a19cd3195b4095>
- out_i: 054, g_idx: 167733, xmr: 4.00000000
- mixin no: 29, block height: 688370, timestamp: 2015-08-10 09:02:27, time_diff: 0 y, 251 d, 9 h, 55 m, 19 s
- output's pubkey: <470a8fcbbdd85956b2b3fa8b98f80b35b709a3a2d04e7638e5a0758c5c817e17>
- in tx with hash:
- this tx pub key: <10f14cfb44d728300b16b53b47b5b8edcd5d66e71a13cb993ef7ffdde227200f>
- out_i: 053, g_idx: 170999, xmr: 4.00000000
- mixin no: 30, block height: 705096, timestamp: 2015-08-22 00:42:46, time_diff: 0 y, 239 d, 18 h, 15 m, 0 s
- output's pubkey: <5bfc548298bfe0642455c3102b907d5df4bdd86efafcc5485e454938b1d3002b>
- in tx with hash: <1db2b85f66a6a24cb8b8269e2cf8cb5cb322646eb7a77e4e21f4fb92a79849d7>
- this tx pub key: <835a620a59dd9a571e06ff8301e016119a3c5a640d8ea4439114be5437684e1a>
- out_i: 101, g_idx: 172162, xmr: 4.00000000
- mixin no: 31, block height: 718347, timestamp: 2015-08-31 09:12:35, time_diff: 0 y, 230 d, 9 h, 45 m, 11 s
- output's pubkey:
- in tx with hash: <99e0786d9e3fba80f5fc1e29e7eee2f1c17d15b92d3195eee3da3b15913c714a>
- this tx pub key: <0d8b30372b6824c26699277c08bab5eecd00628a7f9b2e66c70b60ac3d8e0266>
- out_i: 013, g_idx: 173024, xmr: 4.00000000
- mixin no: 32, block height: 730823, timestamp: 2015-09-09 01:57:01, time_diff: 0 y, 221 d, 17 h, 0 m, 45 s
- output's pubkey: <28e856aaf2064be9f02bc04286dd2e7bf70db26d83047db88dd05c79313eedb5>
- in tx with hash:
- this tx pub key:
- out_i: 003, g_idx: 173869, xmr: 4.00000000
- mixin no: 33, block height: 772373, timestamp: 2015-10-08 07:40:26, time_diff: 0 y, 192 d, 11 h, 17 m, 20 s
- output's pubkey: <1ce79ba7dcd1bc4abca5de8d06085b1779bab6098c87a07ee70489efbcc6781b>
- in tx with hash: <77f68dc114fd31ab05767e4019d3994042dae5830d2c48d2bc740f4c5ca12ff1>
- this tx pub key: <58c9a61eaed347ab0f24f189e546da605121ccca393acdf3e5021f9d76c57c3d>
- out_i: 003, g_idx: 176462, xmr: 4.00000000
- mixin no: 34, block height: 773216, timestamp: 2015-10-08 21:07:39, time_diff: 0 y, 191 d, 21 h, 50 m, 7 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 041, g_idx: 176508, xmr: 4.00000000
- mixin no: 35, block height: 801354, timestamp: 2015-10-28 16:24:57, time_diff: 0 y, 172 d, 2 h, 32 m, 49 s
- output's pubkey: <353d3c08f371186a733ce1f35ad7e0b88be7fdd7ab8e065a2af9af30bf2c1fb6>
- in tx with hash:
- this tx pub key: <26fbc6a621ff55845e3ba7d8a89bcff94554c3bd49a3c566353ba405f5e3e680>
- out_i: 037, g_idx: 178317, xmr: 4.00000000
- mixin no: 36, block height: 913621, timestamp: 2016-01-16 00:57:10, time_diff: 0 y, 92 d, 18 h, 0 m, 36 s
- output's pubkey: <4f0e0cdf759563581a08163f9a13b79e6658115af75b4605c5473528916a9b9e>
- in tx with hash:
- this tx pub key: <758a6e92886d58fa1fc577ff7271ad0f1e903db249cb4ba54c0b629cd403f635>
- out_i: 118, g_idx: 186026, xmr: 4.00000000
- mixin no: 37, block height: 918755, timestamp: 2016-01-19 15:57:47, time_diff: 0 y, 89 d, 2 h, 59 m, 59 s
- output's pubkey:
- in tx with hash: <88239cea4d5d317e9d8b335ac8f6484ebcc31012ddda0304d371236705113715>
- this tx pub key:
- out_i: 097, g_idx: 186338, xmr: 4.00000000
- mixin no: 38, block height: 920884, timestamp: 2016-01-21 02:47:55, time_diff: 0 y, 87 d, 16 h, 9 m, 51 s
- output's pubkey: <25b03e44bb42b28bd8b03b54930b871a500ce315d9a2dd371c01d973091f720a>
- in tx with hash: <0690cea080238c267c6698aafe6c7602a15a93b6a417516ce8d6646a05ba6302>
- this tx pub key: <63727b84a129dbade21d74d4f612c1a90fc8dc0f8159410a872e0c51d283d814>
- out_i: 002, g_idx: 186505, xmr: 4.00000000
- mixin no: 39, block height: 950117, timestamp: 2016-02-10 19:22:25, time_diff: 0 y, 66 d, 23 h, 35 m, 21 s
- output's pubkey:
- in tx with hash: <0c9c229fcdfd07003289044116a30140144b5c50f60f06c0d79216ed17a04054>
- this tx pub key:
- out_i: 007, g_idx: 188540, xmr: 4.00000000
- mixin no: 40, block height: 982099, timestamp: 2016-03-04 11:28:38, time_diff: 0 y, 44 d, 7 h, 29 m, 8 s
- output's pubkey: <91195aee03efe73e7c83f7adfeae5727853bca2015d973ad4483f5de02542033>
- in tx with hash: <5b4bd0034b15a81ffc1f2160f825cd12f219f0b5cbaba03df06a1107941ed98b>
- this tx pub key:
- out_i: 002, g_idx: 190805, xmr: 4.00000000
- mixin no: 41, block height: 1026460, timestamp: 2016-04-16 04:11:19, time_diff: 0 y, 1 d, 14 h, 46 m, 27 s
- output's pubkey: <95394e6c055843df4f148e882138feec6f4e7c2d30eb5dc545e85a2abfcdc070>
- in tx with hash: <4fca96e538c0bb89b463722b059ca606713432f2dd0e8580cccfb2a17c406f06>
- this tx pub key:
- out_i: 002, g_idx: 195515, xmr: 4.00000000
Ring signature for the above input, i.e.,: key image <3388fa17ba0e6ebe447a020edcd7f8aa3344ebeb927d327e224873cdd5ac6d8a>, xmr: 4.00000000:
- c: <47832886902bdaa5f267f7627733330daa6aca58646794a476f857136334e003> r: <981e4fc408b5cac4e3e0780c35c4921fa050ac42e9e87ff05690566d8255ab09>
- c: <1680b46d7f3494bbfebbe3188962f479c83e69e69002d9e58dd894b2815bef0d> r: <502bda4de58fdbb24e33c34785f93cad305a2c929d27103af686fcd81ba81c0e>
- c: <9c1386599c455a5eca95cde9b24a32df7796915dde9ea514a7fb78421490050f> r: <14bbc5448fb29b39a086055fad253fa311b29982d93af0687f508d079492d80a>
- c: r: <38e13e788c127093500668e70e2d2d5b1e7c2eef6f9989eccddff02cfd24c704>
- c: <9be5562161a53f88d1fa7f951437a32484e7c74c51b58fc288c8f999d8e8280f> r: <08f09014508576d90e5286242a395ca74e12bea897caa53d2bed1c2a01a2220f>
- c: r:
- c: <5b159eff9e2e6bf8db5868c95daeeb8a8e9ee726eb5dd449c869de14f540aa0d> r: <4084342576412d9b273fe93b99b186678cd40615d37c94a0c6482204e7fa0e06>
- c: <805ea0b51273b5a65ec5eb92c3854d9814cbbd61b312faf2d63ae72e4255c608> r:
- c: r: <811090d74522077c2a404000ef7894c43cddc547f713fec9fceaab7c18bca903>
- c: <729cfccfd04a7cad265624ba6c49d2ca741721b58f43ac532896cd23e350ee04> r: <0c76edaa493a990a28d05d392905fcea9bad5a5b522ffc395ab798590131070d>
- c: <5298cc029421f38e668d7d9f1a76cdafeed2f656b186231bfd089bbb82c1a105> r:
- c: <9cdc01268fe3c74a808edcb511b5fcea1ea040c3945c94945b1c0b39ced0d908> r: <7e36dc4cbf60599a4a625a049afc303eeefdc77dd464582abbe494e9573e7505>
- c: <8a2001d376247125c1525dc3d4c5e3a31482eb6b3ea7cb077f10045afa26e902> r: <03a1a0243bb978b05a712507acb4662d933e59b1595ff5c6492a3f6ae3935707>
- c: <94a65507e54729f14d3913e324405748798079d45979b3196026cea17df3460e> r: <64b6b2a55ff3bdb0be45c95c8c49d1b1f7955e6885879fea1a34aaba9e9c4c01>
- c: <01bbce4bc582a824a5e7b396532c1fd276b896f4bcf81d97690b98142903840a> r: <532d61a41a1462bd91bf691d686068638c9d21bb1d4f43eb3d1b4488e32e5c05>
- c: <535cfec259556dd71dd0a77331acb1c7c0d1f6ace792be44be468e8d2cddf808> r:
- c: <4266ab74ee3c456e10e04104e0e383cb35f79c730d25fbb3a295c538000e1a09> r: <79026b50b5ead4f3a6a1701dad83363858ba16eb78fdb6b182892eb5f8a56400>
- c: <8dde34ae6dbf639cb7373664aa03f084313a0532dc5a607bf17ef00e24d69c07> r: <6d59a6ba590f0b91fe11b5459109cddec440f4e1c96215bec0dee568f81eac04>
- c: r:
- c: r: <47f4b8afc844cfeafa1c4cc3ebf9c09ce1c9756f462b2b58e38ed88e4d351905>
- c: r: <6a0bf0bc2efa74c0756d034a26efa7353b4e9021647c4614d2179f5bc4f6e903>
- c: <04fa49a97b4d16e820c4d50f98bafd466535f4a9d568d7ca4f272f8bcbee4508> r: <55ed8ce9efe02cc6bce8d9e7de35539ef55acf22937fbf3a7db0dcea83117708>
- c: <33419b67ac54daf48e8e96045815361579b6c9e711dcd286cb0b416c8724a90d> r: <07109d3e88af522583613dc3d1160f1a755fad4c1bc4b969dd0ccbb2e9034007>
- c: r: <4c188bd3eb896c0f3cebb9fe31cc790dc9a40bef9518c88b7168a9f31443cf01>
- c: r:
- c: r:
- c: <491d0a77fb0ca3c6f33a3a218dba1c45e6daf263b5ecaec0f3a28e3f96f06a0b> r: <929b4ad46470d2d6025ce336b72aee2807eadfbca853347f53a4f0897a68eb0c>
- c: <879c3a4542442f8649012d404b77fc8f1bcd730cd74f11d668ced22a7ef82d08> r: <522e6c83f35d2eccc9623b4827c170ff995c9f29263bed1f214f641d5d33d208>
- c: <77547ad5e3886ac79d52f019aa6d75738bb142412fd2c12628cf0506ff029c09> r:
- c: <6b47c8a9b224cf687bff641ca3709b105e5a2a2b1651d257cedb2470bbc90407> r: <94cee0f240e9fc3da78fa4367e4ca4cafeeca025fb5daec3f8a2aa9ba472d50f>
- c: <3db588836fbe7a62fb8bd4c0797449cc86b658aa6f9d15ec2f70efc19aa4e704> r:
- c: <50e87c986f2c9329b8e238477f8a820e46eff4d4cf8ca80386b92503f2d41103> r:
- c: <98940eebc70567beba971fcbc9e80dfc17297d0a3453638307b3d4391d17190c> r: <9cc932bf0633121f0c9430cd631bb9363771eb7f2137656ce3f63a811c941c06>
- c: r: <87e01e69b6241f0d8fed5971c692b3b930a698fd2b84ee7147e74dbe213b4d0f>
- c: r: <9a64c9747de2103b2afb2385f5ddf6cd2509021d6d0d16b131632641aa2b9e0b>
- c: r: <02e8bc88a04bae7c11897ebd03af53bb2e7d79e4df8bb9788d310a883e925709>
- c: <522ff80633f6ecaaf6f9949fdedc070292b1a94c76d7f081efabac0a0976c203> r: <3a9f55b8a827947b0e52fc42dd565935a7e15004c28836d479f40ea8ab4b7b08>
- c: <4f95e07b07ae7b314c27ddfb33513df6a69bf312a856d5dd6f031b0c05216c0f> r: <4829f20e4d05baafb577c23e0adeb9bab8d0f787dfabe9d27750340045ec2100>
- c: r: <836fb3e0a1454ff23f4438db36770ea7f4fb04acd82e23707f4cce11c727860f>
- c: <453b44e9827fed274bcdd52ebdf316810686f8d5fb274377b2434a1cbc7d9906> r: <1d0707a6f4602540e60071e6ab021c1150f30905b3ece0eb75159c826d8c400b>
- c: r: <427b393e1a12e4f00f55dc1cb9260a4a69a020f7b64801a39769c4aab1306e04>
Input's key image: <3e2e56c989c01e3388d8577388f4ca8a69669db3cdb7893238c6324f26aaad8c>, xmr: 1.00000000
- mixin no: 1, block height: 131750, timestamp: 2014-07-17 05:33:26, time_diff: 1 y, 275 d, 13 h, 24 m, 20 s
- output's pubkey: <0ccbfcbced01c6ea068366f404f5813f302d4dafcaca3bafc058a365473bbfd5>
- in tx with hash: <4433bb0e5f290f7c52d1790d18d51cdf3c192888b79b8895680140ce5e655393>
- this tx pub key: <7fecf3b1f8b984a4351a79e01c901c12678b6cff766220288fdc5c5dcf256fde>
- out_i: 018, g_idx: 108502, xmr: 1.00000000
- mixin no: 2, block height: 156251, timestamp: 2014-08-03 04:07:49, time_diff: 1 y, 258 d, 14 h, 49 m, 57 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <843c114ed594c3db5f8ac9d674630b59c64a0d5558db974831c179e087a30900>
- out_i: 100, g_idx: 160103, xmr: 1.00000000
- mixin no: 3, block height: 183758, timestamp: 2014-08-22 09:27:27, time_diff: 1 y, 239 d, 9 h, 30 m, 19 s
- output's pubkey:
- in tx with hash: <853fefa03a73a038e45aec6164de392e6a35f727c70c85b8530fedf8003fc3ee>
- this tx pub key:
- out_i: 046, g_idx: 207097, xmr: 1.00000000
- mixin no: 4, block height: 201923, timestamp: 2014-09-03 23:37:01, time_diff: 1 y, 226 d, 19 h, 20 m, 45 s
- output's pubkey: <12775c85913989361fd860ebb9c762ea76247752a12e4b6c02d9fd4ff81d0c72>
- in tx with hash:
- this tx pub key: <898409aa37012cad93d4265ec19aa84110d2df7f953034dcd0dd6c037098763d>
- out_i: 054, g_idx: 235432, xmr: 1.00000000
- mixin no: 5, block height: 220508, timestamp: 2014-09-16 23:00:08, time_diff: 1 y, 213 d, 19 h, 57 m, 38 s
- output's pubkey: <954b7c3cbc2c0559358c0f913783429a680ecd0294ba90e6d46fea14641d0b18>
- in tx with hash: <57b493afe08be5895da3c251efabfa9b9392bfbeeb4a7b17d3cc70626a3fdc72>
- this tx pub key:
- out_i: 182, g_idx: 262916, xmr: 1.00000000
- mixin no: 6, block height: 227890, timestamp: 2014-09-22 02:39:47, time_diff: 1 y, 208 d, 16 h, 17 m, 59 s
- output's pubkey:
- in tx with hash: <0578a0fd5f04d27010e783525b18603a94ea9750a033afc26cde12aa9bba2a07>
- this tx pub key: <2c4845aca1b39bb2f01371f1278e6e5a940e71eadc82a768b9aca893a5cc3250>
- out_i: 056, g_idx: 271986, xmr: 1.00000000
- mixin no: 7, block height: 240819, timestamp: 2014-10-01 03:01:00, time_diff: 1 y, 199 d, 15 h, 56 m, 46 s
- output's pubkey: <7e9e0879cb8b611ed8a4378026582515c9a083a5c0a706e9b87ace589a10fbe8>
- in tx with hash: <0514c0c2fd9ed0e1b3823545a57d4e26eb01e8e27b1cd56668af95b4c572cc42>
- this tx pub key: <5dea74da70b59d1b348c9e27827fd4e3c0b165f2630eeeee638f1f3851af3831>
- out_i: 112, g_idx: 284870, xmr: 1.00000000
- mixin no: 8, block height: 247126, timestamp: 2014-10-05 13:36:27, time_diff: 1 y, 195 d, 5 h, 21 m, 19 s
- output's pubkey:
- in tx with hash: <8c27f720e44fa7b36d45839dc9491ffb3432ca9d5c1e730ac0d5061fd876e12a>
- this tx pub key: <9f04f3e9de911f36501fb7a7c84865cdb892bddac5892b8eddefd49e41bd3a09>
- out_i: 080, g_idx: 290789, xmr: 1.00000000
- mixin no: 9, block height: 269027, timestamp: 2014-10-20 21:16:46, time_diff: 1 y, 179 d, 21 h, 41 m, 0 s
- output's pubkey:
- in tx with hash: <1b9d09fee64f6b595e3e82e61455288654efe6ef2ab566fc0dba3f42de2cdfa4>
- this tx pub key:
- out_i: 205, g_idx: 309803, xmr: 1.00000000
- mixin no: 10, block height: 301380, timestamp: 2014-11-12 15:33:54, time_diff: 1 y, 157 d, 3 h, 23 m, 52 s
- output's pubkey:
- in tx with hash: <922398b95fa11b4490040bfc8a375e6e26e04dd6de7cee208852e1de238cb0ee>
- this tx pub key: <4ea00a1dfd44ecae3006b8abd739d9b60f04334f453d3b088b4840257b8bba56>
- out_i: 155, g_idx: 332935, xmr: 1.00000000
- mixin no: 11, block height: 380617, timestamp: 2015-01-07 05:37:49, time_diff: 1 y, 101 d, 13 h, 19 m, 57 s
- output's pubkey: <1f9842466b5eaaab5d29645e8857d095eea325a31d473bc5c8a27247b30e7c59>
- in tx with hash:
- this tx pub key:
- out_i: 052, g_idx: 380641, xmr: 1.00000000
- mixin no: 12, block height: 413182, timestamp: 2015-01-29 23:09:52, time_diff: 1 y, 78 d, 19 h, 47 m, 54 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 071, g_idx: 403802, xmr: 1.00000000
- mixin no: 13, block height: 418499, timestamp: 2015-02-02 17:17:07, time_diff: 1 y, 75 d, 1 h, 40 m, 39 s
- output's pubkey: <7a003a694977acff74cdc3f97eb4119a655ee7a1b984c9b201b88ae619dc9130>
- in tx with hash: <241698bb767e1175b573690456fe17c19206e0397da4660ae0eea57de14c01e8>
- this tx pub key: <7026e660b21e083322536d1b0c67624c74f36265206d28b2ba6932250e6800dc>
- out_i: 002, g_idx: 411305, xmr: 1.00000000
- mixin no: 14, block height: 451467, timestamp: 2015-02-25 17:00:40, time_diff: 1 y, 52 d, 1 h, 57 m, 6 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <8abeece25e3ba1e5eec505cf384bd4cf29478948d13b3e7918cafdce9c20b208>
- out_i: 050, g_idx: 458057, xmr: 1.00000000
- mixin no: 15, block height: 470678, timestamp: 2015-03-11 03:03:43, time_diff: 1 y, 38 d, 15 h, 54 m, 3 s
- output's pubkey: <02124382e12b678854b7dc7d1e962f97c98b0dd9ae6f8a87d9e994fb1cd97928>
- in tx with hash: <6d6949615f627fca19b86393c525dc942948d9cf80a86134d9ae3f037995ba5b>
- this tx pub key: <23152fa80da067ab2603ba4ae4db2b6b88080ef0079224480d2eb6ee226f0a71>
- out_i: 002, g_idx: 485487, xmr: 1.00000000
- mixin no: 16, block height: 471162, timestamp: 2015-03-11 11:45:56, time_diff: 1 y, 38 d, 7 h, 11 m, 50 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <32a348ab091aa274a4027329bb39719da41e8c157d79931075bda18e5fbe1733>
- out_i: 054, g_idx: 486191, xmr: 1.00000000
- mixin no: 17, block height: 480299, timestamp: 2015-03-17 20:08:55, time_diff: 1 y, 31 d, 22 h, 48 m, 51 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <75f0f791cab0f3d93adc600f2296b70d60777ce72d1de47a1f8b0a2fd1fca955>
- out_i: 003, g_idx: 499780, xmr: 1.00000000
- mixin no: 18, block height: 490393, timestamp: 2015-03-24 21:23:59, time_diff: 1 y, 24 d, 21 h, 33 m, 47 s
- output's pubkey:
- in tx with hash: <3daead2c12dca81ee81f9839b365e073b81791f7ccd495f0022447c6096e86ee>
- this tx pub key:
- out_i: 002, g_idx: 515423, xmr: 1.00000000
- mixin no: 19, block height: 536699, timestamp: 2015-04-26 04:34:55, time_diff: 0 y, 357 d, 14 h, 22 m, 51 s
- output's pubkey: <859e3e9171198dbc61bf24185f8bed70de0c61f07e1fa3285280e6b62dd8769c>
- in tx with hash: <794e4a639c3055b0d61a850345f259f6f28a1ca2789b8edfd5f16d469c7b89bc>
- this tx pub key: <785d1f2a6988698d1ec37bd6f4d0d13c594175320f7a97b84b6f61df69bd9b28>
- out_i: 033, g_idx: 546497, xmr: 1.00000000
- mixin no: 20, block height: 536754, timestamp: 2015-04-26 05:36:32, time_diff: 0 y, 357 d, 13 h, 21 m, 14 s
- output's pubkey:
- in tx with hash: <27fa76dacfb91200d560c3e24f1e05610e368035e455c9e8c779ee9c5b000632>
- this tx pub key: <6e5916b742fb705380d60caa4b3b0c72c90349bf0c7e5726410bed166b795a4e>
- out_i: 057, g_idx: 546513, xmr: 1.00000000
- mixin no: 21, block height: 549718, timestamp: 2015-05-05 08:33:24, time_diff: 0 y, 348 d, 10 h, 24 m, 22 s
- output's pubkey:
- in tx with hash: <643cf740ff4890787448abb5895155d32d2d798cc196ec267940a1479bcef192>
- this tx pub key: <85ff7241bcedeb9b8225e8ce4da757a3a8ff3d4a0bb79536fe8742a6f9bee2ec>
- out_i: 040, g_idx: 552479, xmr: 1.00000000
- mixin no: 22, block height: 559455, timestamp: 2015-05-12 03:37:20, time_diff: 0 y, 341 d, 15 h, 20 m, 26 s
- output's pubkey: <8c62519fa03707d129e4db4c3250088f729d76eed6e2959672c3b48082e621b6>
- in tx with hash: <61c581cd80ab41c746cf682e860c6ae6659f13ff8c58dfdb045544384cab8056>
- this tx pub key: <6f7063b3ad603b5296defceb4b505d81772612d10269470ed530466d69443ed9>
- out_i: 080, g_idx: 556936, xmr: 1.00000000
- mixin no: 23, block height: 613099, timestamp: 2015-06-18 16:00:48, time_diff: 0 y, 304 d, 2 h, 56 m, 58 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <4459405b4fbc1bab8f6701bfce23e5412b8e3009b6910162f5e4e252a443ce9f>
- out_i: 002, g_idx: 578548, xmr: 1.00000000
- mixin no: 24, block height: 633526, timestamp: 2015-07-02 22:55:56, time_diff: 0 y, 289 d, 20 h, 1 m, 50 s
- output's pubkey:
- in tx with hash:
- this tx pub key: <8f5eaa40bb15efc17aa293d823e267b959b9baf366a831981e72f6c638f51732>
- out_i: 002, g_idx: 586488, xmr: 1.00000000
- mixin no: 25, block height: 662203, timestamp: 2015-07-23 00:30:46, time_diff: 0 y, 269 d, 18 h, 27 m, 0 s
- output's pubkey: <06ffbe8922f23bd069e8fe7ccd18b03dd8b2083e1524317b795857620c0859b7>
- in tx with hash: <7bdb8c52ba841345eaac03052ba6c8e2694a6f72d41e9447321da0faf95e913c>
- this tx pub key: <82a9018a16ddb3e51063aaa91c386dc8532dfead5e73e75d9b787a2dcd1888e1>
- out_i: 010, g_idx: 597763, xmr: 1.00000000
- mixin no: 26, block height: 702515, timestamp: 2015-08-20 06:01:31, time_diff: 0 y, 241 d, 12 h, 56 m, 15 s
- output's pubkey:
- in tx with hash: <9e992b2ec7a1180eeac8c8d2ad288421f76b951af6bcda213e5f94395defa43e>
- this tx pub key: <52ecf0e940846c87701bbddac423d8027612ab08d38716641e52961c86a31e3f>
- out_i: 027, g_idx: 611448, xmr: 1.00000000
- mixin no: 27, block height: 719781, timestamp: 2015-09-01 09:23:40, time_diff: 0 y, 229 d, 9 h, 34 m, 6 s
- output's pubkey: <35191eec6362849301cb68484313a4499a21d023076207f5b39542c09e3b31e0>
- in tx with hash: <417eb6060e25e9feb51684f982e5d8e31086f5896803841fd8f02fa8cdc072a8>
- this tx pub key:
- out_i: 002, g_idx: 616648, xmr: 1.00000000
- mixin no: 28, block height: 763751, timestamp: 2015-10-02 05:33:28, time_diff: 0 y, 198 d, 13 h, 24 m, 18 s
- output's pubkey: <877737a269f545e544948670d81308ea9046c75ee0536640d82aa58a2de6028c>
- in tx with hash: <25ef8782c0f09edc953fd5d7e36c4dfb11b3dc4690d497b2e6e2a1c1a72ea3d2>
- this tx pub key: <44e03f52fdba858ecf269230844df5c3e00c8306d4b64c13a5ca257879a11eb3>
- out_i: 014, g_idx: 630699, xmr: 1.00000000
- mixin no: 29, block height: 773969, timestamp: 2015-10-09 10:58:27, time_diff: 0 y, 191 d, 7 h, 59 m, 19 s
- output's pubkey: <6d25c07b583d50a5f13d105ab20d756fe0f5dc8a28aeaf41389b6961fa934008>
- in tx with hash: <294d7bf5ef16d7f27fcb5e8abae62d281150d89591c24ee648283f820c1431cd>
- this tx pub key:
- out_i: 015, g_idx: 634103, xmr: 1.00000000
- mixin no: 30, block height: 788878, timestamp: 2015-10-19 21:51:20, time_diff: 0 y, 180 d, 21 h, 6 m, 26 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 013, g_idx: 638748, xmr: 1.00000000
- mixin no: 31, block height: 794352, timestamp: 2015-10-23 18:42:59, time_diff: 0 y, 177 d, 0 h, 14 m, 47 s
- output's pubkey: <640eac841376fe1b3c08c5dec203bda3b76125d0423a2bd369680f74f36d5a5c>
- in tx with hash: <24fcf01954734b7eac8bdc91ca3181f5d7b57b33acad577e78bc66c5509ed22b>
- this tx pub key: <05f2617a19211914c19851f73a37613f21a3a18a29b7183f0cbf6cdb6ce88568>
- out_i: 069, g_idx: 640573, xmr: 1.00000000
- mixin no: 32, block height: 806998, timestamp: 2015-11-01 16:44:37, time_diff: 0 y, 168 d, 2 h, 13 m, 9 s
- output's pubkey:
- in tx with hash:
- this tx pub key:
- out_i: 073, g_idx: 644158, xmr: 1.00000000
- mixin no: 33, block height: 835839, timestamp: 2015-11-21 23:32:21, time_diff: 0 y, 147 d, 19 h, 25 m, 25 s
- output's pubkey:
- in tx with hash: <1ec7b2a5d50238264e6e4e5f2bbc5a4b1bae9e1caa472eab108d7563eecd8bdb>
- this tx pub key: <8047580dadea3b93367f562fa16ba3fb995392606cf3e0ea28b893a0f0b9356a>
- out_i: 016, g_idx: 652421, xmr: 1.00000000
- mixin no: 34, block height: 853613, timestamp: 2015-12-04 14:58:48, time_diff: 0 y, 135 d, 3 h, 58 m, 58 s
- output's pubkey:
- in tx with hash: <7d2e923ae1fddc9a34155d0a155561e50deb624e1bc9e75a9fe9647ff43223ad>
- this tx pub key: <20159f4e41bb8d770a83cec7e3303dd160e3ff8990ef999a2965bd5d4c140d6e>
- out_i: 034, g_idx: 657023, xmr: 1.00000000
- mixin no: 35, block height: 876878, timestamp: 2015-12-20 23:37:19, time_diff: 0 y, 118 d, 19 h, 20 m, 27 s
- output's pubkey: <4c1a302c4ef77145243951621fa6841b2b0ec79f30bb5c48b6843dea49f5c2b3>
- in tx with hash: <1df6c02991a3661e4e3b21f056a662c2b689f383dec307b09a082660668d2bcd>
- this tx pub key:
- out_i: 003, g_idx: 663067, xmr: 1.00000000
- mixin no: 36, block height: 880674, timestamp: 2015-12-23 17:35:31, time_diff: 0 y, 116 d, 1 h, 22 m, 15 s
- output's pubkey: <4d52f21892c70312f5aa6133e8c21ba8b6875a3efa2c43ed79feb1d0333f5f9d>
- in tx with hash: <8e6fa6f9ebe1058a9882e901aa1fb97b92cfcc3371dc812e87691018392997ab>
- this tx pub key: <0b3fa2bd3b97611b964732624e6792067f07692a1a6c0b1d0605c2735181029d>
- out_i: 008, g_idx: 664081, xmr: 1.00000000
- mixin no: 37, block height: 881922, timestamp: 2015-12-24 15:30:52, time_diff: 0 y, 115 d, 3 h, 26 m, 54 s
- output's pubkey: <070c14b1837fa93e756f5a8351874ba064a7f81cab19cb05fd0bb74178c35d48>
- in tx with hash: <51b914ba41722b3aafa188741ae621a591803960979a8a1a33bf797483569ebf>
- this tx pub key:
- out_i: 003, g_idx: 664376, xmr: 1.00000000
- mixin no: 38, block height: 888425, timestamp: 2015-12-29 03:34:34, time_diff: 0 y, 110 d, 15 h, 23 m, 12 s
- output's pubkey: <53531c26120a4e8b927f984a1e56fa67dc5021881ba8ff6ae6a78806548b9a29>
- in tx with hash:
- this tx pub key: <1e3a29b81ee5491a7eb642b9072a82b85a564cd836e0768aa94a445d8b7e5328>
- out_i: 095, g_idx: 665746, xmr: 1.00000000
- mixin no: 39, block height: 913380, timestamp: 2016-01-15 21:57:12, time_diff: 0 y, 92 d, 21 h, 0 m, 34 s
- output's pubkey:
- in tx with hash: <1a7c9405e39fce4fb6c38aec3d3651dd492c19ceccfced7238aeda19a1cb6332>
- this tx pub key:
- out_i: 114, g_idx: 671696, xmr: 1.00000000
- mixin no: 40, block height: 932806, timestamp: 2016-01-29 14:01:51, time_diff: 0 y, 79 d, 4 h, 55 m, 55 s
- output's pubkey: <93acfc3aa332954558a2dbd87777292ab0f95fa32adb95c718667ed82adb3ce6>
- in tx with hash:
- this tx pub key: <47bbd7b677824a70aeaecb016f5965b6b3ce39aa6fef02649013631db9f860cc>
- out_i: 018, g_idx: 675848, xmr: 1.00000000
- mixin no: 41, block height: 1026806, timestamp: 2016-04-16 17:57:17, time_diff: 0 y, 1 d, 1 h, 0 m, 29 s
- output's pubkey:
- in tx with hash: <4f75ebb511f9f6038049a05dd6f328a7b1a7f6a728d8c569b446ae887834ef28>
- this tx pub key: <8f2973766ca42c9e42a3f897da2304e8576d250e03087dd170259dd8b8afe53b>
- out_i: 002, g_idx: 700796, xmr: 1.00000000
Ring signature for the above input, i.e.,: key image <3e2e56c989c01e3388d8577388f4ca8a69669db3cdb7893238c6324f26aaad8c>, xmr: 1.00000000:
- c: <1c00e9bdf820f1d3c933b03dd3438b17508e7ab3b25d8edf5d676c067825200d> r:
- c: r: <39c2f18120658e25175f80fe29b32a87458442549edcfeea0e8d66dccd186206>
- c: <71968c7605b5b296e782560bdedd687f4412b9b87263774b738cb935988d870d> r: <65e739be5e4916901aa30f24cb68637807d4fe2315a4f37fcd240eef5da9740c>
- c: r:
- c: r:
- c: <6bde245584902b46a7fcc14418525294926d2a4a3389ff3022ba0a1bb38c6505> r: <38adac358402827e104ee07a03e388a6177e8dfeaa699e727bbbc26cad35540d>
- c: <85c5c6b91e8a7421266f5eb29c3287799f0b200ce12525e16b1d87b171305203> r: <08fdd8d7bd5659a57c59e07588552f68fec27132c0696e18c45f1c97c4563404>
- c: r:
- c: <1bfd5703b6f3a5d611d6e97c42132311134acf497031a5935570bbe384e2ad06> r: <23b93e8a8718833c5a3ac7657c2d81aca0e28b707fcbcbc6f503d5120bda860d>
- c: <64b8567886e562ded19b8f5660217474e662c68ae3eb52e0c7163fb1f3afa609> r: <8a63301446a35260cae608b6f591b8e1cb5804e1d2d3aa41dcd4fc4d7a09c904>
- c: <4a482edca4d0af41377a39778ef6e9bca920b06d94c9a49a72bde7ea03f04a08> r:
- c: <2053af882923b0b2e446bdfe005baa45660544fd48b578f1c2ad63be23bbdf06> r:
- c: <4963ed59b730f5b5b515575e29c0e7692c7937a56002d092bb3d549924159508> r: <5dac563aa391213d9f7c17d3409fc11664337702969abe38c303a1922d458409>
- c: r:
- c: <7e4ba9e927f1d8a5596e409783f96b14fbce21ad160dde0c643e0cc1d3e90007> r:
- c: <1c64832828968a84969fb3b2cc60bb9749a7d68ad4d99b2a1abc69874c03a60a> r:
- c: r:
- c: r:
- c: <18761214af14a64bb06dc64f604f31309c0a64ad66b2228063930876f8946601> r: <61c89ae5e5df4d63518d0f65a23ebe9157cf3fa1c2c16d1b166fc5e60bf9bc09>
- c: <8983cc963985aec795ce8743770f4070db4cda079a7954f02842eb6674497507> r:
- c: <93d6c150e021508e462c3d96139d434430a5297c8fc47eabd9ba65bc6d852305> r:
- c: <28fd20defc69ac0d046cb08460d60b917a1a8641922019202f827ccd2fadeb07> r:
- c: <64cdc09f43ec1b6fb53db0fc4f61895f3674f51b0f9f5a698ebb3b9ff501fb05> r: <92b0796f37f4a0a73125ec5227d4398130cdb325bb8248b6d6ff50a8e70e5608>
- c: <2a907d28860de0b6c4b354ab4f948304c9cb0bb6d3940c2fec6ca0bd1805d800> r:
- c: <2699cbabef1076f3e0d3c4c823fe8b0b1716adb0a205372e69a3d3750988640a> r: <43087596802bd8b34e1d1b1ea3cf54a82adf4270a98c964b3e881e3a60893d0d>
- c: r: <88903ee2664cec9115fa0e6f09adbb2761cbdd41e4c2053b770c9b5153609405>
- c: r:
- c: <3b1df7f0b40cd45e3f8a5ad34c8e089e2dad626ed38993671a2dcb65ce187c0a> r: <7f6be9bcb4e7d065a929cc800e1e18081a655ab6824f37be9b3c536e16f5c907>
- c: <723cfc1395982ec485abc901a8d4d0c0be9952a5d8803ac5883fec2ac3191802> r: <7c6be0118f108a85955a44c14a8b1197ba75ac0e0d7a0d8968814a31a036520c>
- c: <67a1fefb72d669adcca1f817641fe9f137e5689110daed7059dcf3b18d7b4e0c> r: <1f9c6de2106ae1d548707be395a22f4fcad56f3db9e7f2212941614d3c30e60d>
- c: r: <49f0810d2b8889763875504c920f3b7139178776cbb351445595ee5d0fdce90e>
- c: r: <9e54163811e6476c1caefa3109c2d3c4c64e714279cc048cd51049692a664f09>
- c: r: